/*---------------------------------------------------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | faSavageHutterFOAM                              |
|   \\  /    A nd           | Copyright (C) 2017 Matthias Rauter              |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}

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

convertToMeters 1;

vertices
(
    (   0    0   0) //0
	(  10    0   0) //1
	(  10    0   1) //2
	(   0    0   1) //3
	(   0    1   0) //4
	(  10    1   0) //5
	(  10    1   1) //6
	(   0    1   1) //7
);

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

edges
(

);

boundary
(
    slope
    {
        type		wall;
        faces
        (
			(0 1 5 4)
        );
    }

    in
    {
        type		wall;
        faces
        (
            (0 3 7 4)
        );
    }
    out
    {
        type		wall;
        faces
        (
            (1 5 6 2)
        );
    }
    frontback
    {
        type		wall;
        faces
        (
			(0 1 2 3)
			(4 7 6 5)
        );
    }
    top
    {
        type		wall;
        faces
        (
			(3 2 6 7)
        );
    }
);

mergePatchPairs
(
);

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