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

//convertToMeters 0.001;

vertices
(
    (0 0 0)
    (60 0 0)
    (101.96 -7.4 0)
    (171.96 -7.4 0)
    (171.96 2 0)
    (101.96 2 0)
    (60 2 0)
    (0 2 0)

    (0 0 01)
    (60 0 01)
    (101.96 -7.4 01)
    (171.96 -7.4 01)
    (171.96 2 01)
    (101.96 2 01)
    (60 2 01)
    (0 2 01)


);




blocks
(
    hex (0 1 6 7 8 9 14 15)
    (200 200 1)
    simpleGrading 
    (
    1 
    (
    	(0.5	0.5	05)
    	(0.5	0.5	0.2)
    ) 
    1
    )

    hex (1 2 5 6 9 10 13 14)
    (200 200 1)
    simpleGrading 
    (
    1 
    (
    	(0.5	0.5	05)
    	(0.5	0.5	0.2)
    ) 
    1
    )

    hex (2 3 4 5 10 11 12 13)
    (200 200 1)
    simpleGrading 
    (
    1 
    (
    	(0.5	0.5	05)
    	(0.5	0.5	0.2)
    ) 
    1
    )

);

edges
(
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (0 8 15 7)
        );
    }


    outlet
    {
        type patch;
        faces
        (
            (3 4 12 11)
        );
    }

    lowerwall
    {
        type wall;
        faces
        (
            (1 9 8 0)
            (2 10 9 1)
            (3 11 10 2)

        );
    }

    upperwall
    {
        type wall;
        faces
        (
            (14 6 7 15)
            (13 5 6 14)
            (12 4 5 13)

        );
    }

   frontAndBack
    {
        type empty;
        faces
        (
            (7 6 1 0)
            (6 5 2 1)
            (5 4 3 2)
            (8 9 14 15)
            (9 10 13 14)
            (10 11 12 13)
        );
    }
);

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