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

solvers
{
    "T"
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-07;
        relTol          0.1;
    }
    "TFinal"
    {
        $T;
        relTol          0;
    }
}

PIMPLE
{
    nOuterCorrectors  3;
    fCorrectors		  250;
    nNonOrthogonalCorrectors 0;
    pRefCell        0;
    pRefValue       0;
    residualControl
    {
        T
        {
                tolerance  1e-8;
		relTol        0;
        }
    }
}

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