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

solvers
{
    p
    {
     solver          GAMG;
     smoother        GaussSeidel;
     relTol          0.1; 
 
     tolerance      1e-08 ;
    }
   "(U|k|omega|epsilon)"
    {
        solver          smoothSolver;
        smoother        symGaussSeidel;
        tolerance       1e-8;
        relTol          0.1;
    }
}
SIMPLE
{
    nNonOrthogonalCorrectors 0;
    pRefCell  0;
    pRefValue 0;
    consistent  yes;

    residualControl
    {
       
        U               1e-8;
        p               1e-8;
        omega           1e-8;
        k               1e-8;
        epsilon         1e-8;
    }
}
relaxationFactors
{
   
    equations
    {
       "(U|k|omega|epsilon)"               0.7;
        

    }
}

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