/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

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

internalField   uniform 1.878e-4; // Case 02
// internalField   uniform 1.878e-3;  // uncomment for Case 03
//internalField   uniform 0.0184; // uncomment for Case 04

boundaryField
{
    inlet
    {
        type            calculated;
        value           0; 
    }
    outlet
    {
        type            calculated;
        value           0; 
    }
    wall
    {
        type            nutkWallFunction;
        value           uniform 1.878e-4; 
    }

    wedgeFront
    {
    	type		wedge;
    }
    
    wedgeBack
    {
    	type		wedge;
    }     
}


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