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

    Phi0
    {
        solver           PBiCGStab;
	preconditioner	 DIC;
        tolerance        1e-6;
        relTol           0.0;

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

    Phi1
    {
        solver           PBiCGStab;
        preconditioner   DILU;
        tolerance        1e-6;
        relTol           0.0;

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

    Phi2
    {
        solver           PBiCGStab;
        preconditioner   DIC;
        tolerance        1e-14;
        relTol           0.0;

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

}

PIMPLE
{
    nCorrectors      	50;
    nOuterCorrectors    1;
    nNonOrthogonalCorrectors 0;
}

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