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

scale   0.01;

vertices
( 
     (-30 -40 -0.1) // vertice 0 
     (30 -40 -0.1) // vertice 1 
     (30 40 -0.1) //vertice 2
     (-30 40 -0.1) // vertice 3 
     (-30 -40 0.1) // vertice 4 
     (30 -40 0.1) // vertice 5 
     (30 40 0.1) //vertice 6 
     (-30 40 0.1) // vertice 7
    
);

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

edges
(
);

boundary
(
    bottom
    {
        type patch;
        faces
        (
            (0 1 5 4)
        );
    }
    
    top
    {
        type patch;
        faces
        (
            (2 3 7 6)
            
        );
    }

    right
    {
        type patch;
        faces
        (
            (0 4 7 3)
            
        );
    }
	
	   left
    {
        type patch;
        faces
        (
		 (1 2 6 5)           
        );
    } 
	

    updown
    {
        type empty;
        faces
        ( 
    //(1 2 6 5)  
    //(0 4 7 3)		
    (0 3 2 1)
	(4 5 6 7) 
	    
            
        );
    }
);

// ****:******************************************************************** //
