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

scale 1;

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

    (0 0 0.1)
    (0 1 0.1)
    (1 0 0.1)
    (1 1 0.1)
);

blocks
(
    hex (0 2 3 1 4 6 7 5) (32 32 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 symmetryPlane;
        faces
        (   
        	(4 6 7 5)
        );
    }

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

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

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

mergePatchPairs
(
);

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