Skip to content
Snippets Groups Projects
Commit cbcb4ada authored by sergio's avatar sergio
Browse files

Updating rho with thermo rho at the end of the pEq.H, independently of

simpleRho or limiting p.
parent 0a21e186
Branches
Tags
1 merge request!121Merge develop into master for v1706 release
......@@ -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);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment