/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  9
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

ddtSchemes
{
    default         Euler;
}

gradSchemes
{
   default         cellMDLimited Gauss linear 0.5; //0.5 cellLimited Gauss linear 1
    grad(U)         cellMDLimited Gauss linear 0.5;  //1
}

divSchemes
{
    default             none;

    div(phi,U)          bounded Gauss upwind;
    div(phid,p)         bounded Gauss upwind;
    div(phi,(p|rho))    bounded Gauss upwind;
    div(phi,K)          bounded Gauss upwind;
    div(phi,e)          bounded Gauss upwind;
    div(phi,k)          bounded Gauss upwind;
    div(phi,epsilon)    bounded Gauss upwind;
    div(phi,R)          bounded Gauss upwind;
    div(phi,omega)      bounded Gauss upwind;
    div(phi,h)		bounded Gauss upwind;
    div((rho*R))        bounded Gauss upwind;
    div(R)              bounded Gauss upwind;
    div(U)               bounded Gauss upwind;

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

laplacianSchemes
{
    default         Gauss linear limited 0.777; //Gauss linear corrected;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default         limited 0.777;//corrected;
}


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