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

scale   1;

vertices
(
   (0.2 0.2 0.2) // 0
   (1.2 0.2 0.2) // 1
   (1.2 1.2 0.2) // 2
   (0.2 1.2 0.2) // 3

   (0.2 0.2 1.2) // 4
   (1.2 0.2 1.2) // 5
   (1.2 1.2 1.2) // 6
   (0.2 1.2 1.2) // 7

);


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

edges
(
);

boundary
(
    bottomWall
    {
        type patch; //cyclicAMI;
        //neighbourPatch topWall; 
        faces
        (
            (0 3 2 1)
        );
    }
    topWall
    {
        type patch; //cyclicAMI;
        //neighbourPatch bottomWall;
        faces
        (
            (4 5 6 7)
        );
    }
    rightWall
    {
        type patch; //cyclicAMI;
        //neighbourPatch leftWall;
        faces
        (
            (2 3 7 6)
        );
    }
    backWall
    {
        type patch; //cyclicAMI;
        //neighbourPatch frontWall;
        faces
        (
            (3 0 4 7)
        );
    }
    leftWall
    {
        type patch; //cyclicAMI;
        //neighbourPatch rightWall;
        faces
        (
            (0 1 5 4)
        );
    }
    frontWall
    {
        type patch; //cyclicAMI;
        //neighbourPatch backWall;
        faces
        (
            (1 2 6 5)
        );
    }

);

mergePatchPairs
(
);


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