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

convertToMeters 1;

vertices
(
    (0 0 0)
    (0 0.0052 0)
    (0.3966 0.0052 0)
    (0.3966 0 0)
    (0.3986 0 0)
    (0.3986 0.0052 0)
    (0.4 0 0)
    (0.4 -0.0049 0)
    (0.6 -0.0049 0)
    (0.6 0 0)
    (0.6 0.0052 0)
    (0.4 0.0052 0)
    (0 0 0.1)
    (0 0.0052 0.1)
    (0.3966 0.0052 0.1)
    (0.3966 0 0.1)
    (0.3986 0 0.1)
    (0.3986 0.0052 0.1)
    (0.4 0 0.1)
    (0.4 -0.0049 0.1)
    (0.6 -0.0049 0.1)
    (0.6 0 0.1)
    (0.6 0.0052 0.1)
    (0.4 0.0052 0.1)
);

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

edges
(
);

boundary
(
    inlet_1
    {
        type patch;
        faces
        (
            (0 12 13 1)
        );
    }
    inlet_2
    {
        type patch;
        faces
        (
            (3 4 16 15)
        );
    }
    upper_wall
    {
        type wall;
        faces
        (
            (1 13 14 2)
            (2 14 17 5)
            (5 17 23 11)
            (11 23 22 10)
        );
    }
    lower_wall
    {
        type wall;
        faces
        (
            (0 3 15 12)
            (4 6 18 16)
            (6 7 19 18)
            (7 8 20 19)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (9 21 20 8)
            (10 22 21 9)
        );
    }
);

mergePatchPairs
(
);

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