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

scale   1;

vertices
(
    (-0.1524 0.0381 -0.001)
    (-0.1524 0.1524 -0.001)
    (0       0.1524 -0.001)
    (0.6096  0.1524 -0.001)
    (0.6096  0.0381 -0.001)
    (0.6096  0      -0.001)
    (0       0      -0.001)
    (0       0.0381 -0.001)

    (-0.1524 0.0381 0.001)
    (-0.1524 0.1524 0.001)
    (0       0.1524 0.001)
    (0.6096  0.1524 0.001)
    (0.6096  0.0381 0.001)
    (0.6096  0      0.001)
    (0       0      0.001)
    (0       0.0381 0.001)
);

blocks
(
    hex (0 7 2 1 8 15 10 9)
    (40 30 1) // MODIFY
    simpleGrading (1 1 1)

    hex (7 4 3 2 15 12 11 10)
    (160 30 1) // MODIFY
    simpleGrading (1 1 1)

    hex (6 5 4 7 14 13 12 15)
    (160 10 1) // MODIFY
    simpleGrading (1 1 1)
);

edges
(
);

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


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