/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
|  \\    /   O peration     | Version:  1.6-ext                               |
|   \\  /    A nd           | Web:      www.extend-project.de                 |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    p
    {
        solver          PCG;
        preconditioner  DIC;
	tolerance       1e-06;
        relTol          0;
        minIter         1;

    }
    pFinal
    {
        solver          PCG;
        preconditioner  DIC;
	tolerance       1e-06;
        relTol          0;
        minIter         1;

    }
    rho
    {
	solver	diagonal;
    }
    rhoFinal
    {
	solver	diagonal;
    }
    "(U|Yi|h|k|epsilon|mf|mfVar|Fk)"
    {
        solver          PBiCG;
        preconditioner  DILU;
        tolerance       1e-06;
        relTol          0;
	minIter         1;
    }
    
    "(U|Yi|h|k|epsilon|mf|mfVar|Fk)Final"
    {
        solver          PBiCG;
        preconditioner  DILU;
        tolerance       1e-06;
        relTol          0;
	minIter         1;
    }


}
PIMPLE
{
    transonic       no;
    nCorrectors     2;
    nNonOrthogonalCorrectors 0;
    momentumPredictor yes;
}

PISO
{
    transonic       no;
    nCorrectors     1;
    nNonOrthogonalCorrectors 0;

}


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