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

scale 0.001;

vertices
(
	(-2.5 -2.5 0)
    (2.5 -2.5 0)
    (2.5 2.5 0)
    (-2.5 2.5 0)
    (-2.5 -2.5 1)
    (2.5 -2.5 1)
    (2.5 2.5 1)
    (-2.5 2.5 1)
);

blocks
(
    hex (0 1 2 3 4 5 6 7) (300 300 1) simpleGrading (1 1 1)             // 161x161 is the coarse grid. 321x321 is standard. 641x641 is fine.
);

edges
(
	
);

boundary
(
    front
    {
    	type empty;
    	faces
    	(
    		
    		(4 5 6 7)
    	);
    }
    back
    {
    	type empty;
    	faces
    	(
    		(0 3 2 1)
    		
    	);
    }
    bottom
    {
        type wall;
        faces
        (
            (0 1 5 4)
        );
    }
    top
    {
        type wall;
        faces
        (
            (3 7 6 2)
            
        );
     }
     right
    {
        type wall;
        faces
        (
            
            (1 2 6 5)
        );
     }
     left
    {
        type wall;
        faces
        (
            (3 0 4 7)
        );
     }
);

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