/*--------------------------------*- 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.0118625 0.0005175 0)
    (0.0118625 0.0005175 0.015) 
    (0 0 0.015)
    (0.0118625 -0.0005175 0) 
    (0.0118625 -0.0005175 0.015)
);
 
blocks
(
    hex (0 4 1 0 3 5 2 3) (500  1 500) simpleGrading (1 1 1)
);
 
edges
(
);
 
boundary
(
     front
     { 
           type wedge;
           faces  
           (
               (0 1 2 3)
           );
     }
     back
     { 
           type wedge;
           faces  
           (
               (0 3 5 4)
           );
     }
     walls
     { 
           type wall;
           faces  
           (
               (1 4 5 2)
               (0 4 1 0)
               (3 5 2 3)
           );
     }
     axis
     { 
           type empty;
           faces  
           (
               (0 3 3 0)
           );
     }
);
 
mergePatchPairs
(
);

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