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

scale   1.0;

vertices
(
    (0 0 0)
    (1 0 0)   
    (0 1 0)
    (1 1 0)
    
    (0 0 1)
    (1 0 1)   
    (0 1 1)
    (1 1 1)
);

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

edges
(
);

boundary
(
    leftWall
    {
        type wall;
        faces
        (
            (0 2 6 4)
        );
    }
    rightWall
    {
        type wall;
        faces
        (
            (1 5 7 3)
        );
    }
    lowerWall
    {
        type wall;
        faces
        (
            (0 4 5 1)
        );
    }
    topWall
    {
        type wall;
        faces
        (
            (2 3 7 6)
        );
    }
    frontEmpty
    {
        type empty;
        faces
        (
            (0 1 3 2)
        );
    }
    backEmpty
    {
        type empty;
        faces
        (
            (4 6 7 5)
        );
    }
);

mergePatchPairs
(
);

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