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

ddtSchemes
{
    default             Euler;
}

gradSchemes
{
    default     Gauss linear;
}

divSchemes
{
    default                 none;

    div(phi,alpha1)         Gauss vanLeer;
    div(phir,alpha1)        Gauss vanLeer;

    "div\(alphaPhi.,U.\)"   Gauss limitedLinearV 1;
    "div\(phi.,U.\)"        Gauss limitedLinearV 1;
    "div\(\(alpha.*Rc\)\)"  Gauss linear;
    "div\(phi.*,.*rho.*\)"  Gauss linear;

    "div\(alphaPhi.,(h|e).\)"   Gauss limitedLinear 1;
    "div\(alphaPhi.,(K.|p)\)"   Gauss limitedLinear 1;

    div(alphaPhi2,k)        Gauss limitedLinear 1;
    div(alphaPhi2,epsilon)  Gauss limitedLinear 1;
}

laplacianSchemes
{
    default     Gauss linear uncorrected;
}

interpolationSchemes
{
    default     linear;
}

snGradSchemes
{
    default     uncorrected;
}

fluxRequired
{
    default     no;
    p           ;
}


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