/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  dev
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 0.001;

W       243;
H       990;
depth   41;

vertices
(
    (   0    0      0           )   //0
    (   $W   0      0           )   //1
    (   $W   $H     0           )   //2
    (   0    $H     0           )   //3
    (   0    0      $depth      )   //4
    (   $W   0      $depth      )   //5
    (   $W   $H     $depth      )   //6
    (   0    $H     $depth      )   //7
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (40 100 1) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    inlet
    {
        type            patch;
        neighbourPatch  outlet;
        faces
        (
            (0 1 5 4)
        );
    }
    outlet
    {
        type            patch;
        neighbourPatch  inlet;
        faces
        (
            (2 3 7 6)
        );
    }
    walls
    {
        type            wall;
        faces
        (
            (0 3 7 4)
            (1 2 6 5)
        );
    }
);

mergePatchPairs
(
);

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