mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Reacting parcels - updated mass transfer when mass falls below min threshold - mantis #960
This commit is contained in:
@ -347,7 +347,7 @@ void Foam::ReactingMultiphaseParcel<ParcelType>::calc
|
||||
|
||||
if (td.cloud().solution().coupled())
|
||||
{
|
||||
scalar dm = np0*mass1;
|
||||
scalar dm = np0*mass0;
|
||||
|
||||
// Absorb parcel into carrier phase
|
||||
forAll(YGas_, i)
|
||||
|
||||
@ -516,7 +516,7 @@ void Foam::ReactingParcel<ParcelType>::calc
|
||||
|
||||
if (td.cloud().solution().coupled())
|
||||
{
|
||||
scalar dm = np0*mass1;
|
||||
scalar dm = np0*mass0;
|
||||
|
||||
// Absorb parcel into carrier phase
|
||||
forAll(Y_, i)
|
||||
|
||||
Reference in New Issue
Block a user