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

convertToMeters 1;

vertices
(
    (0 0 0)
    (0 1 0)
    (1 0 0)
    (1 1 0)

    (0 0 0.01)
    (0 1 0.01)
    (1 0 0.01)
    (1 1 0.01)
);

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

edges
(
);

boundary
(
    left
    {
        type patch;
        faces
        (
            (1 0 4 5)
        );
    }

    right
    {
        type patch;
        faces
        (   
            (2 3 7 6)
        );
    }

    front
    {
        type empty;
        faces
        (   
        	(4 6 7 5)
        );
    }

    back
    {
        type empty;
        faces
        (   
            (0 2 3 1)
        );
    }

    top
    {
        type empty;
        faces
        (   
            (1 3 7 5)
        );
    }

    bottom
    {
        type empty;
        faces
        (   
            (0 2 6 4)
        );
    }
);

mergePatchPairs
(
);

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