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

solvers
{
	"U.*"
	{
		solver	PBiCGStab;
		preconditioner	DILU;
		tolerance	1e-4;
		relTol	0;
		nSweeps	1;
	}

	"p.*"
	{
		solver	GAMG;
		smoother	DIC;
		tolerance	1e-4;
		relTol	0;
		nCellsInCoarsestLevel	10;
		nPreSweeps	0;
		mergeLevels	1;
		nPostSweeps	2;
		cacheAgglomeration	true;
		agglomerator	faceAreaPair;
	}

}

PIMPLE
{
	nNonOrthogonalCorrectors	1;
	pRefValue	0;
	pRefCell	0;

}

relaxationFactors
{
	fields
	{
		"p.*"	0.3;
	}

	equations
	{
		"U.*"	0.5;
	}
}


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