Skip to content
Snippets Groups Projects
Commit 991819bb authored by Henry's avatar Henry
Browse files

DPMFoam: Multiply the gravitational force by the gas phase fraction

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1563
parent ca53949d
Branches
Tags
No related merge requests found
......@@ -15,7 +15,7 @@ surfaceScalarField rAUcf("Dp", fvc::interpolate(rAUc));
surfaceScalarField phicForces
(
(fvc::interpolate(rAUc*cloudVolSUSu/rhoc) & mesh.Sf())
+ rAUcf*(g & mesh.Sf())
+ alphacf*rAUcf*(g & mesh.Sf())
);
if (pimple.momentumPredictor())
......
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