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

ddtSchemes
{
    default         localEuler;
}

gradSchemes
{
    default         Gauss linear;
}

divSchemes
{
    div_U                               Gauss LUST grad(U); //limitedLinearV 1; //LUST grad(U);
    div_phi                             Gauss limitedLinear 1;
    div_phid                            Gauss limitedLinear 1;

    default                             none;
    div(phi,U)                          $div_U;
    div(phi,e)                          $div_phi;
    div(phi,h)                          $div_phi;
    div(phi,K)                          $div_phi;
    div(phi,Ekp)                        $div_phi;
    div(phi,nuTilda)                    $div_phi;
    div(phi,k)                          $div_phi;
    div(phi,omega)                      $div_phi;
    div(phid,p)                         $div_phid;
    div(phiv,p)                         $div_phid;
    div((nuEff*dev2(T(grad(U)))))       Gauss linear;
    div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default         limited 1;
}

wallDist
{
    method          meshWave;
}

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