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

solvers
{
    "(p_rgh|p_rghFinal)"
    {
        solver           deflatedPCG;
        preconditioner   DIC;
        tolerance        1e-7;
        relTol           0.0;

        smoother         GaussSeidel;

        cacheAgglomeration true;
        nCellsInCoarsestLevel 10;
        agglomerator     faceAreaPair;
        mergeLevels      1;

        maxIter          100;
    }

    "(U|UFinal)"
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance        1e-7;
        relTol           0.0;
    }

    B
    {
    }
}

PIMPLE
{
    pRefCell    	0;
    pRefValue   	0;

    residualControl
    {
    }
}
