/*--------------------------------*- 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.001;

vertices
(
    (0 0 0)
    (180 0 0)
    (180 62.7 0)
    (0 62.7 0)
    (0 0 112.5)
    (180 0 112.5)
    (180 62.7 112.5)
    (0 62.7 112.5)
    (40 0 0)
    (50 0 0)
    (50 62.7 0)
    (40 62.7 0)
    (40 0 112.5)
    (50 0 112.5)
    (50 62.7 112.5)
    (40 62.7 112.5)
    (80 0 0)
    (90 0 0)
    (90 62.7 0)
    (80 62.7 0)
    (80 0 112.5)
    (90 0 112.5)
    (90 62.7 112.5)
    (80 62.7 112.5)
);

blocks
(
    hex (0 8 11 3 4 12 15 7) (20 30 30) simpleGrading (1 1 1)
    hex (8 9 10 11 12 13 14 15) (5 30 30) simpleGrading (1 1 1)
    hex (9 16 19 10 13 20 23 14) (15 30 30) simpleGrading (1 1 1)
    hex (16 17 18 19 20 21 22 23) (5 30 30) simpleGrading (1 1 1)
    hex (17 1 2 18 21 5 6 22) (40 30 30) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    floor_adb
    {
        type wall;
        faces
        (
            (0 8 12 4)
            (9 16 20 13)
            (17 1 5 21)
        );
    }
    ceiling
    {
        type wall;
        faces
        (
            (3 7 15 11)
            //(11 15 14 10)
            (10 14 23 19)
            //(19 23 22 18)
            (18 22 6 2)
        );
    }
    freeWalls
    {
        type wall;
        faces
        (
            (0 3 11 8)
            (11 10 9 8)
            (10 19 16 9)
            (19 18 17 16)
            (18 2 1 17)
            (15 7 4 12)
            (14 15 12 13)
            (23 14 13 20)
            (22 23 20 21)
            (6 22 21 5)
	    (0 4 7 3) //
        );
    }
    inlet
    {
	type patch;
	faces
	(
	    //(0 4 7 3)
	    (11 15 14 10)
	    (19 23 22 18)
	);
    }
    outlet
    {
	type patch;
	faces
	(
            (2 6 5 1)
	);
    }
    face_heated
    {
	type wall;
	faces
	(
            (8 9 13 12)
            (16 17 21 20)
	);
    }
);

mergePatchPairs
(
);

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