mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: corrected devolatilised mass assignment
This commit is contained in:
@ -124,7 +124,7 @@ void Foam::ConstantRateDevolatilisation<CloudType>::calculate
|
|||||||
const scalar A0 = volatileData_[i].second();
|
const scalar A0 = volatileData_[i].second();
|
||||||
|
|
||||||
// Mass transferred from particle to carrier gas phase
|
// Mass transferred from particle to carrier gas phase
|
||||||
dMassDV = min(dt*A0*massVolatile0, massVolatile);
|
dMassDV[id] = min(dt*A0*massVolatile0, massVolatile);
|
||||||
}
|
}
|
||||||
|
|
||||||
canCombust = done;
|
canCombust = done;
|
||||||
|
|||||||
Reference in New Issue
Block a user