fvSchemes for rhoSimpleFoam

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

ddtSchemes
{
    default         steadyState;
}

gradSchemes
{
    default         Gauss linear;
}

divSchemes
{
    default         none;
    div(phi,U)      bounded Gauss vanLeerV 1; 

    div(phi,nuTilda) bounded Gauss vanLeer 1;

    div((muEff*dev2(T(grad(U))))) Gauss linear;

    // Sxx - Szz are variables for Spalart-Shur correction
    div(phi,Sxx)    bounded Gauss linear;
    div(phi,Sxy)    bounded Gauss linear;
    div(phi,Sxz)    bounded Gauss linear;
    div(phi,Syx)    bounded Gauss linear;
    div(phi,Syy)    bounded Gauss linear;
    div(phi,Syz)    bounded Gauss linear;
    div(phi,Szx)    bounded Gauss linear;
    div(phi,Szy)    bounded Gauss linear;
    div(phi,Szz)    bounded Gauss linear;

    div(phid,p)     bounded Gauss linear;
    div(phiv,p)     bounded Gauss linear;
    div(phi,K)      bounded Gauss linear;
    div(phi,h)      bounded Gauss vanLeer 1;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes

{
    default         linear;
}

snGradSchemes
{
    default         corrected;
}

fluxRequired
{
    default         no;
    p               ;
}


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

Comments