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

y1 0.5;

vertices
(
    (0 0 0)
    (1 0 0)
    (1 $y1 0)
    (0 $y1 0)

    (0 0 .4)
    (1 0 .4)
    (1 $y1 .4)
    (0 $y1 .4)

    (3 0 0)
    (3 $y1 0)

    (3 0 .4)
    (3 $y1 .4)

    (-.5 0 0)
    (-.5 $y1 0)

    (-.5 $y1 .4)
    (-.5 0 .4)

);

blocks
(
    hex (12 0 3 13 15 4 7 14) (21 41 1) simpleGrading (1 15 1)
    hex (0 1 2 3 4 5 6 7) (32 41 1) simpleGrading (1 15 1)
    hex (1 8 9 2 5 10 11 6) (51 41 1) simpleGrading (1 15 1)
);

edges
(
);

boundary
(

    inlet
    {
        type patch;
        faces
        (
            (13 12 15 14)
        );
    }

    outlet
    {
        type patch;
        faces
        (
            (8 9 11 10)
        );
    }

    top
    {
        type patch;
        faces
        (
            (13 3 7 14)
            (9 2 6 11)
            (7 6 2 3)
        );
    }

    slip-bottom
    {
        type wall;
        faces
        (
            (15 12 0 4)
        );
    }

    bottom
    {
        type wall;
        faces
        (
            (1 8 10 5)
        );
    }

    interface
    {
        type wall;
        faces
        (
            (4 0 1 5)
        );
    }

);

mergePatchPairs
(
);

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