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

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

	Phi
	{
		$p;
	}

    "(U|k|omega|nuTilda|T)"
    {
		solver		smoothSolver;
		smoother	GaussSeidel;
		tolerance	1e-8;
		relTol		0.1;
		nSweeps		1;
    }
}

SIMPLE
{
	nNonOrthogonalCorrectors	2;
	residualControl
	{
    	p       1e-05;
    	U       1e-07;
	}
}
potentialFlow
{
	nNonOrthogonalCorrectors  10;
}


relaxationFactors
{
	fields
	{
		p		0.3;
	}

	equations
	{
		U		0.7;
		k		0.4;
		omega	0.4;
	}
}
// ************************************************************************* //
