/*--------------------------------*- 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;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices
(
    (-2 0 0  )
    ( 2 0 0  )
    ( 2 4 0  )
    (-2 4 0  )
    (-2 0 0.1)
    ( 2 0 0.1)
    ( 2 4 0.1)
    (-2 4 0.1)
);

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

patches
(
    wall topAndBottom
    (
        (3 7 6 2)
        (1 5 4 0)
    )

    wall leftAndRight
    (
        (0 4 7 3)
        (2 6 5 1)
    )

    empty frontAndBack
    (
        (0 3 2 1)
        (4 5 6 7)
    )
);

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