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

#include "../settings"

scale   1;

vertices
(
   ($Cmin $Cmin $Cmin) // 0
   ($Cmax $Cmin $Cmin) // 1
   ($Cmax $Cmax $Cmin) // 2
   ($Cmin $Cmax $Cmin) // 3

   ($Cmin $Cmin $Cmax) // 4
   ($Cmax $Cmin $Cmax) // 5
   ($Cmax $Cmax $Cmax) // 6
   ($Cmin $Cmax $Cmax) // 7
);


blocks
(
    hex (0 1 2 3 4 5 6 7) ($ncell $ncell $ncell) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    bottomWall
    {
        type patch;
        faces
        (
            (0 3 2 1)
        );
    }
    topWall
    {
        type patch;
        faces
        (
            (4 5 6 7)
        );
    }
    rightWall
    {
        type patch;
        faces
        (
            (2 3 7 6)
        );
    }
    backWall
    {
        type patch;
                faces
        (
            (3 0 4 7)
        );
    }
    leftWall
    {
        type patch;
        faces
        (
            (0 1 5 4)
        );
    }
    frontWall
    {
        type patch;
        faces
        (
            (1 2 6 5)
        );
    }

);

mergePatchPairs
(
);


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