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

ddtSchemes
{
  default backward;
}

gradSchemes
{
  default Gauss linear;
}

divSchemes
{
  default none;
  div(phi,U) Gauss LUST grad(U);
  div(phi,k) Gauss limitedLinear 1;
  div((nuEff*dev2(T(grad(U))))) Gauss linear;

  // Extra term for the potentialFoam solver that we use for the initial condition
  div(div(phi,U)) Gauss linear;
}

laplacianSchemes
{
  default Gauss linear corrected;
}

interpolationSchemes
{
  default linear;
}

snGradSchemes
{
  default corrected;
}

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