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

solvers
{
    p
    {
        solver          GAMG;
        smoother        DICGaussSeidel;
        tolerance       1e-10;
        relTol          0.01;
    }
    U
    {
      solver          GAMG;
      smoother        DILUGaussSeidel;
      tolerance       1e-10;
      relTol          0.01;
    }
    "(k|omega|nut|gammaInt|ReThetat)"
    {
      solver          GAMG;
      smoother        DILUGaussSeidel;
      tolerance       1e-9;
      relTol          0.01;
    }
    yPsi
    {
      solver          GAMG;
      smoother        GaussSeidel;
      tolerance       1e-9;
      relTol          0;
    }

}

SIMPLE
{
    nNonOrthogonalCorrectors 1;
    consistent yes;
}

residualControl
{
  p          1e-03;
  "(U|k|omega|nut|gammaInt|ReThetat)"     1e-04;
}

relaxationFactors
{
    fields
    {
        p                                 0.3;
    }
    equations
    {
       U                                  0.7;
       k                                  0.7;
       nut                                0.7;
       omega                              0.7;
       gammaInt                           0.6;
       ReThetat                           0.6;
    }
}


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