/*--------------------------------*- 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       dictionary;
    location    "system";
    object      fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

ddtSchemes
{
    default         CrankNicolson 0.9;
}

gradSchemes
{
//    default         Gauss linear;
      default 	    cellLimited Gauss linear 1;
}

divSchemes
{
    default         none;
    div(phi,U)      bounded Gauss linearUpwindV grad(U);

    div(phi,k)          bounded Gauss linearUpwind grad(k);
    div(phi,omega)      bounded Gauss linearUpwind grad(omega);
    div(phi,gammaInt)   bounded Gauss linearUpwind grad(gammaInt);
    div(phi,ReThetat)   bounded Gauss linearUpwind grad(ReThetat);

    div(phi,R)      bounded Gauss upwind;
    div(R)          Gauss linear;

    div(phi,nuTilda) bounded Gauss linearUpwind grad(nuTilda);

    div((nuEff*dev2(T(grad(U))))) Gauss linear;
    div((nu*dev2(T(grad(U))))) Gauss linear;
}

laplacianSchemes
{
    default         Gauss linear limited corrected 0.8;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default 	    limited corrected 0.8;
}

wallDist
{
    method meshWave;
}


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