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;
        tolerance        1e-7;
        relTol           0.01;
        smoother         GaussSeidel;
        cacheAgglomeration true;
        nCellsInCoarsestLevel 10;
        agglomerator     faceAreaPair;
        mergeLevels      1;
    }
    TFinal
    {
        $T;
        tolerance        1e-8;
        relTol           0;
    }
}


PIMPLE
{
    nOuterCorrectors    1;
    fCorrectors		100;

    nNonOrthogonalCorrectors 0;

    residualControl
    {
        T
        {
            tolerance  1e-3;
        }
        potential
        {
            tolerance  1e-3;
        }
    }
}

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