/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: dev | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; location "system/fluid"; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { rho { solver diagonal; } rhoFinal { $rho; } p_rgh { solver GAMG; smoother symGaussSeidel; tolerance 1e-7; relTol 0.01; } p_rghFinal { $p_rgh; relTol 0; } "(U|h)" { solver PBiCGStab; preconditioner DILU; tolerance 1e-7; relTol 0.1; } "(U|h)Final" { $U; relTol 0; } } PIMPLE { momentumPredictor yes; } relaxationFactors { equations { "h.*" 1; "U.*" 1; } } // ************************************************************************* //