
/*--------------------------------*- 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 -4)      //0
    (4.6 0 5.7)  //1
    (4.6 0 6.3)  //2
    (0 0 16)     //3
    (7 0 16)    //4
    (5.4 0 6.3)  //5
    (5.4 0 5.7)  //6
    (7 0 -4)     //7
    (20 0 -4)     //8
    (20 0 16)    //9
    (0 1 -4)      //10
    (4.6 1 5.7)  //11
    (4.6 1 6.3)  //12
    (0 1 16)     //13
    (7 1 16)    //14
    (5.4 1 6.3)     //15
    (5.4 1 5.7)     //16
    (7 1 -4)     //17 
    (20 1 -4)     //18
    (20 1 16)    //19
    (0 0 8)  //20
    (0 0 4)    //21
    (3 0 16)  //22 
    (3 0 -4)   //23
    (20 0 4)  //24
    (20 0 8)  //25
    (3 0 8) //26
    (7 0 8)  //27
    (3 0 4)  //28 
    (7 0 4)  //29
    
    (0 1 8)  //30
    (0 1 4)    //31
    (3 1 16)  //32 
    (3 1 -4)   //33
    (20 1 4)  //34
    (20 1 8)  //35
    (3 1 8) //36
    (7 1 8)  //37
    (3 1 4)  //38 
    (7 1 4)  //39




);

blocks
(

    hex (0 23 33 10 21 28 38 31 ) (20 1 40) simpleGrading (0.5 1 1)
    hex (23 7 17 33 28 29 39 38) (50 1 40) simpleGrading (1 1 1)
    hex (7 8 18 17 29 24 34 39) (100 1 40) simpleGrading (3 1 1)
    hex (28 29 39 38 1 6 16 11) (50 1 50) simpleGrading (1 1 1) 

    hex (21 28 38 31 20 26 36 30) (20 1 50) simpleGrading (0.5 1 1)
     hex (28 1 11 38 26 2 12 36) (50 1 50) simpleGrading (1 1 1)
     hex (20 26 36 30 3 22 32 13) (20 1 40) simpleGrading (0.5 1 1)
 hex (26 27 37 36 22 4 14 32) (50 1 40) simpleGrading (1 1 1)
  hex (2 5 15 12 26 27 37 36) (50 1 50) simpleGrading (1 1 1)

hex (27 25 35 37 4 9 19 14) (100 1 40) simpleGrading (3 1 1)
hex (29 24 34 39 27 25 35 37) (100 1 50) simpleGrading (3 1 1)

hex (6 29 39 16 5 27 37 15) (50 1 50) simpleGrading (1 1 1)
    
);




boundary
(
    inlet
    {
        type wall;
        faces
        (
            (0 21 31 10)
            (21 20 30 31)
            (20 3 13 30)

        );
    }
    fixedWalls
    {
        type wall;
        faces
        (
            (3 22 32 13)
            (22 4 14 32)
            (4 9 19 14)

            (23 0 10 33)
            (7 23 33 17)
            (8 7 17 18)
        );
    }
    frontAndBack
    {
        type empty;
        faces
        (
            (1 2 26 28)
            (28 26 20 21)             
            (0 23 28 21)
            (20 26 22 3)
            (2 5 27 26) 
            (26 27 4 22) 
            (27 25 9 4)
            (29 24 25 27)              
            (6 29 27 5)
            (7 8 24 29)
            (23 7 29 28)
            (28 29 6 1)


            (11 12 36 38)
            (38 36 30 31)             
            (10 33 38 31)
            (30 36 32 13)
            (12 15 37 36) 
            (36 37 14 32) 
            (37 35 19 14)
            (39 34 35 37)              
            (16 39 37 15)
            (17 18 34 39)
            (33 17 39 38)
            (38 39 16 11)
        );
    } 
 cylinderwalls
    {
        type wall;
        faces
        (
            (2 5 15 12)
            (6 1 11 16)
            (1 2 12 11)
            (5 6 16 15)
        );
    }
 outlet
    {
        type wall;
        faces
        (
            (9 25 35 19)
            (25 24 34 35)
            (24 8 18 34)
        );
    }

);

mergePatchPairs
(
);

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