/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  2.3.0                                 |
|   \\  /    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((-devRhoReff&U))	  Gauss linear;
    div((muEff*dev2(T(grad(U))))) Gauss linear;
    
    //momentum equation
    div(phiNeg,U)	Gauss vanLeerV;
    div(phiPos,U)	Gauss vanLeerV;

    //energy equation
    div(phiNeg,h)	Gauss vanLeer;
    div(phiPos,h)	Gauss vanLeer;
    div(phiNeg,Ek)	Gauss vanLeer;
    div(phiPos,Ek)	Gauss vanLeer;

    //continuity equation
    div(phid_neg,p)	Gauss vanLeer;
    div(phid_pos,p)	Gauss vanLeer;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes
{
    default         none;
    
    interpolate((rho*U))	linear;
    
    reconstruct(psi)		vanLeer;
    reconstruct(p)		vanLeer;
    reconstruct(U)		vanLeerV;
    reconstruct(Dp)		vanLeer;
}

snGradSchemes
{
    default         corrected;
}

fluxRequired
{
    default	none;
    p;
}

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