added fwdOrder
This commit is contained in:
parent
d2a06b4b3e
commit
ae323fb7da
2 changed files with 5 additions and 1 deletions
|
|
@ -43,6 +43,7 @@ namespace ckr {
|
|||
if (this == &b) return *this;
|
||||
type = b.type;
|
||||
reactants = b.reactants;
|
||||
fwdOrder = b.fwdOrder;
|
||||
products = b.products;
|
||||
thirdBody = b.thirdBody;
|
||||
e3b = b.e3b;
|
||||
|
|
|
|||
|
|
@ -139,7 +139,8 @@ namespace ckr {
|
|||
thirdBody(r.thirdBody),
|
||||
number(r.number),
|
||||
reactants(r.reactants),
|
||||
products(r.products),
|
||||
fwdOrder(r.fwdOrder),
|
||||
products(r.products),
|
||||
e3b(r.e3b),
|
||||
kf(r.kf),
|
||||
kf_aux(r.kf_aux),
|
||||
|
|
@ -186,6 +187,8 @@ namespace ckr {
|
|||
*/
|
||||
vector<RxnSpecies> reactants;
|
||||
|
||||
mutable map<string, double> fwdOrder;
|
||||
|
||||
/**
|
||||
* list of species that participate as products,
|
||||
* and their stoichiometric coefficients
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue