/*---------------------------------------------------------------------------*\
| =========                 |                                                 |
| \\      /  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;
    location    "system";
    object      releaseArea;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

fields
(
    h
    {
        default 0;
        regions
        (

            releaseArea1
            {
        		type polygon;
        		offset (0 0 0);
        		vertices
        		(
        			( 0  0  0)
        			( 5  0  0)
        			( 5  1  0)
        			( 0  1  0)
          		);
        		value 0.5;
        	}
        /*
            releaseArea2
            {
        		type polygon;
        		offset (0 0 0);
        		vertices
        		(
        			( 5  0  0)
        			( 10  0  0)
        			( 10 1  0)
        			( 5  1  0)
          		);
        		value 0.001;
        	}
        */
        );
    }
);

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