/*--------------------------------*- 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.0  0.15)  //0
    (0.0  0.0  0.0 )  //1
    (0.0  0.1  0.0 )  //2
    (0.0  0.1  0.15)  //3
    (0.85 0.0  1.0 )  //4
    (1.0  0.0  1.0 )  //5
    (1.0  0.1  1.0 )  //6
    (0.85 0.1  1.0 )  //7
    (0.85 0.0  2.0 )  //8
    (1.0  0.0  2.0 )  //9
    (1.0  0.1  2.0 )  //10
    (0.85 0.1  2.0 )  //11
);

blocks
(
    hex (0 1 2 3 4 5 6 7)   (1 1 80) simpleGrading (1 1 16)
    hex (4 5 6 7 8 9 10 11) (1 1 20) simpleGrading (1 1 1)
);

edges
(
    arc 1 5 (0.5 0.0 0.134)
    arc 2 6 (0.5 0.1 0.134)
    arc 0 4 (0.5 0.0 0.313)
    arc 3 7 (0.5 0.1 0.313)
);

boundary
(
    inlet
    {
        type    patch;
        faces
        (
            (0 3 2 1)
        );
    }

    outlet
    {
        type    patch;
        faces
        (
            (8 9 10 11)
        );
    }

    walls
    {
        type    patch;
        faces
        (
            (0 4 7 3)
            (2 6 5 1)
            (4 8 11 7)
            (6 10 9 5)
        );
    }

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

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