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

convertToMeters 1;

vertices
(
	(0.1524 0 0) 		//0
	(0.5 0 0)    		//1
	(0.5 0.5 0) 		//2
	(0.10776 0.10776 0) 	//3
	(-0.1524 0 0) 		//4
	(-0.5 0 0)    		//5
	(-0.5 0.5 0) 		//6
	(-0.10776 0.10776 0) 	//7

	(0.1524 0 0.05) 	//8
	(0.5 0 0.05)    	//9
	(0.5 0.5 0.05) 		//10
	(0.10776 0.10776 0.05) 	//11
	(-0.1524 0 0.05) 	//12
	(-0.5 0 0.05)    	//13
	(-0.5 0.5 0.05) 	//14
	(-0.10776 0.10776 0.05) //15
	
);

blocks
(
    hex (0 1 2 3 8 9 10 11)   (100 100 1) simpleGrading (1 1 1)
    hex (6 7 3 2 14 15 11 10) (100 100 1) simpleGrading (1 1 1)
    hex (5 4 7 6 13 12 15 14) (100 100 1) simpleGrading (1 1 1)
);

edges
(
	arc 0 3 (0.14079 0.05832 0.0)
	arc 3 7 (0.0 0.1524 0.0)
	arc 7 4 (-0.14079 0.05832 0.0)

	arc 8 11 (0.14079 0.05832 0.05)
	arc 11 15 (0.0 0.1524 0.05)
	arc 15 12 (-0.14079 0.05832 0.05)

);

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

mergePatchPairs
(
);

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