Skip to content
Snippets Groups Projects
Commit 04fe8859 authored by Henry Weller's avatar Henry Weller
Browse files

BrownianMotionForce: Corrected expression for s0

Patch provided by Bruno Santos
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=2036
parent c1c48620
Branches
Tags
1 merge request!33Merge foundation
...@@ -187,9 +187,8 @@ Foam::forceSuSp Foam::BrownianMotionForce<CloudType>::calcCoupled ...@@ -187,9 +187,8 @@ Foam::forceSuSp Foam::BrownianMotionForce<CloudType>::calcCoupled
} }
else else
{ {
const scalar rhoRatio = p.rho()/p.rhoc();
const scalar s0 = const scalar s0 =
216*muc*sigma*Tc/(sqr(mathematical::pi)*pow5(dp)*(rhoRatio)*cc); 216*muc*sigma*Tc/(sqr(mathematical::pi)*pow5(dp)*sqr(p.rho())*cc);
f = eta*sqrt(mathematical::pi*s0/dt); f = eta*sqrt(mathematical::pi*s0/dt);
} }
......
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