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

solvers
{

    p_rgh
    {
        solver           PBiCGStab;
        preconditioner   DIC;
        tolerance        1e-9;
        relTol           0.1;
    }

    p_rghFinal
    {
        $p_rgh;
        relTol          0;
    }


    "pcorr.*"
    {
        $p;
        tolerance       1e-2;
        relTol          0;
    }

    "(rho|h)"
    {
        solver           PBiCGStab;
        preconditioner   DILU;
        tolerance        1e-8;
        relTol           0.1;
    }

    "(rho|h)Final"
    {
        $rho;
        tolerance       1e-9;
        relTol          0.1;
    }

    "U"
    {
        solver           PBiCGStab;
        preconditioner   DILU;
        tolerance        1e-9;
        relTol           0.1;
    }
    
    "(U)Final"
    {
        $U;
        tolerance       1e-9;
        relTol          0.1;
    }
        


    "(k|epsilon|omega)"
    {
        solver          smoothSolver;
        smoother        symGaussSeidel;
        tolerance       1e-6;
        relTol          0.1;
    }
    

    "(k|epsilon|omega)Final"
    {
        $U;
        relTol          0;
    }

    cellMotionUy
    {
        solver          PCG;
        preconditioner  DIC;
        tolerance       1e-08;
        relTol          0;
    }

}

PIMPLE
{
    momentumPredictor   yes;
    correctPhi          false;
    transonic           no;
    nOuterCorrectors    2;
    nCorrectors         2;
    nNonOrthogonalCorrectors 0;
    pRefCell            0;
    pRefValue           1e5;
    ddtCorr             true;
}

relaxationFactors
{
}


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