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

solvers
{
    p
    {
        solver          GAMG;
        smoother        GaussSeidel;
        tolerance       1e-05;
        relTol          0.01;
    }

    pFinal
    {
        $p;
        relTol          0.1;
    }

    "(rho|U|e|k|epsilon|omega)"
    {
        solver          smoothSolver;
        smoother        symGaussSeidel;
        tolerance       1e-05;
        relTol          0;
    }

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

PIMPLE
{
    momentumPredictor   yes;
    transonic           yes;
    nOuterCorrectors    5;
    nCorrectors         5;
    nNonOrthogonalCorrectors 2;
    consistent          yes;
    simpleRho           yes;

    outerCorrectorResidualControl
    {
        "(U|k|epsilon)"
        {
            relTol          0;
            tolerance       0.1;
        }
    }

    turbOnFinalIterOnly no;
}

relaxationFactors
{
    fields
    {
        p               0.6;
        rho             0.6;
    }
    equations
    {
        U               0.9;
        e               0.7;
        "(k|epsilon|omega)" 0.8;
    }
}


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