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

scale   1e-6; //[µm]

vertices
(
    ( 0   0   0   ) //0
    ( 30  0   0   ) //1
    ( 30  10  0   ) //2
    ( 0   10  0   ) //3
    ( 0   0   0.5 ) //4
    ( 30  0   0.5 ) //5
    ( 30  10  0.5 ) //6
    ( 0   10  0.5 ) //7
);

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

edges
(
);

boundary
(
    bottom
    {
        type wall;
        faces   ((0 1 5 4));
    }
    top
    {
        type wall;
        faces   ((2 3 7 6));
    }
    left
    {
        type cyclic;
        neighbourPatch right;
        faces   ((0 4 7 3));
    }
    right
    {
        type cyclic;
        neighbourPatch left;
        faces   ((1 2 6 5));
    }
    frontAndBack
    {
        type empty;
        faces
        (
            (4 5 6 7)
            (3 2 1 0)
        );
    }
);

mergePatchPairs
(
);

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