FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      p;
}

dimensions      [0 2 -2 0 0 0 0];

pInf		1.01e5;
rhoInf		1.225;

internalField   uniform #eval {$pInf / $rhoInf};

boundaryField
{
    inlet
    {
        type            zeroGradient;
    }

    outlet
    {
        type            fixedValue;
        value           uniform #eval {$pInf / $rhoInf};
    }

    flap
    {
        type            zeroGradient;
    }

    airfoil
    {
        type            zeroGradient;
    }

    defaultFaces
    {
        type            empty;
    }

}
