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

scale   0.05;

vertices
(
    (-19 -1 -0.9)
    (  3 -1 -0.9)
    (  3  1 -0.9)
    (-19  1 -0.9)
    (-19 -1  0.1)
    (  3 -1  0.1)
    (  3  1  0.1)
    (-19  1  0.1)
);

blocks
(
//  hex (0 1 2 3 4 5 6 7) ( 22  2  1) simpleGrading (1 1 1)
//  hex (0 1 2 3 4 5 6 7) ( 330 30  15) simpleGrading (1 1 1)
//  hex (0 1 2 3 4 5 6 7) ( 660 60  30) simpleGrading (1 1 1)
//  hex (0 1 2 3 4 5 6 7) ( 880 80  40) simpleGrading (1 1 1)
    hex (0 1 2 3 4 5 6 7) (1320 120  60) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    inlet
    {
        type patch;
        faces
        (
            (0 4 7 3)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (1 2 6 5)
        );
    }
    walls
    {
        type wall;
        faces
        (
        );
    }
    unused
    {
        type empty;
        faces
        (
            (4 5 6 7)
            (1 5 4 0)
            (3 7 6 2)
            (0 3 2 1)
        );
    }
);

mergePatchPairs
(
);


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