/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM                                        |
|  \\    /   O peration     |                                                 |
|   \\  /    A nd           |                                                 |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      nut;
}

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

internalField   uniform 1e-05;

boundaryField
{
    "(Inlet|inlet|Outlet|outlet|Top_bot)"
    {
        type            calculated;
        value           $internalField;
    }

    "(Airfoil|airfoil|airfoil_slat|airfoil_main|airfoil_flap)"
    {
        type            nutkWallFunction;
        value           uniform 0;
    }

    "(Periodic|front|back)"
    {
        type            empty;
    }
}

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