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

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

convertToMeters 1;

vertices
(
    ( -3.00  -1.50  -1.50 )  //0
    (  6.00  -1.50  -1.50 )  //1
    (  6.00   1.50  -1.50 )  //2
    ( -3.00   1.50  -1.50 )  //3 
    
    ( -3.00  -1.50   1.50 )  //4
    (  6.00  -1.50   1.50 )  //5
    (  6.00   1.50   1.50 )  //6
    ( -3.00   1.50   1.50 )  //7
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (225 75 75) simpleGrading (1 1 1)
);

edges
(

);

boundary
(

    Inlet
    {
	type    patch;
	faces   ((0 4 7 3));
    }
    Outlet
    {
	type	patch;
	faces	((1 2 6 5));
    }
    Bottom
    {
        type    wall;
        faces   ((0 1 5 4));
    }
    Top
    {
	type	wall;
        faces   ((3 7 6 2));
    }
    Sides
    {
        type    wall;
	faces   ((4 5 6 7)
                 (0 3 2 1));
    }
)

mergePatchPairs
(
);
// ************************************************************************* //
