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

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

convertToMeters 1;

vertices
(
    (1.5 0.75 -1.5)     
    (-1.5 0.75 -1.5)     
    (-1.5 -2.25 -1.5)      
    (1.5 -2.25 -1.5)     
   (1.5 0.75 1.5)     
    (-1.5 0.75 1.5)     
    (-1.5 -2.25 1.5)      
    (1.5 -2.25 1.5) 
    
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (40 40 40) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    /*frontAndBack
    {
        type patch;
        faces
        (
            (0 4 5 1)
            (3 7 6 2)
        );
    }
    inlet
    {
        type patch;
        faces
        (
            (0 3 7 4)
        );
    }
    outlet
    {
        type patch;
        faces
        (
            (2 6 5 1)
        );
    }
    lowerWall
    {
        type wall;
        faces
        (
            (4 5 6 7)
        );
    }
    upperWall
    {
        type patch;
        faces
        (
            (0 1 2 3)
        );
    }*/
    walls
         {
          type wall;
          faces
             (
            (3 2 6 7)  
            (1 0 4 5)
             (0 3 7 4)
              (2 1 5 6)
              (0 1 2 3)
               (4 7 6 5)
         );
        }
      
);

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