Skip to content
Snippets Groups Projects
Commit 2af4492a authored by Andrew Heather's avatar Andrew Heather
Browse files

BUG: corrected devolatilised mass assignment

parent 228456ca
Branches
Tags
No related merge requests found
......@@ -124,7 +124,7 @@ void Foam::ConstantRateDevolatilisation<CloudType>::calculate
const scalar A0 = volatileData_[i].second();
// Mass transferred from particle to carrier gas phase
dMassDV = min(dt*A0*massVolatile0, massVolatile);
dMassDV[id] = min(dt*A0*massVolatile0, massVolatile);
}
canCombust = done;
......
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