/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "system"; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { "rho.*" { solver GAMG; preconditioner GaussSeidel; tolerance 1e-7; relTol 0.01;//1e-5;//0.01; nVcycles 2; smoother GaussSeidel; nPreSweeps 0; nPostSweeps 2; nFinestSweeps 2; cacheAgglomeration false; nCellsInCoarsestLevel 100; agglomerator faceAreaPair; mergeLevels 1; } p_rgh { solver GAMG; preconditioner GaussSeidel; tolerance 1e-7; relTol 0.01;//1e-5;//0.01; nVcycles 2; smoother GaussSeidel; nPreSweeps 0; nPostSweeps 2; nFinestSweeps 2; cacheAgglomeration false; nCellsInCoarsestLevel 100; agglomerator faceAreaPair; mergeLevels 1; } p_rghFinal { $p_rgh; relTol 0; } "(U|h|e|k|epsilon|R|omega)" { solver PBiCG; preconditioner DILU; tolerance 1e-8; relTol 0.1; } "(U|h|e|k|epsilon|R|omega)Final" { $U; relTol 0; } } PIMPLE { momentumPredictor yes; nOuterCorrectors 1; nCorrectors 2; nNonOrthogonalCorrectors 0; } relaxationFactors { fields { } equations { "U.*" 0.3; "k.*" 0.3; "epsilon.*" 0.3; "omega.*" 0.3; "p.*" 0.15; } } // ************************************************************************* //