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

scale 0.01;

vertices
(
    (0 0     0.05) //0
    (20 0     0.05) //1
    (20 8  0.05) //2
    (0 8  0.05) //3
    (0 0    -0.05) //4
    (20 0    -0.05) //5
    (20 8 -0.05) //6
    (0 8 -0.05) //7
);

blocks
(
    hex (0 1 5 4 3 2 6 7) (240 1 96) simpleGrading (1 1 1)

);

edges
(
);


patches
(
    patch inlet
    (
	(0 3 7 4)
    )
    patch outlet
    (
	(1 5 6 2)
    )
    wall top
    ((7 6 2 3)
    )
    wall bottom
    (
    (0 4 5 1)
    )
    empty backPlane
    (
	(0 1 2 3)
    )
    empty frontPlane
    (
    (4 7 6 5)
    )
);

mergePatchPairs
(
);

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