/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    p
    {
        solver          PCG;
        preconditioner  DIC;
        tolerance       1e-07;
        relTol          0.01;
    }

    pFinal
    {
        $p;
        relTol          0;
    }

    U
    {
        solver          smoothSolver;
        smoother        GaussSeidel;
        tolerance       1e-08;
        relTol          0.01;
    }
    
    UFinal
    {
        $U;
        relTol           0;
        tolerance        1e-8;
    }
}

PIMPLE
{
    correctPhi          no;
    nOuterCorrectors   20;
    nCorrectors         2;
    nNonOrthogonalCorrectors 0;
    
    residualControl
        {
                U
                {
                    relTol          0.0;
                    tolerance       1e-6;
                }
                p
                {
                    relTol          0.0;
                    tolerance       1e-5;
                }
        }

}

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