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

convertToMeters 1;

vertices
(   //2394
    ( 1260.0 -315.0 -315.0) // 0
    ( 1260.0  315.0 -315.0) // 1
    ( -756.0  315.0 -315.0) // 2
    ( -756.0 -315.0 -315.0) // 3
    ( 1260.0 -315.0  315.0) // 4
    ( 1260.0  315.0  315.0) // 5
    ( -756.0  315.0  315.0) // 6
    ( -756.0 -315.0  315.0) // 7 
);

blocks
(
    hex (0 1 2 3 4 5 6 7)
    (100 320 100)// course (50 160 50) //(width, length, height)
    simpleGrading (1 1 1)
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (2 6 7 3)
        );
    }

    outlet
    {
	type patch;
	faces
        (
            (0 4 5 1)
        );
    }

    walls
    {
	type wall;
        faces
        (
            (1 5 6 2)
            (4 0 3 7)
        );
    }

    top
    {
	type wall;
	faces
        (
            (4 7 6 5)
        );
    }

    bottom
    {
	type wall;
        faces
        (
            (0 1 2 3)
        );
    }
);

edges
(
);

mergePatchPairs
(
);

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