/*--------------------------------*- 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)
    (10   0  0)
    (10 300  0)
    ( 0 300  0)
    ( 0   0 10)
    (10   0 10)
    (10 300 10)
    ( 0 300 10)

);

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

boundary
(
    inlet
    {
        type    patch;
        faces
        (
            (0 1 5 4)
        );
    }

    outlet
    {
        type    patch;
        faces
        (
            (2 3 7 6)
        );
    }

    sides
    {
        type    empty;
        faces
        (
            (0 3 2 1)
            (1 2 6 5)
            (4 5 6 7)
            (0 4 7 3)
        );
    }
);

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