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

solvers
{
    p_rgh
    {
        solver           GAMG;
        tolerance        1e-7;
        relTol           0.01;
        smoother         GaussSeidel;
        maxIter          100;
    }

    "(U|h|e|k|epsilon)"
    {
        solver          smoothSolver;
        smoother	 symGaussSeidel;
        tolerance       1e-7;
        relTol          0.01;
    }
    
    "Ii.*"
    {
        solver              GAMG;
        tolerance           1e-6;
        relTol              0;
        smoother            symGaussSeidel;
        maxIter             5;
        nPostSweeps         1;
    }
}

SIMPLE
{
    momentumPredictor 	yes;
    nCorrector		3;
    //rhoMax          2;
    //rhoMin          1;
}

relaxationFactors
{
    fields
    {
        rho             0.5;
        p_rgh           0.7;
    }
    equations
    {
        U               0.4;
        "(h|e)"         0.4;
        k               0.4;
        epsilon         0.4;
        "ILambda.*"     0.4;
        ".*"		0.4;
    }
}


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