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

solvers
{
    Potential0
    {
        solver           deflatedPCG;
        preconditioner   DIC;
        tolerance        1e-13;
        relTol           0.0;

        smoother         GaussSeidel;
        cacheAgglomeration true;
        nCellsInCoarsestLevel 100;
        agglomerator     faceAreaPair;
        mergeLevels      1;
        maxIter          5000;
    }

    potential
    {
        solver           deflatedPCG;
        preconditioner   DIC;
        tolerance        1e-10;
        relTol           0.1;
        smoother         GaussSeidel;
        maxIter          1000;
    }

    potentialFinal
    {
        $potential;
        tolerance        1e-9;
        relTol           0;
    }
}


PIMPLE
{
    nOuterCorrectors    2;
    nCorrectors         1;
    nNonOrthogonalCorrectors 0;
    potentialRefCell    0;
    potentialRefValue   0;

    Potential0RefCell    0;
    Potential0RefValue   0;
}

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