/*--------------------------------*- 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
(
    ( -10.00  -5.00  0.00 )  //0
    (  15.00  -5.00  0.00 )  //1
    (  15.00   5.00  0.00 )  //2
    ( -10.00   5.00  0.00 )  //3

    ( -10.00  -5.00  0.05 )  //4
    (  15.00  -5.00  0.05 )  //5
    (  15.00   5.00  0.05 )  //6
    ( -10.00   5.00  0.05 )  //7
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (390 156 1) simpleGrading (1 1 1)
);

edges
(

);

boundary
(
  
    Inlet
    {
	type    patch;
	faces   ((0 4 7 3));
    }
    Outlet
    {
	type	patch;
	faces	((1 2 6 5));
    }
    Bottom
    {
        type    slip;
        faces   ((0 1 5 4));
    }
    Top
    {
	type	slip;
        faces   ((3 7 6 2));
    }
    Side1
    {
        type    patch;
        faces   ((0 1 2 3));
    }
    Side2
    {
        type    patch;
        faces   ((4 5 6 7));
    }
   
)

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