/*--------------------------------*- 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 1;
vertices
(
    (0 0 0)
    (3 0 0)
    (0 2 0)
    (3 2 0)
    (0 0 1)
    (3 0 1)
    (0 2 1)
    (3 2 1)
);

blocks
(
    hex (0 1 3 2 4 5 7 6) (80 27 14) simpleGrading (1 1 1)
);

edges
(
);

defaultPatch
{ 
    name  solidWalls;
    type  wall;
}
boundary
(
    
    solidWalls
    {
     type wall;
     faces
     (
     //(0 1 5 4)//bottom
     //(2 6 7 3)//top
     (0 2 3 1)
     (4 5 7 6)
     //(0 4 6 2)
     //(1 3 7 5)
     );
    }
    cyclic1
	{
	type cyclic;
	neighbourPatch cyclic2;
	faces ((0 4 6 2));
	}
   cyclic2
	{
	type cyclic;
	neighbourPatch cyclic1;
	faces ((1 3 7 5));
	}
    topWall
    {
     type wall;
     faces
     (
     (2 6 7 3)//top
     );
    }
    bottomWall
    {
     type wall;
     faces
     (
     (0 1 5 4)//bottom
     );
    }
);

mergePatchPairs
(
);

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