/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | foam-extend: Open Source CFD                    |
|  \\    /   O peration     | Version:     4.1                                |
|   \\  /    A nd           | Web:         http://www.foam-extend.org         |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    "p|pFinal"
    {
        solver          PCG;
        preconditioner  DIC;
        tolerance       1e-6;
        relTol          0.01;
        minIter         1;
    }

    "U|UFinal|k|epsilon|kFinal|epsilonFinal"
    {
        solver          PBiCG;
        preconditioner  DILU;
        tolerance       1e-6;
        relTol          0.01;
        minIter         1;
    }
}

PISO
{
    nCorrectors                 3;
    nNonOrthogonalCorrectors    1;
}

PIMPLE 
{
    nOuterCorrectors           10;
    nCorrectors                 3;
    nNonOrthogonalCorrectors    1;
    
    residualControl
    {
        U
        {
            relTol      0.01;
            tolerance   1e-6;
        }
        p
        {
            relTol      0.0;
            tolerance   1e-6;
        }
    }
    
}

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