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

scale   0.001;

vertices
(
    (0 0 0)
	(0.160867723 4.6072 0)
	(-0.160867723 4.6072 0)    
    (0.2495 7.1456 0)    
    (-0.2495 7.1456 0)
	(0 0 400)
	(0.160867723 4.6072 400)
	(-0.160867723 4.6072 400)
    (0.2495 7.1456 400)
    (-0.2495 7.1456 400)
	(0 0 800)
	(0.160867723 4.6072 800)
	(-0.160867723 4.6072 800)
);

blocks
(
    hex (0 0 1 2 5 5 6 7) (1 30 400) //0
    simpleGrading
    (1 0.045 1)

    hex (2 1 3 4 7 6 8 9) (1 117 400) //1
    simpleGrading
    (1 1 1)

    hex (5 5 6 7 10 10 11 12) (1 30 400) //2
    simpleGrading
    (1 0.045 1)
);

edges
(
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
            (1 3 4 2)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (10 12 11 10)
        );
    }
    wall
    {
        type wall;
        faces
        (
            (3 8 9 4)
            (6 7 9 8)
            (6 11 12 7)
        );
    }
    front
    {
        type wedge;
        faces
        (
            (0 5 6 1)
            (1 6 8 3)
            (5 10 11 6)
        );
    }

	back
    {
        type wedge;
        faces
        (
            (0 2 7 5)
            (2 4 9 7)
            (5 7 12 10)
        );
    }   
);

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