/*--------------------------------*- 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 { "alpha.oil.*" { nAlphaCorr 1; nAlphaSubCycles 2; } ".*(rho|rhoFinal)" { solver diagonal; } p_rgh { solver GAMG; smoother GaussSeidel; tolerance 1e-6; relTol 0.02; } p_rghFinal { $p_rgh; relTol 0; } "pcorr.*" { $p_rgh; tolerance 0.1; relTol 0; } MeshPhi { solver smoothSolver; smoother symGaussSeidel; tolerance 1e-2; relTol 0; } "(U|T|k|epsilon).*" { solver smoothSolver; smoother symGaussSeidel; tolerance 1e-6; relTol 0; nSweeps 1; } } PIMPLE { momentumPredictor yes; correctPhi yes; correctMeshPhi yes; nOuterCorrectors 2; nCorrectors 1; nNonOrthogonalCorrectors 0; } relaxationFactors { equations { ".*" 1; } } // ************************************************************************* //