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

solvers
{
    p_rgh
    {
        solver          PCG;
		preconditioner	DIC;
        tolerance       1e-08;
        relTol          0.01;
    }

    "(U|T|k|epsilon|R|nuTilda)"
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-05;
        relTol          0.1;
    }
}

SIMPLE
{
    nNonOrthogonalCorrectors 0;
	
	residualControl
	{
		p_rgh	1e-2;
		U		1e-4;
		T		1e-2;
		"(k|epsilon|omega)"	1e-3;
	}

}

relaxationFactors
{
    fields
    {
        p_rgh           0.1;
    }
    equations
    {
        U               0.1;
		T				0.5;
        k               0.1;
        epsilon         0.1;
        R               0.1;
        nuTilda         0.1;
    }
}


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