/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.5                                   |
|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    T
    {
      solver                GAMG;
      smoother              GaussSeidel;
      nPreSweeps            0;
      nPostSweeps           2;
      cacheAgglomeration    true;
      nCellsInCoarsestLevel 2000;
      agglomerator          faceAreaPair;
      mergeLevels           1;
      
      tolerance             1e-10;
      maxIter               100000;
    };
}

SIMPLE
{
    nNonOrthogonalCorrectors 1;
}

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