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

convertToMeters 0.01;

vertices
(
    (0 0 0) //0
    (1 0 0)
    (1 1 0)
    (0 1 0)
    (0 0 10) //4
    (0.9990482216 -0.0496193874 0) //5
    (0.9990482216 0.0496193874 0) //6
    (0.9990482216 -0.0496193874 10) //7
    (0.9990482216 0.0496193874 10) //8
);

blocks
(
    hex (0 5 6 0 4 7 8 4) (30 1 300) simpleGrading (0.2 1 1)
);

edges
(
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (0 5 6 0)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (4 7 8 4)
        );
    }
    wall
    {
        type patch;
        faces
        (
            (5 6 8 7)
        );
    }
    front
    {
        type wedge;
        faces
        (
            (0 4 7 5)
        );
    }
    back
    {
        type wedge;
        faces
        (
            (0 4 8 6)
        );
    }
    axis
    {
        type symmetry;
        faces
        (
            (0 4 4 0)
        );
    }
);
mergePatchPairs
(
);


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