diff --git a/applications/solvers/compressible/rhoPimpleFoam/pEqn.H b/applications/solvers/compressible/rhoPimpleFoam/pEqn.H index ab89fcd81154cfca4f18b2087c8294936bbfbbfd..80d5d9b7946945d031643b515ed54a930a953430 100644 --- a/applications/solvers/compressible/rhoPimpleFoam/pEqn.H +++ b/applications/solvers/compressible/rhoPimpleFoam/pEqn.H @@ -98,19 +98,11 @@ K = 0.5*magSqr(U); if (pressureControl.limit(p)) { p.correctBoundaryConditions(); - thermo.correctRho(psi*p - psip0, rhoMin, rhoMax); - rho = thermo.rho(); -} -else if (pimple.SIMPLErho()) -{ - thermo.correctRho(psi*p - psip0, rhoMin, rhoMax); - rho = thermo.rho(); -} -else -{ - thermo.correctRho(psi*p - psip0, rhoMin, rhoMax) ; } +thermo.correctRho(psi*p - psip0, rhoMin, rhoMax) ; +rho = thermo.rho(); + if (thermo.dpdt()) { dpdt = fvc::ddt(p);