mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Added missing canCombust initialisation in RM parcel copy constructor
This commit is contained in:
@ -648,7 +648,8 @@ Foam::ReactingMultiphaseParcel<ParcelType>::ReactingMultiphaseParcel
|
|||||||
ParcelType(p),
|
ParcelType(p),
|
||||||
YGas_(p.YGas_),
|
YGas_(p.YGas_),
|
||||||
YLiquid_(p.YLiquid_),
|
YLiquid_(p.YLiquid_),
|
||||||
YSolid_(p.YSolid_)
|
YSolid_(p.YSolid_),
|
||||||
|
canCombust_(p.canCombust_)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
@ -662,7 +663,8 @@ Foam::ReactingMultiphaseParcel<ParcelType>::ReactingMultiphaseParcel
|
|||||||
ParcelType(p, mesh),
|
ParcelType(p, mesh),
|
||||||
YGas_(p.YGas_),
|
YGas_(p.YGas_),
|
||||||
YLiquid_(p.YLiquid_),
|
YLiquid_(p.YLiquid_),
|
||||||
YSolid_(p.YSolid_)
|
YSolid_(p.YSolid_),
|
||||||
|
canCombust_(p.canCombust_)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user