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

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

solvers
{
    pd
    {
        solver           PCG;
        preconditioner   DIC;
        tolerance        1e-08;
        relTol           0.0;
        maxIter          2000;	// limit for faster convergence
    }

    s
    {
        solver           PCG;
        preconditioner   DIC;
        tolerance        1e-08;
        relTol           0.0;
    }

    U
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance        1e-06;
        relTol           0.0;
    }

    Yi
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance        1e-08;
        relTol           0.0;
    }
}

PISO
{
    pRefCell        0;
    pRefValue       0;
}

relaxationFactors
{
    pd              0.7;
    U               0.7;	// critical
    YO2             0.7;
    YN2             0.7;

    YH2O            0.7;
    s		    0.7;
}
