/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1812                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

scale   1;

xmin  -0.05;
xmax 0.05;
ymin  -0.08;
ymax  0.08;
zmin  0;
zmax  0.01;
xcell 75;
ycell 120;
zcell 1;
vertices
(
    ($xmin $ymin $zmin)
    ($xmax $ymin $zmin)
    ($xmax $ymax $zmin)
    ($xmin $ymax $zmin)

    ($xmin $ymin $zmax)
    ($xmax $ymin $zmax)
    ($xmax $ymax $zmax)
    ($xmin $ymax $zmax)

);




blocks
(
    hex (0 1 2 3 4 5 6 7)
    ($xcell $ycell $zcell)
    simpleGrading (1 1 1)  


);

edges
(
);

boundary
(
    oversetPatch
    {
        type overset;
        faces ();
    }

    stationaryWalls
    {
        type wall;
        faces
        (
            (0 4 5 1)
            (0 3 7 4)
            (1 5 6 2)
        );
    }
    atmosphere
    {
        type patch;
        faces
        (
            (2 6 7 3)
        );
    }

);

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