/*--------------------------------*- 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
{
    S
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-08;
        relTol          0.00;

        //solver          smoothSolver;
        //smoother        symGaussSeidel;
        //tolerance       1e-08;
        //relTol          0.00;
    }
}

SIMPLE
{
    consistent          yes;

    nOuterCorrectors 	1;
    nCorrectors     	2;
    nNonOrthogonalCorrectors 0;

    residualControl
    {
        S               1e-06;
    }
}

relaxationFactors
{
    fields
    {
    }

    equations
    {
	S		0.5;
    }
}

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