/*--------------------------------*- 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.5 0 5.5)  //1
    (5 0 6.5)  //2
    (0 0 12)     //3
    (10 0 12)    //4
    (5.5 0 5.5)  //5
    (10 0 0)     //6
    (20 0 0)     //7
    (20 0 12)    //8
    (0 1 0)      //9
    (4.5 1 5.5)  //10
    (5 1 6.5)  //11
    (0 1 12)     //12
    (10 1 12)    //13
    (5.5 1 5.5)     //14
    (10 1 0)     //15 
    (20 1 0)     //16
    (20 1 12)    //17
    (0 0 6.5)    //18
    (0 1 6.5)    //19
    (5 0 12)     //20
    (5 1 12)     //21
    (10 0 6.5)   //22
    (10 1 6.5)   //23
    (0 0 5.5)    //24
    (0 1 5.5)   //25
    (4.5 0 0)  //26
    (4.5 1 0)  //27
    (5.5 0 0)  //28
    (5.5 1 0)  //29
    (10 0 5.5) //30
    (10 1 5.5) //31
    (20 0 6.5)  //32
    (20 1 6.5)  //33
    (20 0 5.5)  //34
    (20 1 5.5)  //35
  );

blocks
(
    hex (26 28 29 27 1 5 14 10) (40 1 40) simpleGrading (1 1 1)
    hex (28 6 15 29 5 30 31 14) (40 1 40) simpleGrading (1 1 1)
    hex (24 1 10 25 18 2 11 19) (40 1 40) simpleGrading (1 1 1)
    hex (0 26 27 9 24 1 10 25) (40 1 40) simpleGrading (1 1 1)

   hex (18 2 11 19 3 20 21 12) (40 1 40) simpleGrading (1 1 1)
    hex (2 22 23 11 20 4 13 21) (40 1 40) simpleGrading (1 1 1)
    hex (5 30 31 14 2 22 23 11) (40 1 40) simpleGrading (1 1 1)
    
    hex (6 7 16 15 30 34 35 31) (40 1 40) simpleGrading (1 1 1)
    hex (30 34 35 31 22 32 33 23) (40 1 40) simpleGrading (1 1 1)
    hex (22 32 33 23 4 8 17 13) (40 1 40) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    inlet
    {
        type wall;
        faces
        (
            (0 24 25 9)
            (24 18 19 25)
            (18 3 12 19)
            
        );
    }
    fixedWalls
    {
        type wall;
        faces
        (
            (3 20 21 12)
            (20 4 13 21)
            (4 8 17 13)
            (6 28 29 15)
            (28 26 27 29)
            (26 0 9 27)
            (7 6 15 16)
        );
    }
    frontAndBack
    {
        type empty;
        faces
        (
            (1 2 18 24)
            (26 1 24 0)
            (2 20 3 18)
            (2 22 4 20)             
            (2 5 30 22)
            (5 28 6 30)
            (1 26 28 5)
            (8 4 22 32)
            (32 22 30 34)
            (34 30 6 7)
            (11 19 12 21)
            (23 11 21 13)

            (25 19 11 10)
            (9 25 10 27)

            (14 11 23 31)
            (29 14 31 15)
            (10 14 29 27)

            (15 31 35 16)
            (31 23 33 35)
            (23 13 17 33)
        );
    } 
 cylinderwalls
    {
        type wall;
        faces
        (
            
            (5 1 10 14)
            (1 2 11 10)
            (2 5 14 11)
        );
    }
 outlet
    {
        type wall;
        faces
        (
            (8 32 33 17)
            (32 34 35 33)
            (34 7 16 35)
        );
    }

);

mergePatchPairs
(
);

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