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

ddtSchemes
{
    default         backward;
}

gradSchemes
{
        default         Gauss linear;//default         cellMDLimited Gauss linear 1;// suggested by pablodecastillo on cfd-online.com //Gauss linear;
}

divSchemes
{
    div(phi,U)      Gauss Gauss upwind;//LUST unlimitedGrad(U); 
    //div(rho*phi,U) Gauss limitedLinear 1; //Gauss linearUpwind cellLimited Gauss linear ;// suggested by pablodecastillo on cfd-online.com //Gauss limitedLinearV 1;
    div(rho*phi,U)  Gauss upwind;
    div(phi,alpha)  Gauss vanLeer;
    div(phirb,alpha) interfaceCompression;
    div((muEff*dev(T(grad(U))))) Gauss linear;
}

laplacianSchemes
{
        default         Gauss linear limited 0.33;// wichtig für nicht-orthogonalität default         Gauss linear corrected;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
        default         limited 0.33;//default         corrected;
}

fluxRequired
{
    default         no;
    p_rgh;
    pcorr;
    "alpha.";
}

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