/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2506 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object fvSolution; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // solvers { ".*(rho|rhoFinal)" { solver diagonal; } "alpha.*" { solver PBiCG; preconditioner DILU; tolerance 1e-08; relTol 0.0; cAlphas ((liquid and gas) 1); nAlphaCorr 2; nAlphaSubCycles 2; // Compressiion factor for species in each alpha phase // NOTE: It should be similar to cAlpha cYi 1; } "pcorr.*" { solver PCG; preconditioner DIC; tolerance 1e-5; relTol 0; } "(U.*|epsilon.*|k.*)" { solver smoothSolver; smoother symGaussSeidel; tolerance 1e-8; relTol 0; }; "T.*" { solver PBiCGStab; preconditioner DILU; tolerance 1e-08; relTol 0.01; } p_rgh { solver PCG; preconditioner DIC; tolerance 1e-8; relTol 0.01; nPreSweeps 0; nPostSweeps 2; cacheAgglomeration true; nCellsInCoarsestLevel 10; agglomerator faceAreaPair; mergeLevels 1; }; p_rghFinal { $p_rgh; relTol 0; }; "Xvapour.gas.*" { solver PBiCGStab; preconditioner DILU; tolerance 1e-08; relTol 0.0; } "diffusionXvapour.gas.*" { solver PBiCGStab; preconditioner DIC; tolerance 1e-08; relTol 0.01; } } PIMPLE { momentumPredictor false; nOuterCorrectors 1; nCorrectors 3; nNonOrthogonalCorrectors 0; } relaxationFactors { fields { } equations { ".*" 1; } } // ************************************************************************* //