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

ddtSchemes
{
    default         Euler;
}

gradSchemes
{
    default         cellLimited Gauss linear 1;
    grad(p)         Gauss linear;
}

divSchemes
{
    default         none;

    div(phi,mf)    bounded Gauss linearUpwind cellLimited Gauss linear 1;
    div(phi,mfVar)    bounded Gauss linearUpwind cellLimited Gauss linear 1;
    div(phi,Yi_h)  Gauss upwind;
    div(phi,U)      Gauss linearUpwindV cellLimited Gauss linear 1;   
    div(phi,epsilon) Gauss linearUpwind cellLimited Gauss linear 1;
    div(phi,k) Gauss linearUpwind cellLimited Gauss linear 1;
    div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear; 
    div(phi,K)        Gauss linearUpwind cellLimited Gauss linear 1;
}

laplacianSchemes
{
    default         Gauss linear limited 1;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default         uncorrected;
}

fluxRequired
{
    default         no;
    p;
}


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