/*--------------------------------*- 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
    {
        solver          smoothSolver;
        smoother        GaussSeidel;
        relTol         0.1;
    
        tolerance          1e-08;
    }

   
}
SIMPLE
{
    nNonOrthogonalCorrectors 0;
    pRefCell  0;
    pRefValue 0;
    consistent  yes;

    residualControl
    {
       
        U               1e-8;
        p               1e-8;
        
    }
}
relaxationFactors
{
   
    equations
    {
        U               0.7;

    }
}

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

