/*--------------------------------*- 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; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { "alpha.water.*" { nAlphaCorr 2; nAlphaSubCycles 1; MULESCorr yes; nLimiterIter 5; solver smoothSolver; smoother symGaussSeidel; tolerance 1e-8; relTol 0; maxIter 10; minIter 1; }; p_rgh { solver GAMG; smoother DICGaussSeidel; tolerance 1e-9; relTol 0.01; cacheAgglomeration no; maxIter 50; } p_rghFinal { $p_rgh; relTol 0; } "pcorr.*" { $p_rgh; tolerance 1e-2; relTol 0; } MeshPhi { solver smoothSolver; smoother symGaussSeidel; tolerance 1e-2; relTol 0; } "(U|k|epsilon)" { solver smoothSolver; smoother symGaussSeidel; tolerance 1e-6; relTol 0.1; minIter 1; } "(U|k|epsilon)Final" { $U; relTol 0; } } PIMPLE { correctPhi yes; correctMeshPhi yes; nOuterCorrectors 3; nCorrectors 1; nNonOrthogonalCorrectors 0; } relaxationFactors { "(U|k|epsilon).*" 1; } cache { grad(U); } // ************************************************************************* //