Skip to content
Snippets Groups Projects
Commit 1d64955b authored by Henry's avatar Henry
Browse files

rhoReactingFoam: Correct handling of the density correction term for the transonic case

parent 3f09e6e3
Branches
No related merge requests found
......@@ -27,7 +27,7 @@
fvScalarMatrix pDDtEqn
(
fvc::ddt(rho) + fvc::div(phiHbyA)
+ correction(fvm::ddt(psi, p) + fvm::div(phid, p))
+ correction(psi*fvm::ddt(p) + fvm::div(phid, p))
);
while (pimple.correctNonOrthogonal())
......
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