FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvSolution;
}

solvers
{
    "(p|p_rgh)"
    {
        solver          GAMG;
        tolerance       1e-12;
        relTol          0.1;
        smoother        GaussSeidel;
    }

    "(p|p_rgh)Final"
    {
        $p;
        relTol          0;
    }

    "(U|T|k|omega|R)"
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-12;
        relTol          0.1;
    }

    "(U|T|k|omega|R)Final"
    {
        $U;
        relTol          0;
    }
}

PIMPLE
{
    nNonOrthogonalCorrectors 0;
    nCorrectors              1;
    nOuterCorrectors         50;
    residualControl
    {
      U
      {
        tolerance  1e-5;
        relTol     0;
      }
      p
      {
        tolerance  5e-4;
        relTol     0;
      }
    }

    pRefCell       0;
    pRefValue      0;
}

relaxationFactors
{
    fields
    {
      p_rgh        0.5;
      p            0.5;
    }
    equations
    {
        ".*"       0.7;
    }
}
