Skip to content
Snippets Groups Projects
Commit 1589e8d4 authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: buoyantPimpleFoam - div term should be present for both compressible and incompressible

parent 6ffdce83
Branches
Tags
No related merge requests found
......@@ -41,7 +41,6 @@
p_rghDDtEqn =
(
fvc::ddt(rho) + psi*correction(fvm::ddt(p_rgh))
+ fvc::div(phiHbyA)
==
fvOptions(psi, p_rgh, rho.name())
);
......@@ -52,6 +51,7 @@
fvScalarMatrix p_rghEqn
(
p_rghDDtEqn()
+ fvc::div(phiHbyA)
- fvm::laplacian(rhorAUf, p_rgh)
);
......
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