/*--------------------------------*- 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)         
    (3 0 0)         
    (3 2 0)         
    (0 2 0)         
    (11 0 0)
    (11 2 0)
    (3 -1.5 0)
    (11 -1.5 0)

    (0 0 0.1)         
    (3 0 0.1)         
    (3 2 0.1)         
    (0 2 0.1)         
    (11 0 0.1)
    (11 2 0.1)
    (3 -1.5 0.1)
    (11 -1.5 0.1)
);


blocks
(
    hex (0 1 2 3 8 9 10 11) (60 40 1) simpleGrading (0.25 -0.25 1)
    hex (1 4 5 2 9 12 13 10) (200 40 1) simpleGrading (-0.25 -0.25 1)
    hex (6 7 4 1 14 15 12 9) (200 30 1) simpleGrading (-0.25 0.25 1)
);

edges
(
);

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

            (8 9 10 11)
            (9 12 13 10)
            (14 15 12 9)
        );
    }
);


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