/*--------------------------------*- C++ -*----------------------------------*\
  ==  == ====== ====   ====    |
                    \\     ||  | Multiphase Code Repository by HZDR
  ======   //   ||  || ===//   | Website: https://doi.org/10.14278/rodare.767
  ||  ||  //    ||  // || \\   | License: GPL-3.0-or-later
  ==  == ====== ====   ==  ==  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       dictionary;
    location    "system/fluid";
    object      fvSchemes;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

ddtSchemes
{
    default         Euler;
}

gradSchemes
{
    default         Gauss linear;
    limited         cellLimited Gauss linear 1;
}

divSchemes
{
    default                                 none;

    div(phi,alpha)                          Gauss vanLeer;
    div(phir,alpha)                         Gauss vanLeer;

    div(alphaRhoPhi,U)                      Gauss linearUpwind limited;
    div(phi,U)                              Gauss linearUpwind limited;

    div(alphaRhoPhi,Yi)                     Gauss linearUpwind limited;
    "div\(alphaRhoPhi,(h|e)\)"              Gauss linearUpwind limited;
    div(alphaRhoPhi,K)                      Gauss linearUpwind limited;
    div(alphaRhoPhi,(p|rho))                Gauss linearUpwind limited;
    "div\(alphaRhoPhi,(k|epsilon|omega)\)"  Gauss linearUpwind limited;
}

laplacianSchemes
{
    default         Gauss linear corrected;
}

interpolationSchemes
{
    default         linear;
}

snGradSchemes
{
    default         corrected;
}

wallDist
{
    method          meshWave;
    nRequired       yes;
}

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