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

convertToMeters 0.001;

vertices
(
    (0 0 0)
    (0.55 0 0)
    (0.65 0 0)
    (1 0 0)
    (0 0.02 0)
    (0.55 0.02 0)
    (0.65 0.02 0)
    (1 0.02 0)
    (0 0.4 0)
    (0.37 0.4 0)
    (0.566 0.2 0)
    (1 0.2 0)
    (0 0 0.01)
    (0.55 0 0.01)
    (0.65 0 0.01)
    (1 0 0.01)
    (0 0.02 0.01)
    (0.55 0.02 0.01)
    (0.65 0.02 0.01)
    (1 0.02 0.01)
    (0 0.4 0.01)
    (0.37 0.4 0.01)
    (0.566 0.2 0.01)
    (1 0.2 0.01)
);

blocks
(
    hex (0 1 5 4 12 13 17 16) (120 10 1) simpleGrading (0.5 1 1)
    hex (1 2 6 5 13 14 18 17) (40 10 1) simpleGrading (1 1 1)
    hex (2 3 7 6 14 15 19 18) (100 10 1) simpleGrading (2 1 1)
    hex (4 5 9 8 16 17 21 20) (120 100 1) simpleGrading (0.5 2 1)
    hex (6 7 11 10 18 19 23 22) (100 40 1) simpleGrading (2 2 1)
);

edges
(
);

boundary
(
    inletWall
    {
        type patch;
        faces
        (
            (0 12 16 4)
            (4 16 20 8)
        );
    }
    outletWall
    {
        type patch;
        faces
        (
            (7 19 15 3)
            (11 23 19 7)
        );
    }
    movingWall
    {
        type wall;
        faces
        (
            (0 1 13 12)
            (1 2 14 13)
            (2 3 15 14)
        );
    }
    upperWall
    {
        type wall;
        faces
        (
            (9 21 17 5)
            (5 17 18 6)
            (6 18 22 10)
        );
    }
    atmosphere
    {
        type patch;
        faces
        (
            (8 20 21 9)
            (10 22 23 11)
        );
    }
);

mergePatchPairs
(
);

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