Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add partitioned pipe tutorial (moved from openfoam-adapter) #182

Merged
merged 24 commits into from
Apr 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
94127f6
Add common runscript for OpenFOAM
MakisH Apr 10, 2021
8df4866
Format files
MakisH Apr 11, 2021
7cfe1ff
More formatting
MakisH Apr 11, 2021
0046c10
Format cleaning scripts
MakisH Apr 11, 2021
37e9d1c
perpendicular-flap OpenFOAM: move 0.orig to 0
MakisH Apr 11, 2021
86f5fbc
Drop 0.orig from most OpenFOAM cases
MakisH Apr 11, 2021
e403b5f
Move 0.orig to 0 also for turek-hron-fsi3
MakisH Apr 11, 2021
54494d8
Simplify CalculiX run scripts
MakisH Apr 11, 2021
4aa795f
Simplify SU2 runscript
MakisH Apr 11, 2021
d9c9121
Remove duplicate plotDisplacement.sh
MakisH Apr 11, 2021
cd2b619
Remove deprecated log cleaning commands
MakisH Apr 11, 2021
43a6e31
Tidy up FEniCS run and clean scripts
MakisH Apr 11, 2021
75fa649
Tidy up Nutils run and clean scripts
MakisH Apr 11, 2021
2409738
Tidy up code_aster run script
MakisH Apr 11, 2021
45b3876
Clarify heat exchanger CalculiX gitignore, add 'dummy' to clean targets
MakisH Apr 11, 2021
5b5acab
Add warning for preparing code_aster case
MakisH Apr 11, 2021
577af4f
Update documentation
MakisH Apr 11, 2021
e169ad3
Move call to openfoam_remove_empty_dirs to run.sh
MakisH Apr 11, 2021
4d584da
Fix clean_fenics
MakisH Apr 11, 2021
c981dcd
Add partitioned pipe tutorial (moved from openfoam-adapter)
MakisH Apr 11, 2021
b08da06
README.md: apply feedback from code review
MakisH Apr 12, 2021
345cfa6
Merge branch 'develop' into pipe-pipe
MakisH Apr 12, 2021
430d973
Formatting
MakisH Apr 12, 2021
20201f8
Remove images without references
MakisH Apr 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions partitioned-pipe/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
title: Partitioned pipe flow
permalink: tutorials-partitioned-pipe.html
keywords: tutorial, FF, fluid-fluid coupling, OpenFOAM, pimpleFoam, sonicLiquidFoam
summary: This tutorial describes how to run a partitioned fluid simulation using preCICE.
---

{% include important.html content="We have not yet ported the documentation of the preCICE tutorials from the preCICE wiki to here. Please go to the [preCICE wiki](https://github.com/precice/precice/wiki#2-getting-started---tutorials)" %}

## Setup

This scenario consists of two pipes connected in series. A fluid enters from the left (here $$ z=0 $$) boundary of the Fluid1 participant with a uniform velocity profile ($$ u_{in} = 0.1 m/s $$) and zero pressure gradient. In its starting, uncoupled state, it exits from the right side (outlet: zero velocity gradient, zero pressure). This is also the coupling interface with Fluid2, which has the same boundary conditions as Fluid1.

On the coupling interface, Fluid1 sends velocity and pressure gradient to Fluid2 and receives pressure. The additional pressure gradient exchange was found to help convergence [1], but this fluid-fluid coupling scenario is part of active research.

## Available solvers

Both for Fluid1 and Fluid2, the following participants are available:

* OpenFOAM (pimpleFoam). An incompressible OpenFOAM solver. For more information, have a look at the [OpenFOAM adapter documentation](adapter-openfoam-overview.html).

* OpenFOAM (sonicLiquidFoam). A compressible OpenFOAM solver. For more information, have a look at the [OpenFOAM adapter documentation](adapter-openfoam-overview.html).

## Running the Simulation

All listed solvers can be used in order to run the simulation. Open two separate terminals and start the desired fluid1 and fluid2 participants by calling the respective run script. For example:

```
cd fluid1-openfoam-pimplefoam
./run.sh
```
and
```
cd fluid2-openfoam-sonicliquidfoam
./run.sh
```

## Post-processing

The OpenFOAM solvers generate a `.foam` file each. You can open this file in ParaView.
An example of the visualized expected results looks as follows:

![result](images/tutorials-partitioned-pipe-results-pimpleFoam-sonicliquidfoam.png)

Observe that the velocity and pressure values are smoothly changing around the coupling interface. The simulation starts with oscillations, which disappear after a few time steps.

## References

[1] G. Chourdakis, B. Uekermann, G. V. Zwieten, and H. V. Brummelen: [Coupling OpenFOAM to different solvers, physics, models, and dimensions using preCICE](https://mediatum.ub.tum.de/1515271), 14th OpenFOAM Workshop, Duisburg, Germany, submitted (proceedings publication delayed/cancelled), July 2019.

{% include disclaimer.html content="This offering is not approved or endorsed by OpenCFD Limited, producer and distributor of the OpenFOAM software via www.openfoam.com, and owner of the OPENFOAM® and OpenCFD® trade marks." %}
1 change: 1 addition & 0 deletions partitioned-pipe/clean-tutorial.sh
30 changes: 30 additions & 0 deletions partitioned-pipe/fluid1-openfoam-pimplefoam/0/U
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0";
object U;
}

dimensions [0 1 -1 0 0 0 0];

internalField uniform (0 0 0.1);

boundaryField
{
inlet
{
type fixedValue;
value $internalField;
}
outlet
{
type fixedGradient;
gradient uniform (0 0 0);
}
fixedWalls
{
type noSlip;
}
}
31 changes: 31 additions & 0 deletions partitioned-pipe/fluid1-openfoam-pimplefoam/0/p
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object p;
}

dimensions [0 2 -2 0 0 0 0];

internalField uniform 0;

boundaryField
{
inlet
{
type fixedGradient;
gradient uniform 0;
}

outlet
{
type fixedValue;
value uniform 0;
}

fixedWalls
{
type zeroGradient;
}
}
6 changes: 6 additions & 0 deletions partitioned-pipe/fluid1-openfoam-pimplefoam/clean.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
set -e -u

. ../../tools/cleaning-tools.sh

clean_openfoam .
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object transportProperties;
}

transportModel Newtonian;

nu nu [ 0 2 -1 0 0 0 0 ] 1e1;
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object turbulenceProperties;
}

simulationType laminar;
8 changes: 8 additions & 0 deletions partitioned-pipe/fluid1-openfoam-pimplefoam/run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
set -e -u

blockMesh
touch fluid1-openfoam-pimplefoam.foam

../../tools/run-openfoam.sh "$@"
. ../../tools/openfoam-remove-empty-dirs.sh && openfoam_remove_empty_dirs
104 changes: 104 additions & 0 deletions partitioned-pipe/fluid1-openfoam-pimplefoam/system/blockMeshDict
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant/polyMesh";
object blockMeshDict;
}

convertToMeters 1;


zmin 0;
zmax 20;

xcells 10; // per block (5 blocks)
ycells 10; // per block (5 blocks)
zcells 20;

vertices
(
(-3.535534 -3.535534 $zmin) // 0
( 3.535534 -3.535534 $zmin) // 1
( 3.535534 3.535534 $zmin) // 2
(-3.535534 3.535534 $zmin) // 3
(-1.414214 -1.414214 $zmin) // 4
( 1.414214 -1.414214 $zmin) // 5
( 1.414214 1.414214 $zmin) // 6
(-1.414214 1.414214 $zmin) // 7

(-3.535534 -3.535534 $zmax) // 8
( 3.535534 -3.535534 $zmax) // 9
( 3.535534 3.535534 $zmax) // 10
(-3.535534 3.535534 $zmax) // 11
(-1.414214 -1.414214 $zmax) // 12
( 1.414214 -1.414214 $zmax) // 13
( 1.414214 1.414214 $zmax) // 14
(-1.414214 1.414214 $zmax) // 15
);

blocks
(
hex (0 1 5 4 8 9 13 12) pipe ($xcells $ycells $zcells) edgeGrading (1 1 1 1 1 1 1 1 1 1 1 1)
hex (1 2 6 5 9 10 14 13) pipe ($xcells $ycells $zcells) edgeGrading (1 1 1 1 1 1 1 1 1 1 1 1)
hex (2 3 7 6 10 11 15 14) pipe ($xcells $ycells $zcells) edgeGrading (1 1 1 1 1 1 1 1 1 1 1 1)
hex (3 0 4 7 11 8 12 15) pipe ($xcells $ycells $zcells) edgeGrading (1 1 1 1 1 1 1 1 1 1 1 1)
hex (4 5 6 7 12 13 14 15) pipe ($xcells $ycells $zcells) edgeGrading (1 1 1 1 1 1 1 1 1 1 1 1)
);

edges
(
arc 0 1 ( 0 -5 $zmin)
arc 1 2 ( 5 0 $zmin)
arc 2 3 ( 0 5 $zmin)
arc 3 0 (-5 0 $zmin)
arc 4 5 ( 0 -1.5 $zmin)
arc 5 6 ( 1.5 0 $zmin)
arc 6 7 ( 0 1.5 $zmin)
arc 7 4 (-1.5 0 $zmin)

arc 8 9 ( 0 -5 $zmax)
arc 9 10 ( 5 0 $zmax)
arc 10 11 ( 0 5 $zmax)
arc 11 8 (-5 0 $zmax)
arc 12 13 ( 0 -1.5 $zmax)
arc 13 14 (1.5 0 $zmax)
arc 14 15 ( 0 1.5 $zmax)
arc 15 12 (-1.5 0 $zmax)
);


patches
(

patch fixedWalls
(
(0 1 9 8)
(1 2 10 9)
(2 3 11 10)
(3 0 8 11)
)

patch inlet
(
(0 1 5 4)
(1 2 6 5)
(2 3 7 6)
(3 0 4 7)
(4 5 6 7)
)

patch outlet
(
(8 9 13 12)
(9 10 14 13)
(10 11 15 14)
(12 13 14 15)
(11 8 12 15)
)
);

mergePatchPairs
(
);
45 changes: 45 additions & 0 deletions partitioned-pipe/fluid1-openfoam-pimplefoam/system/controlDict
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object controlDict;
}

application pimpleFoam;

startFrom startTime;

startTime 0;

stopAt endTime;

endTime 10.0;

deltaT 0.01;

writeControl adjustableRunTime;

writeInterval 0.01;

purgeWrite 0;

writeFormat ascii;

writePrecision 6;

writeCompression off;

timeFormat general;

timePrecision 6;

functions
{
preCICE_Adapter
{
type preciceAdapterFunctionObject;
libs ("libpreciceAdapterFunctionObject.so");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FoamFile {
version 2.0;
class dictionary;
object decomposeParDict;
format ascii;
}

numberOfSubdomains 2;

method simple;

simpleCoeffs
{
n (2 1 1);
delta 0.001;
}
40 changes: 40 additions & 0 deletions partitioned-pipe/fluid1-openfoam-pimplefoam/system/fvSchemes
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSchemes;
}

ddtSchemes
{
default Euler;
}

gradSchemes
{
default Gauss linear;
}

divSchemes
{
default none;
div(phi,U) bounded Gauss upwind;
div((nuEff*dev2(T(grad(U))))) Gauss linear;
}

laplacianSchemes
{
default Gauss linear corrected;
}

interpolationSchemes
{
default linear;
}

snGradSchemes
{
default corrected;
}
Loading