/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  4.x                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
fluxScheme      Tadmor;

ddtSchemes
{
    default          Euler;
    
}

gradSchemes
{
    default             Gauss linear;
    grad(U)             Gauss linear;
    grad(k)             Gauss linear;
    grad(omega)         Gauss linear;
}

divSchemes
{
    default                                 none;
    div(tauMC)                              Gauss linear;
    div(phi,k)                              Gauss limitedLinear 1;
    div(phi,omega)                          Gauss limitedLinear 1;
    div(((rho*nuEff)*dev2(T(grad(U)))))     Gauss linear;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes
{
    default         	linear;
    reconstruct(rho) 	vanLeer;
    reconstruct(U)  	vanLeerV;
    reconstruct(T)  	vanLeer;
}

snGradSchemes
{
    default         corrected;
}
 wallDist
 {
 method exactDistance;
 }



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