mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Upgraded other files as necessary for consistency with the blockMeshDict, in particular cases with cyclic patches.
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class polyBoundaryMesh;
|
|
location "constant/polyMesh";
|
|
object boundary;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
6
|
|
(
|
|
inlet
|
|
{
|
|
type patch;
|
|
nFaces 600;
|
|
startFace 715675;
|
|
}
|
|
outlet
|
|
{
|
|
type patch;
|
|
nFaces 1140;
|
|
startFace 716275;
|
|
}
|
|
upperWall
|
|
{
|
|
type wall;
|
|
nFaces 4460;
|
|
startFace 717415;
|
|
}
|
|
lowerWall
|
|
{
|
|
type wall;
|
|
nFaces 5000;
|
|
startFace 721875;
|
|
}
|
|
front
|
|
{
|
|
type cyclic;
|
|
nFaces 12225;
|
|
startFace 726875;
|
|
matchTolerance 0.0001;
|
|
neighbourPatch back;
|
|
}
|
|
back
|
|
{
|
|
type cyclic;
|
|
nFaces 12225;
|
|
startFace 739100;
|
|
matchTolerance 0.0001;
|
|
neighbourPatch front;
|
|
}
|
|
)
|
|
|
|
// ************************************************************************* //
|