/*--------------------------------*- 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;
}

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "../constant/include/blockMeshConfig";

scale   1;
vertices
(
    ($Xmin  $Ymin $Zmin)
    ($Xmax  $Ymin $Zmin)
    ($Xmax  $Ymax $Zmin)
    ($Xmin  $Ymax $Zmin)

    ($Xmin  $Ymin $Zmax)
    ($Xmax  $Ymin $Zmax)
    ($Xmax  $Ymax $Zmax)
    ($Xmin  $Ymax $Zmax)
);

blocks
(
    hex (0 1 2 3 4 5 6 7) ($xCells $yCells $zCells) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    sides
    {
      type overset;
      faces
      (
        (0 3 2 1)
        (1 2 6 5)
        (0 4 7 3)
        (4 5 6 7)
      );
    }
    blockmesh_back
    {
        type empty;
        faces
        (
            (3 7 6 2)
        );
    }
    blockmesh_front
    {
        type empty;
        faces
        (
            (1 5 4 0)
        );
    }
    object
    {
        type wall;
        faces ();
    }
);

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