dragModels::segregated: Corrected the muAlphaI expression
Corrected according to the original reference:
Marschall, H. (2011).
Towards the numerical simulation of multi-scale two-phase flows.
PhD Thesis, TU München.
This commit is contained in:
@ -126,7 +126,7 @@ Foam::tmp<Foam::volScalarField> Foam::dragModels::segregated::K() const
|
||||
const volScalarField::Internal muAlphaI
|
||||
(
|
||||
limitedAlpha1*rho1*nu1*limitedAlpha2*rho2*nu2
|
||||
/(limitedAlpha1*rho1*nu1 + limitedAlpha2*rho2*nu2)
|
||||
/(limitedAlpha2*rho1*nu1 + limitedAlpha1*rho2*nu2)
|
||||
);
|
||||
|
||||
const volScalarField::Internal ReI
|
||||
|
||||
Reference in New Issue
Block a user