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

solvers
{
    p
    {
        solver              GAMG;
        smoother            DIC;

        tolerance           1e-5;
        relTol              0.01;
    }

    "(U|k|epsilon|R)"
    {
        solver          PBiCGStab;
        preconditioner  DILU;

        tolerance       1e-5;
        relTol          0.1;
    }
}

SIMPLE
{
    nNonOrthogonalCorrectors 0;
    consistent yes;

    pRefCell 0;
    pRefValue 0;

    residualControl
    {
        p       1e-4;
        U       1e-4;
        epsilon 1e-4;
        R       1e-4;
    }
}

relaxationFactors
{
    equations
    {
        U       0.9;
        k       0.9;
        R       0.9;
        epsilon 0.9;
    }
}


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