/*--------------------------------*- 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
{
    p
    {
        solver          GAMG;
        tolerance       1e-08;
        relTol          0.01;
        smoother	DICGaussSeidel;
        //smoother        GaussSeidel;
    }

    "(U|k|epsilon)"
    {
        solver          smoothSolver;
        smoother        symGaussSeidel;
        tolerance       1e-08;
        relTol          0.01;

        //solver          PBiCG;
        //preconditioner  DILU;
        //tolerance       1e-08;
        //relTol          0.01;
    }

    age
    {
        solver          PBiCGStab;
        preconditioner  DILU;
        tolerance       1e-08;
        relTol          0.00;

        //$U;
        //relTol          0.00;
    }
}

SIMPLE
{
    consistent          yes;

    momentumPredictor 	yes;

    nOuterCorrectors 	1;
    nCorrectors     	2;
    nNonOrthogonalCorrectors 0;

    residualControl
    {
        p               1e-02;
        U               1e-04;
        "(k|epsilon)"   1e-04;
    }

    pRefPoint		(7.400 0.000 1.075);
    //pRefCell		0;
    pRefValue		101325;
    //pRefValue		0;
}

relaxationFactors
{
    fields
    {
        p               0.3;
    }

    equations
    {
        U               0.3;
        k               0.3;
        epsilon         0.2;

        age             0.5;
    }
}

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