/*--------------------------------*- 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 80)
    (80  0 80)
    (80  4 80)
    ( 0  4 80)

);

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

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

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