/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "system"; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { "rho.*" { solver diagonal; } p { solver PCG; preconditioner DIC; tolerance 1e-6; relTol 0.1; } pFinal { $p; tolerance 1e-6; relTol 0.0; } "(U|h|k|epsilon)" { solver PBiCG; preconditioner DILU; tolerance 1e-6; relTol 0.1; } "(U|h|k|epsilon)Final" { $U; relTol 0; } Yi { solver smoothSolver; smoother DILU; tolerance 1e-6; relTol 0; // $hFinal; } ne { $Yi; tolerance 1e-9; nNeSubCycles 1000; } Phi { solver PCG; preconditioner DIC; tolerance 1e-08; relTol 0.2; } PhiFinal { $Phi; tolerance 1e-08; relTol 0.0; } } PIMPLE { momentumPredictor no; nOuterCorrectors 1; nCorrectors 2; nNonOrthogonalCorrectors 0; } // ************************************************************************* //