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

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

convertToMeters   1;

vertices
(
    (0 0 0)
    (1 0 0)
    (1 1 0)
    (0 1 0)
    (0 0 0.1)
    (1 0 0.1)
    (1 1 0.1)
    (0 1 0.1)
    (20 0 0)
    (20 1 0)
    (20 0 0.1)
    (20 1 0.1)
    (1 -1 0)
    (20 -1 0)
    (1 -1 0.1)
    (20 -1 0.1)
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (50 50 1) simpleGrading (1 1 1)
    hex (1 8 9 2 5 10 11 6) (1000 50 1) simpleGrading (1 1 1)
    hex (12 13 8 1 14 15 10 5) (1000 50 1) simpleGrading (1 1 1)
);

edge2
(
);

boundary
(

    inlet
    {
        type patch;
        faces
        (
            (4 0 3 7)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (10 8 9 11)
	    (15 13 8 10)
        );
    }

    walls
    {
        type wall;
        faces
        (
            (0 1 5 4)
            (7 6 2 3)
            (1 12 14 5)
            (6 11 9 2)
            (12 13 15 14)
        );
    }

    frontAndBack
    {
        type empty;
        faces
        (
            (0 1 2 3)
            (7 6 5 4)
            (1 8 9 2)
            (6 11 10 5)
            (12 13 8 1)
            (5 10 15 14)
        );
    }
);

mergePatchPairs
(
);

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