/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \    /   O peration     | Version:  OpenFoam-9 (commit f8d11b031)
    \  /    A nd           | Upstream: A Wikki Brasil project
     \/     M anipulation  | Version:  v21.12
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

x                             0.05;
y                             0.05;
z                             0.106;
nx                            25;
ny                            25;
nz                            53;
vertices                      
(
	(0 0 0)
	($x 0 0)
	($x $y 0)
	(0 $y 0)
	(0 0 $z)
	($x 0 $z)
	($x $y $z)
	(0 $y $z)
);
blocks                        
(
	hex (0 1 2 3 4 5 6 7) ($nx $ny $nz) simpleGrading (1 1 1)
);
edges                         ( );
boundary                      
(
	inlet
	{
		type                          patch;
		faces                         
		(
			(0 3 2 1)
		);
	}
	outlet
	{
		type                          patch;
		faces                         
		(
			(4 5 6 7)
		);
	}
	wall
	{
		type                          wall;
		faces                         
		(
			(0 4 7 3)
			(1 2 6 5)
			(0 4 5 1)
			(7 3 2 6)
		);
	}
);
mergePatchPairs               ( );


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