/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2006                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      gammaInt;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 1;

boundaryField
{
    Inlet
    {
        type            fixedValue;
        value 		uniform 1;
    }
    "(Bottom|Top)"
    {
        type            zeroGradient;
    }
    "(Front|Back)"
    {
	type		cyclic;
    }
    Wing
    {
        type            zeroGradient;
    }
    Outlet
    {
        type            zeroGradient;
    }
}

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