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

vertices
(
    (  0.2     0.15    0       )  // 0: center bottom front
    (-0.25    0.15   -0.0436  )  // 1: outer bottom front
    (-0.25   -0.4  -0.0436   )  // 2: outer top front
    (  0.2    -0.4    0        )  // 3: center top front

    (  0.2     0.15   0)  // 4: center bottom back
    (-0.25    0.15   0.0436 )  // 5: outer bottom back
    (-0.25   -0.4    0.0436 )  // 6: outer top back
    (  0.2    -0.4    0 )  // 7: center top back
);

blocks
(
    hex (0 4 5 1 3 7 6 2) (200 90 10) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
    
);

mergePatchPairs ();
// ************************************************************************* //
