/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  8                                     |
|   \\  /    A nd           | Website:  www.openfoam.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      blockMeshDict;
}

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

convertToMeters 1;

vertices
(
    (0 0 -0.125)       // vertex 0
    (6 0 -0.125)       // vertex 1
    (6 1.8 -0.125)     // vertex 2
    (0 1.8 -0.125)     // vertex 3
    (0 0 0.125)        // vertex 4
    (6 0 0.125)        // vertex 5
    (6 1.8 0.125)      // vertex 6
    (0 1.8 0.125)      // vertex 7
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (200 160 1) 
    simpleGrading (
          1 
          (
          (0.231    0.6625  866.67)
          (0.769    0.3375  1)  
          )
          1
          )
);

edges
(
);

boundary
(
    INLET
    {
        type patch;
        faces
        (
            (0 4 7 3)
        );
    }
    OUTLET
    {
        type patch;
        faces
        (
            (1 2 6 5)
        );
    }
    TOP
    {
        type symmetry;
        faces
        (
            (2 6 7 3)
        );
    }
    BOTTOM
    {
        type wall;
        faces
        (
            (0 1 5 4)
        );
    }
    frontAndBackPlanes
    {
        type empty;
        faces
        (
            (0 3 2 1)
            (4 5 6 7)
        );
    }
);

mergePatchPairs
(
);

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