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

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

internalField   uniform 2e-06;

boundaryField
{
	"(Inlet|Outlet|inlet|outlet|Top_bot)"
        {
            type            freestream;
            freestreamValue $internalField;//uniform 2e-06;
            value           $internalField;//uniform 2e-06;
        }
	"(Periodic|front|back)"
        {
                type empty;
        }
	"(Airfoil|airfoil|airfoil_slat|airfoil_main|airfoil_flap)"
        {
        	type            fixedValue;
            value           uniform 0;
        }
}

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