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

coordinates
{
    type        global;

    e1          (1 0 0);
    e2          (0 1 0);

    directions  (e1 e2);
}

useHexTopology  yes;

zones
{
    level1
    {
        type    box;
        box     (-1.401 0 0) (1.401 4 0.1);
    }

    level2
    {
        type    box;
        box     (-1.401 0 0) (1.401 4 0.1);
    }

    level3
    {
        type    box;
        box     (-1.301 0 0) (1.301 4 0.1);
    }

    level4
    {
        type    box;
        box     (-0.801 0 0) (0.801 2 0.1);
    }
}

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