/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: dev \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { format ascii; class dictionary; location "system"; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { "pcorr.*" { solver GAMG; smoother DICGaussSeidel; tolerance 0.1; relTol 0; } p { $pcorr; tolerance 1e-06; relTol 0.01; } pFinal { $p; relTol 0; } "(U|k|epsilon)" { solver PBiCGStab; preconditioner DILU; tolerance 1e-06; relTol 0.01; } "(U|k|epsilon)Final" { $U; relTol 0; } } PIMPLE { correctPhi no; correctMeshPhi no; nOuterCorrectors 2; nCorrectors 1; nNonOrthogonalCorrectors 0; } relaxationFactors { equations { ".*" 1; } } // ************************************************************************* //