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

convertToMeters 0.1;

vertices
(
    (0 0 0)		// lower half
    (0.01 0 0)
    (0.01 0.5 0)
    (0 0.5 0)
    (0 0 0.1)
    (0.01 0 0.1)
    (0.01 0.5 0.1)
    (0 0.5 0.1)
    (0 1.0 0)		// upper half - 8
    (0.01 1.0 0)
    (0.0 1.0 0.1)
    (0.01 1.0 0.1)
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (1 150 1) simpleGrading (1 74 1)//(1 58 1) simpleGrading (1 230 1)
    hex (3 2 9 8 7 6 11 10) (1 150 1) simpleGrading (1 0.01351 1)//(1 58 1) simpleGrading (1 0.00435 1)
    //hex (8 9 2 3 10 11 6 7) (1 58 1) simpleGrading (1 230 1)
);

edges
(
);

boundary
(
    upperWalls
    {
        type wall;
        faces
        (
            (8 10 11 9)
        );
    }
    bottomWalls
    {
        type wall;
        faces
        (
            (1 5 4 0)
        );
    }
    leftSide			// Bob add
    {
        type cyclic;
	neighbourPatch rightSide;
        faces
        (
            (0 4 7 3)
            (3 7 10 8)
        );
    }
    rightSide			// Bob add
    {
        type cyclic;
	neighbourPatch leftSide;
        faces
        (
            (2 6 5 1)
            (2 9 11 6)
        );
    }
    frontAndBack
    {
        type empty;
        faces
        (
            (0 3 2 1)
            (4 5 6 7)
            (3 8 9 2)
            (7 6 11 10)
        );
    }
);

mergePatchPairs
(
);

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