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

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

scale   1;

vertices
(
    //(-0.5  0 -0.001)
    (-0.5 -0.5 -0.001)
    ( 1   -0.5 -0.001)
    ( 1    0.5 -0.001)
    (-0.5  0.5 -0.001)
    (-0.5 -0.5  0.001)
    ( 1   -0.5  0.001)
    ( 1    0.5  0.001)
    (-0.5  0.5  0.001)
);

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

edges
(
  //arc 0 1 (0 -0.5 -0.01)
);

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

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

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


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