/*--------------------------------*- 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
{
    alpha.air
    {
        max             0.99;
    }

    p
    {
        solver          smoothSolver;
        smoother        GaussSeidel;
        tolerance       5e-02;
        relTol          0.05;
    }

    pFinal
    {
        $p
        tolerance       1e-3;
        relTol          0;
    }

    "(U|k|epsilon|omega).*"
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-05;
        relTol          0.1;
    }

    "(U|k|epsilon|omega).*Final"
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-05;
        relTol          0;
    }
    /*valid symmeric matrix solvers: GAMG, PBiCGStab, PCG, smoothSolver*/

    cloud:alpha
    {
        solver          GAMG;
        smoother        GaussSeidel;
        tolerance       1e-06;
        relTol          0;
    }
}

PIMPLE
{
    nCorrectors     3;   //pressure correction loops
}

relaxationFactors
{
}

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