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

solvers
{
    "p.*"
    {
        solver          GAMG;
        smoother        GaussSeidel;
        tolerance       1e-7;
        relTol          0.05;
        nPreSweeps       0;
        nPostSweeps      2;
        cacheAgglomeration yes;
        nCellsInCoarsestLevel 500;
        agglomerator     faceAreaPair;
        mergeLevels      1;
    }

	Phi
	{
		$p
	}
	
    "(Urel|U|nuTilda|k|omega|gammaInt|ReThetat).*"
    {
		solver		 	 smoothSolver;
        smoother         GaussSeidel;
        tolerance        1e-7;
        relTol           0.1;
    }


}

potentialFlow { nNonOrthogonalCorrectors 4; }
SIMPLE { nNonOrthogonalCorrectors 0; }

relaxationFactors
{
	fields { "p.*" 0.3; }
	equations { "Urel.*" 0.1; "U.*" 0.1; "nuTilda.*" 	0.1; "k.*" 	0.1; "omega.*" 	0.1; "gammaInt.*"	0.1;"ReThetat.*"	0.1; }
}

cache
{
	grad(Urel);
	grad(U);
	grad(nuTilda);
	grad(k);
	grad(omega);
	grad(gammaInt);
	grad(ReThetat);
}

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