Skip to content

Commit

Permalink
twoPhaseEulerFoam: Correction to GidaspowErgunWenYu drag model
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry authored and Henry committed May 26, 2011
1 parent 9b4c5b5 commit 40e7c06
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ Foam::tmp<Foam::volScalarField> Foam::GidaspowErgunWenYu::K
// Wen and Yu (1966)
return
pos(beta - 0.8)
*(0.75*alpha_*beta*Cds*phaseb_.rho()*Ur*bp/phasea_.d())
*(0.75*Cds*phaseb_.rho()*Ur*bp/phasea_.d())
+ neg(beta - 0.8)
*(
150.0*sqr(alpha_)*phaseb_.nu()*phaseb_.rho()/(beta*sqr(phasea_.d()))
+ 1.75*alpha_*phaseb_.rho()*Ur/phasea_.d()
150.0*alpha_*phaseb_.nu()*phaseb_.rho()/(sqr(beta*phasea_.d()))
+ 1.75*phaseb_.rho()*Ur/(beta*phasea_.d())
);
}

Expand Down

0 comments on commit 40e7c06

Please sign in to comment.