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

scale   1;

vertices
(
    (0 0 0)
    (2.58 0 0)
    (0 0.012 0)
    (2.58 0.012 0)
    (0 0 0.038)
    (2.58 0 0.038)
    (0 0.012 0.038)
    (2.58 0.012 0.038)
);

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

edges
(
);

boundary
(
    bottomWall
    {
        type            wall;
        faces           ((0 1 5 4));
    }
    topWall
    {
        type            wall;
        faces           ((2 6 7 3));
    }
    
	back
    {
        type            empty;
        faces           ((0 2 3 1));
    }
	front
    {
        type            empty;
        faces           ((4 5 7 6));
    }
    
    inlet
    {
        type            patch;
        faces           ((0 4 6 2));
    }
    outlet
    {
        type            patch;
        faces           ((1 3 7 5));
    }
);

mergePatchPairs
(
);
