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

ddtSchemes
{
    default         CrankNicolson 0.5;
}

gradSchemes
{
    default         Gauss linear;
}

divSchemes
{
    default         none;
    div(phi,U)       Gauss linearUpwind grad(U);
    div(U)          Gauss linear;
    div(phi,k)      Gauss limitedLinear 1;
    div(phi,T)      Gauss linearUpwind grad(T);
    div(phi,B)      Gauss linearUpwind grad(B);
    div(phi,nuTilda) Gauss limitedLinear 1;
    div(B)          Gauss linear;
    div(phi,epsilon)  bounded Gauss upwind; //Gauss linear;//jiade
    div(phi,omega)   bounded Gauss upwind;// Gauss upwind;//jiade
    div((0.5*((3*phi_0)-phi_0_0)),U) Gauss linear; // old time flux interpolated into new time step
    div((nuEff*dev(T(grad(U))))) Gauss linear;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default         corrected;
}

fluxRequired
{
    default         no;
    p               ;
}


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