/*--------------------------------*- C++ -*----------------------------------*\
  ==  == ====== ====   ====    |
                    \\     ||  | Multiphase Code Repository by HZDR
  ======   //   ||  || ===//   | Website: https://doi.org/10.14278/rodare.767
  ||  ||  //    ||  // || \\   | License: GPL-3.0-or-later
  ==  == ====== ====   ==  ==  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "system";
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 0.001;

vertices
(
    ( 0  0   0)
    (80  0   0)
    (80  4   0)
    ( 0  4   0)
    ( 0  0 300)
    (80  0 300)
    (80  4 300)
    ( 0  4 300)

);

blocks
(
    hex (0 1 2 3 4 5 6 7) (20 1 75) simpleGrading (1 1 1)
);

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

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