/*--------------------------------*- 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 1;

vertices
(
    (0 0 0   )
    (1 0 0   )
    (1 1 0   )
    (0 1 0   )
    (0 0 1e-3)
    (1 0 1e-3)
    (1 1 1e-3)
    (0 1 1e-3)
);

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

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

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

    left
    {
        type    patch;
        faces
        (
            (0 3 7 4)
        );
    }

    right
    {
        type    patch;
        faces
        (
            (1 5 6 2)
        );
    }

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

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