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

convertToMeters 0.01;

vertices
(
    (0 0 0) //0
    (20 0 0) //1
    (20 30 0) //2
    (0 30 0) //3
    (0 0 20) //4
    (20 0 20) //5
    (20 30 20) //6
    (0 30 20) //7

);

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

edges
(
);

patches
(
    wall walls
    (
        (1 0 3 2)
        (4 5 6 7)
        (5 1 2 6)
        (4 7 3 0)
        (4 0 1 5)
        (7 6 2 3)
    )
);

mergePatchPairs
(
);

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