/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  6
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       polyBoundaryMesh;
    location    "constant/polyMesh";
    object      boundary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

6
(
    inlet
    {
        type            patch;
        nFaces          20;
        startFace       2000;
    }
    outlet
    {
        type            patch;
        nFaces          20;
        startFace       2020;
    }
    PER1
    {
        type            cyclic;
        neighbourPatch    PER2;
        matchTolerance  0.001;
        nFaces          52;
        startFace       2040;
    }
    PER2
    {
        type            cyclic;
        neighbourPatch    PER1;
        matchTolerance  0.001;
        nFaces          52;
        startFace       2092;
    }
    wall
    {
        type            wall;
        inGroups        1(wall);
        nFaces          32;
        startFace       2144;
    }
    frontAndBackPlanes
    {
        type            empty;
        inGroups        1(empty);
        nFaces          2088;
        startFace       2176;
    }
)

// ************************************************************************* //
