This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/incompressible/pimpleDyMFoam/movingCylinders/boundary

119 lines
2.9 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2014-06-01 11:15:18 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2016-06-20 15:00:40 +00:00
| \\ / O peration | Version: 4.0 |
2015-05-17 13:55:59 +00:00
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class polyBoundaryMesh;
location "constant/polyMesh";
object boundary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
13
(
inlet
{
type patch;
nFaces 20;
startFace 4120;
}
outlet
{
type patch;
nFaces 20;
startFace 4140;
}
bottom
{
type wall;
nFaces 60;
startFace 4160;
}
top
{
type wall;
nFaces 60;
startFace 4220;
}
firstCyl
{
type wall;
nFaces 40;
startFace 4280;
}
secondCyl
{
type wall;
nFaces 40;
startFace 4320;
}
frontIn
{
type ggi;
nFaces 20;
startFace 4360;
shadowPatch frontOut;
zone frontInZone;
bridgeOverlap true;
}
frontOut
{
type ggi;
nFaces 30;
startFace 4380;
shadowPatch frontIn;
zone frontOutZone;
bridgeOverlap true;
}
middleIn
{
type ggi;
nFaces 30;
startFace 4410;
shadowPatch middleOut;
zone middleInZone;
bridgeOverlap true;
}
middleOut
{
type ggi;
nFaces 30;
startFace 4440;
shadowPatch middleIn;
zone middleOutZone;
bridgeOverlap true;
}
backIn
{
type ggi;
nFaces 30;
startFace 4470;
shadowPatch backOut;
zone backInZone;
bridgeOverlap true;
}
backOut
{
type ggi;
nFaces 20;
startFace 4500;
shadowPatch backIn;
zone backOutZone;
bridgeOverlap true;
}
defaultFaces
{
type empty;
nFaces 4320;
startFace 4520;
}
)
// ************************************************************************* //