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

 );

blocks
(

    hex (0 1 11 10 3 2 12 13) (35 1 35) simpleGrading (1 1 1) //Block 1
    hex (2 20 24 12 3 22 26 13) (35 1 35) simpleGrading (1 1 1) //Block 2
    hex (20 21 25 24 22 23 27 26) (35 1 35) simpleGrading (1 1 1) //Block 3
    hex (21 5 15 25 23 4 14 27) (35 1 35) simpleGrading (1 1 1) //Block 4
    hex (6 7 17 16 5 4 14 15) (35 1 35) simpleGrading (1 1 1) // Block 5
    hex (0 30 34 10 1 28 32 11) (35 1 35) simpleGrading (1 1 1) //Block 6 
    hex (30 31 35 34 28 29 33 32) (35 1 35) simpleGrading (1 1 1) //Block 7
    hex (31 7 17 35 29 6 16 33) (35 1 35) simpleGrading (1 1 1) //Block 8
    hex (7 8 18 17 4 9 19 14) (50 1 35) simpleGrading (2 1 1) //Block 9
);

edges
(
);

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

);

mergePatchPairs
(
);

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