Skip to content
  • Henry Weller's avatar
    rhoPimpleFoam: Added "consistent" option to replace rhoPimplecFoam · ea454a2f
    Henry Weller authored
    e.g. in tutorials/compressible/rhoPimpleFoam/ras/angledDuctLTS
    
    PIMPLE
    {
        momentumPredictor   yes;
        transonic           no;
        nOuterCorrectors    50;
        nCorrectors         1;
        nNonOrthogonalCorrectors 0;
        consistent          yes;
    
        rhoMin          0.5;
        rhoMax          2.0;
    
        residualControl
        {
            "(U|k|epsilon)"
            {
                relTol          0;
                tolerance       0.0001;
            }
        }
    
        turbOnFinalIterOnly off;
    }
    
    relaxationFactors
    {
        fields
        {
            "p.*"           0.9;
            "rho.*"         1;
        }
        equations
        {
            "U.*"           0.9;
            "h.*"           0.7;
            "(k|epsilon|omega).*" 0.8;
        }
    }
    ea454a2f