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

solvers
{
	p
	{
        solver           GAMG;
        tolerance        1e-7;
        relTol           0.1;
        smoother         GaussSeidel;
	}

	Phi
	{
        solver           GAMG;
        tolerance        1e-7;
        relTol           0.1;
        smoother         GaussSeidel;
	}

    "(k|U|epsilon)"
    {
        solver      smoothSolver;
        smoother    GaussSeidel;
        tolerance   1e-8;
        relTol      0.1;
        maxIter     1000;
        minIter     1;
        nSweeps     1;
    }

}

SIMPLE
{
    nNonOrthogonalCorrectors       1;
    consistent	                   no;//yes;
    residualControl
    {
        p                          1e-5;
        U                          1e-5;
        "(k|epsilon)"              1e-5;
    }
}

relaxationFactors
{
    equations
    {
        k             0.8;
        epsilon       0.8;
        U             0.7;
    }

    fields
    {
        p             0.3;
    }
}

