64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
| \\ / O peration | Version: 3.2 |
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
|
| \\/ 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;
|
|
}
|
|
)
|
|
|
|
// ************************************************************************* //
|