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

x                             0.1;
y                             1;
z                             0.1;
nx                            1;
ny                            1;
nz                            1;
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                      
(
	outlet
	{
		type                          patch;
		faces                         
		(
			(7 3 2 6)
		);
	}
	inlet
	{
		type                          patch;
		faces                         
		(
			(0 4 5 1)
		);
	}
	wall
	{
		type                          empty;
		faces                         
		(
			(0 4 7 3)
			(1 2 6 5)
			(0 3 2 1)
			(4 5 6 7)
		);
	}
);
mergePatchPairs               ( );


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