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

convertToMeters 1;

vertices
(
    (0  0  0)
    (1  0  0)
    (2  0.932 0)
    (2  1  0)
    (1  1  0)
    (0  1  0)
    (0  0  0.1)
    (1  0  0.1)
    (2  0.932 0.1)
    (2  1  0.1)
    (1  1  0.1)
    (0  1  0.1)
  );

  blocks
  (
      hex (0 1 4 5 6 7 10 11) (100 75 1) simpleGrading (1 1 1)
      hex (1 2 3 4 7 8 9 10) (100 75 1) simpleGrading (1 1 1)
  );

edges
(
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (0 5 6 11)
       );
    }
    outlet
    {
        type patch;
        faces
        (
            (2 8 9 3)
        );
    }
    bottom
    {
        type symmetryPlane;
        faces
        (
            (0 1 6 7)
        );
    }
    top
    {
        type symmetryPlane;
        faces
        (
            (5 4 11 10)
            (4 3 9 10)
        );
    }
    obstacle
    {
        type patch;
        faces
        (
            (1 2 8 7)
        );
    }
);

mergePatchPairs
(
);

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