Updates for coupled boundaries
This commit is contained in:
parent
2d9b6370df
commit
dec36daed9
4 changed files with 134 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
|||
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
||||
|
||||
cleanCase
|
||||
rm constant/polyMesh/boundary
|
||||
\rm -f constant/polyMesh/boundary
|
||||
|
||||
rm constant/solid/polyMesh/boundary
|
||||
rm -r constant/solid/polyMesh/[c-z]*
|
||||
\rm -f constant/solid/polyMesh/boundary
|
||||
\rm -rf constant/solid/polyMesh/[c-z]*
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
||||
|
||||
cleanCase
|
||||
rm constant/polyMesh/boundary
|
||||
\rm -f constant/polyMesh/boundary
|
||||
|
||||
rm constant/solid/polyMesh/boundary
|
||||
rm -r constant/solid/polyMesh/[c-z]*
|
||||
\rm -f constant/solid/polyMesh/boundary
|
||||
\rm -rf constant/solid/polyMesh/[c-z]*
|
||||
|
|
|
@ -0,0 +1,64 @@
|
|||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
|
||||
| \\ / O peration | Version: 1.6-ext |
|
||||
| \\ / A nd | Web: www.extend-project.de |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class polyBoundaryMesh;
|
||||
object boundary;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
5
|
||||
(
|
||||
movingWall
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 180;
|
||||
}
|
||||
|
||||
left
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 190;
|
||||
}
|
||||
|
||||
right
|
||||
{
|
||||
type regionCouple;
|
||||
nFaces 10;
|
||||
startFace 200;
|
||||
|
||||
shadowRegion solid;
|
||||
shadowPatch left;
|
||||
attached off;
|
||||
isWall on;
|
||||
|
||||
zone rightZone;
|
||||
master on;
|
||||
bridgeOverlap off;
|
||||
}
|
||||
|
||||
bottom
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 210;
|
||||
}
|
||||
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
nFaces 200;
|
||||
startFace 220;
|
||||
}
|
||||
)
|
||||
|
||||
// ************************************************************************* //
|
|
@ -0,0 +1,64 @@
|
|||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
|
||||
| \\ / O peration | Version: 1.6-ext |
|
||||
| \\ / A nd | Web: www.extend-project.de |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
class polyBoundaryMesh;
|
||||
object boundary;
|
||||
}
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
5
|
||||
(
|
||||
movingWall
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 180;
|
||||
}
|
||||
|
||||
left
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 190;
|
||||
}
|
||||
|
||||
right
|
||||
{
|
||||
type regionCouple;
|
||||
nFaces 10;
|
||||
startFace 200;
|
||||
|
||||
shadowRegion solid;
|
||||
shadowPatch left;
|
||||
attached off;
|
||||
isWall on;
|
||||
|
||||
zone rightZone;
|
||||
master on;
|
||||
bridgeOverlap off;
|
||||
}
|
||||
|
||||
bottom
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 210;
|
||||
}
|
||||
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
nFaces 200;
|
||||
startFace 220;
|
||||
}
|
||||
)
|
||||
|
||||
// ************************************************************************* //
|
Reference in a new issue