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

ddtSchemes
{
    default         steadyState;
}

gradSchemes
{
    default         Gauss linear;
    limited         cellLimited Gauss linear 1;
    grad(U)         $limited;
    grad(Urel)      $limited;
    grad(nuTilda)   $limited;
    grad(k)         $limited;
    grad(omega)     $limited;
}

divSchemes
{
	default         			none;
	div(phi,Urel)      			bounded Gauss upwind;
	div(phi,U)      			bounded Gauss upwind;
	div(phi,nuTilda)  			bounded Gauss upwind;
	div(phi,k)  				bounded Gauss upwind;
	div(phi,omega)  			bounded Gauss upwind;
	div(phi,gammaInt)  			bounded Gauss upwind;
    	div(phi,ReThetat)  			bounded Gauss upwind;
	div((nuEff*dev2(T(grad(Urel)))))	Gauss linear;
	div((nuEff*dev2(T(grad(U))))) 	Gauss linear;
}

laplacianSchemes
{
    default         Gauss linear limited 0.33;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default         corrected;
}

wallDist
{
    method meshWave;
}

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

