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

solvers
{
    potential
    {
        solver           PCG;
        preconditioner   DIC;
        tolerance        1e-12;
        relTol           0.1;
        smoother         GaussSeidel;
        maxIter          1000;
    }
    potentialFinal
    {
        $potential;
        tolerance        1e-12;
        relTol           0;
    }

    T
    {
        solver           GAMG;
	maxIter		 0;	
    }
}


PIMPLE
{
    nOuterCorrectors    2;
    nNonOrthogonalCorrectors 0;
    residualControl
    {
    }
}

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