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

Lx   0.1;
Ly   0.1;
Lz   0.001;

vertices
(
    (0   0    0  )
    ($Lx 0    0  )
    ($Lx $Ly  0  )
    (0   $Ly  0  )
    (0   0    $Lz)
    ($Lx 0    $Lz)
    ($Lx $Ly  $Lz)
    (0   $Ly  $Lz)
);

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

edges
(
);

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

        );
    }
);

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