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

convertToMeters 1;

vertices
(
    (0 0 0)      //0
    (4.7115 0 5.5)  //1
    (4.423 0 6)  //2
    (4.7115 0 6.5)     //3
    (0 0 12)    //4
    (12.423 0 12)    //5
    (7 0 6.5)  //6
    (8.5 0 6)     //7
    (7 0 5.5)     //8
    (12.423 0 0)    //9
    (0 1 0)      //10
    (4.7115 1 5.5)  //11
    (4.423 1 6)  //12
    (4.7115 1 6.5)     //13
    (0 1 12)    //14
    (12.423 1 12)     //15
    (7 1 6.5)     //16
    (8.5 1 6)     //17 
    (7 1 5.5)     //18
    (12.423 1 0)    //19
    (20 0 12)  //20
    (20 0 0)  //21
    (20 1 12)  //22
    (20 1 0)  //23
    (0 0 6) //24
    (12.423 0 6) //25
    (0 1 6) //26
    (12.423 1 6) //27
    (20 0 6) //28
    (20 1 6) //29
);

blocks
(

    hex (0 1 11 10 24 2 12 26) (30 1 30) simpleGrading (1 1 1)
    hex (24 2 12 26 4 3 13 14) (30 1 30) simpleGrading (1 1 1)

    hex (3 6 16 13 4 5 15 14) (30 1 30) simpleGrading (1 1 1)
    hex (8 9 19 18 7 25 27 17) (30 1 30) simpleGrading (1 1 1)
    hex (7 25 27 17 6 5 15 16) (30 1 30) simpleGrading (1 1 1)
    hex (0 9 19 10 1 8 18 11) (30 1 30) simpleGrading (1 1 1)
     hex (9 21 23 19 25 28 29 27) (100 1 30) simpleGrading (2 1 1)
hex (25 28 29 27 5 20 22 15) (100 1 30) simpleGrading (2 1 1)
);

edges
(
);

boundary
(
    inlet
    {
        type wall;
        faces
        (
            (0 24 26 10)
            (24 4 14 26)
        );
    }
    fixedWalls
    {
        type wall;
        faces
        (
            (4 5 15 14)
            (9 0 10 19) 
            (21 9 19 23)
            (5 20 22 15)
            
        );
    }
    frontAndBack
    {
        type empty;
        faces
        (
            (2 3 4 24)
            (1 2 24 0)
            (3 6 5 4)             
            (8 1 0 9)
           (7 6 5 25) 
           (8 7 25 9)
           (20 5 25 28)
           (28 25 9 21) 

            (12 13 14 26)
            (11 12 26 10)
            (13 16 15 14)             
            (18 11 10 19)
           (17 16 15 27) 
           (18 17 27 19)
           (22 15 27 29)
           (29 27 19 23)
        );
    } 
 cylinderwalls
    {
        type wall;
        faces
        (
            (2 3 13 12)
            (3 6 16 13)
            (6 7 17 16)
            (7 8 18 17)
            (1 2 12 11)
            (8 1 11 18)
        );
    }
 outlet
    {
        type wall;
        faces
        (
            (28 21 23 29)
            (20 28 29 22)
        );
    }

);

mergePatchPairs
(
);

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