/*--------------------------------*- 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
    (0 0 6)  //1
    (0 0 12)  //2
    (4.5 0 12)     //3
    (4.5 0 6)    //4
    (4.5 0 0)  //5
    (5.5 0 12)     //6
    (5.5 0 6.5)     //7
    (5.5 0 5.5)    //8
    (5.5 0 0)      //9
    
    (0 1 0)      //10
    (0 1 6)  //11
    (0 1 12)  //12
    (4.5 1 12)    //13
    (4.5 1 6)    //14
    (4.5 1 0)  //15
    (5.5 1 12)     //16
    (5.5 1 6.5)     //17
    (5.5 1 5.5)    //18
    (5.5 1 0)      //19

    (20 0 12)     //20
    (20 0 6.5)     //21
    (20 0 5.5)   //22
    (20 0 0)   //23
    
    (20 1 12)     //24
    (20 1 6.5)     //25
    (20 1 5.5)   //26
    (20 1 0)   //27

  );

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

edges
(
);

boundary
(
    inlet
    {
        type wall;
        faces
        (
            (0 1 11 10)
            (1 2 12 11)
            
            
        );
    }
    fixedWalls
    {
        type wall;
        faces
        (
            (2 3 13 12)
            (3 6 16 13)
            (6 20 24 16)
            (23 9 19 27)
            (9 5 15 19)
            (5 0 10 15)
            
        );
    }
    frontAndBack
    {
        type empty;
        faces
        (
            (5 4 1 0)
            (4 3 2 1)
            (7 6 3 4)
                      
            (4 5 9 8)

            (20 6 7 21)
            (21 7 8 22)
            (22 8 9 23)


            (15 14 11 10)
            (14 13 12 11)
            (17 16 13 14)
                      
            (14 15 19 18)

            (24 16 17 25)
            (25 17 18 26)
            (26 18 19 27)
            
        );
    } 
 cylinderwalls
    {
        type wall;
        faces
        (
            
            (8 4 14 18)
            (4 7 17 14)
            (7 8 18 17)
        );
    }
 outlet
    {
        type wall;
        faces
        (
            (20 21 25 24)
            (21 22 26 25)
            (22 23 27 26)
        );
    }

);

mergePatchPairs
(
);

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