/*--------------------------------*- 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 1.0;

vertices        
(

	(0 0 0)				//0
	(0 0.499 0.0175)		//1
	(0 0.499 -0.0175)		//2	
	
	(15.0 0.499 -0.0175)		//3
	(15.0 0.499 0.0175)		//4	
	(15.0 0 0)			//5	
	
);

blocks          
(
	hex (2 3 4 1 0 5 5 0) (200 1 150) simpleGrading (1 1 5)
);

edges           
(                 
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (0 1 2 0)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (5 4 3 5)
        );
    }
    nozzle
    {
        type wall;
        faces
        (
            (2 1 4 3)
        );
    }
    sideFront
    {
        type wedge;
        faces
        (
            (0 5 4 1)
        );
    }
    sideBack
    {
        type wedge;
        faces
        (
            (0 2 3 5)
        );
    }
    axis
    {
        type empty;
        faces
        (
            (0 5 5 0)
        );
    }
);

mergePatchPairs
(
);

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