/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2106                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    p
    {
        solver          GAMG;
        tolerance       1e-6;
        relTol          0.1;
        smoother        GaussSeidel;
    }
    pFinal
    {
      $p;
    }

    "(U|k|omega|gammaInt|ReThetat)"
    {
        solver          GAMG;
        smoother        symGaussSeidel;
        tolerance       1e-8;
        relTol          0.1;
    }
    "(U|k|omega|gammaInt|ReThetat)Final"
    {
      solver          GAMG;
      smoother        symGaussSeidel;
      tolerance       1e-8;
      relTol          0.1;
    }
}

PIMPLE
{
    consistent      yes;
    nOuterCorrectors 50;
    nCorrectors    1;

    residualControl
    {
        p
        {
          tolerance          1e-6;
          relTol              0;
        }

        U
        {
          tolerance           1e-7;
          relTol                0;
        }
        "(k|omega|gammaInt|ReThetat)"
        {
          tolerance           1e-5;
          relTol                0;
        }
    }
}

relaxationFactors
{
    equations
    {
        ".*"            0.9;
    }
}


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