17#include <boost/algorithm/string/predicate.hpp>
20#include <boost/algorithm/string.hpp>
22namespace ba = boost::algorithm;
29 shared_ptr<ReactionRate> rate_,
30 shared_ptr<ThirdBody> tbody_)
31 : reactants(reactants_)
33 , m_from_composition(true)
34 , m_third_body(tbody_)
36 if (reactants.count(
"M") || products.count(
"M")) {
37 throw CanteraError(
"Reaction::Reaction",
38 "Third body 'M' must not be included in either reactant or product maps.");
44 for (
const auto& [name, stoich] : reactants) {
45 if (products.count(name)) {
46 third[name] = products.at(name) - stoich;
50 string name = tbody_->name();
51 if (reactants.count(name) && products.count(name)) {
52 throw CanteraError(
"Reaction::Reaction",
53 "'{}' not acting as third body collider must not be included in both "
54 "reactant and product maps.", name);
57 m_third_body->explicit_3rd =
true;
59 }
else if (!tbody_ && third.size() == 1) {
61 string name = third.begin()->first;
62 m_third_body = make_shared<ThirdBody>(name);
64 m_third_body->explicit_3rd =
true;
70Reaction::Reaction(
const string& equation,
71 shared_ptr<ReactionRate> rate_,
72 shared_ptr<ThirdBody> tbody_)
73 : m_third_body(tbody_)
76 setEquation(equation);
77 if (m_third_body && m_third_body->name() !=
"M") {
78 m_third_body->explicit_3rd =
true;
85 string rate_type = node.
getString(
"type",
"Arrhenius");
88 "Cannot instantiate Reaction with empty Kinetics object.");
91 setParameters(node, kin);
99 if (ba::starts_with(rate_type,
"three-body-")) {
101 rateNode[
"type"] = rate_type.substr(11, rate_type.size() - 11);
108 if (rateNode.
hasKey(
"rate-constant")) {
109 if (!ba::starts_with(rate_type,
"interface-")) {
110 rateNode[
"type"] =
"interface-" + rate_type;
112 }
else if (node.
hasKey(
"sticking-coefficient")) {
113 if (!ba::starts_with(rate_type,
"sticking-")) {
114 rateNode[
"type"] =
"sticking-" + rate_type;
116 }
else if (rate_type ==
"Arrhenius") {
118 "Unable to infer interface reaction type.");
125void Reaction::check()
127 if (!allow_nonreactant_orders) {
128 for (
const auto& [name, order] : orders) {
129 if (reactants.find(name) == reactants.end()) {
131 "Reaction order specified for non-reactant species '{}'", name);
136 if (!allow_negative_orders) {
137 for (
const auto& [name, order] : orders) {
140 "Negative reaction order specified for species '{}'", name);
149 if (reversible && !orders.empty()) {
151 "Reaction orders may only be given for irreversible reactions");
160 m_rate->check(equation());
162 string rate_type = m_rate->type();
164 if (rate_type ==
"falloff" || rate_type ==
"chemically-activated") {
165 if (m_third_body->mass_action && !m_from_composition) {
167 "Third-body collider does not use '(+{})' notation.",
168 m_third_body->name());
170 m_third_body->mass_action =
false;
171 }
else if (rate_type ==
"Chebyshev") {
172 if (m_third_body->name() ==
"M") {
173 warn_deprecated(
"Chebyshev reaction equation", input,
"Specifying 'M' "
174 "in the reaction equation for Chebyshev reactions is deprecated.");
175 m_third_body.reset();
177 }
else if (rate_type ==
"pressure-dependent-Arrhenius") {
178 if (m_third_body->name() ==
"M") {
180 "Found superfluous '{}' in pressure-dependent-Arrhenius reaction.",
181 m_third_body->name());
185 if (rate_type ==
"falloff" || rate_type ==
"chemically-activated") {
186 if (!m_from_composition) {
188 "Reaction equation for falloff reaction '{}'\n does not "
189 "contain valid pressure-dependent third body", equation());
191 m_third_body = make_shared<ThirdBody>(
"(+M)");
196AnyMap Reaction::parameters(
bool withInput)
const
204 static bool reg = AnyMap::addOrderingRules(
"Reaction",
205 {{
"head",
"equation"},
207 {
"tail",
"duplicate"},
209 {
"tail",
"negative-orders"},
210 {
"tail",
"nonreactant-orders"}
213 out[
"__type__"] =
"Reaction";
218void Reaction::getParameters(
AnyMap& reactionNode)
const
222 "Serialization of empty Reaction object is not supported.");
225 reactionNode[
"equation"] = equation();
228 reactionNode[
"duplicate"] =
true;
230 reactionNode.
exclude(
"duplicate");
233 reactionNode[
"orders"] = orders;
235 reactionNode.
exclude(
"orders");
237 if (allow_negative_orders) {
238 reactionNode[
"negative-orders"] =
true;
240 reactionNode.
exclude(
"negative-orders");
242 if (allow_nonreactant_orders) {
243 reactionNode[
"nonreactant-orders"] =
true;
245 reactionNode.
exclude(
"nonreactant-orders");
248 reactionNode.
update(m_rate->parameters());
251 string rtype = reactionNode[
"type"].asString();
252 if (rtype ==
"pressure-dependent-Arrhenius") {
254 }
else if (m_explicit_type && ba::ends_with(rtype,
"Arrhenius")) {
257 reactionNode[
"type"] =
"three-body";
259 reactionNode[
"type"] =
"elementary";
261 }
else if (ba::ends_with(rtype,
"Arrhenius")) {
263 }
else if (m_explicit_type) {
264 reactionNode[
"type"] = type();
265 }
else if (ba::ends_with(rtype,
"Blowers-Masel")) {
266 reactionNode[
"type"] =
"Blowers-Masel";
270 m_third_body->getParameters(reactionNode);
278 "Cannot set reaction parameters from empty node.");
283 setEquation(node[
"equation"].asString(), &kin);
285 if (node.
hasKey(
"orders")) {
286 for (
const auto& [name, order] : node[
"orders"].asMap<
double>()) {
287 orders[name] = order;
296 duplicate = node.
getBool(
"duplicate",
false);
297 allow_negative_orders = node.
getBool(
"negative-orders",
false);
298 allow_nonreactant_orders = node.
getBool(
"nonreactant-orders",
false);
301 m_third_body->setParameters(node);
302 if (m_third_body->name() ==
"M" && m_third_body->efficiencies.size() == 1) {
303 m_third_body->explicit_3rd =
true;
305 }
else if (node.
hasKey(
"default-efficiency") || node.
hasKey(
"efficiencies")) {
307 "Reaction '{}' specifies efficiency parameters\n"
308 "but does not involve third body colliders.", equation());
312void Reaction::setRate(shared_ptr<ReactionRate> rate)
316 "Reaction rate for reaction '{}' must not be empty.", equation());
321string Reaction::reactantString()
const
323 std::ostringstream result;
324 for (
auto iter = reactants.begin(); iter != reactants.end(); ++iter) {
325 if (iter != reactants.begin()) {
328 if (iter->second != 1.0) {
329 result << iter->second <<
" ";
331 result << iter->first;
334 result << m_third_body->collider();
339string Reaction::productString()
const
341 std::ostringstream result;
342 for (
auto iter = products.begin(); iter != products.end(); ++iter) {
343 if (iter != products.begin()) {
346 if (iter->second != 1.0) {
347 result << iter->second <<
" ";
349 result << iter->first;
352 result << m_third_body->collider();
357string Reaction::equation()
const
360 return reactantString() +
" <=> " + productString();
362 return reactantString() +
" => " + productString();
366void Reaction::setEquation(
const string& equation,
const Kinetics* kin)
369 string rate_type = (m_rate) ? m_rate->type() : input.getString(
"type",
"");
370 if (ba::starts_with(rate_type,
"three-body")) {
372 m_explicit_type =
true;
373 }
else if (rate_type ==
"elementary") {
375 m_explicit_type =
true;
377 }
else if (kin && kin->
thermo(0).
nDim() != 3) {
380 }
else if (rate_type ==
"electron-collision-plasma") {
388 for (
const auto& [name, stoich] : reactants) {
390 if (products.count(name)) {
392 size_t generic = third_body ==
"M"
393 || third_body ==
"(+M)" || third_body ==
"(+ M)";
396 if (stoich > 1 && products[third_body] > 1) {
404 if (ba::starts_with(rate_type,
"three-body")) {
406 "Reactants for reaction '{}'\n"
407 "do not contain a valid third body collider", equation);
411 }
else if (countM > 1) {
413 "Multiple generic third body colliders 'M' are not supported", equation);
415 }
else if (count > 1) {
421 }
else if (m_third_body) {
423 auto& effs = m_third_body->efficiencies;
424 if (effs.size() != 1 || !reactants.count(effs.begin()->first)) {
426 "Detected ambiguous third body colliders in reaction '{}'\n"
427 "ThirdBody object needs to specify a single species", equation);
429 third_body = effs.begin()->first;
430 m_third_body->explicit_3rd =
true;
431 }
else if (input.hasKey(
"efficiencies")) {
433 auto effs = input[
"efficiencies"].asMap<
double>();
434 if (effs.size() != 1 || !reactants.count(effs.begin()->first)) {
436 "Detected ambiguous third body colliders in reaction '{}'\n"
437 "Collision efficiencies need to specify single species", equation);
439 third_body = effs.begin()->first;
440 m_third_body = make_shared<ThirdBody>(third_body);
441 m_third_body->explicit_3rd =
true;
442 }
else if (input.hasKey(
"default-efficiency")) {
445 "Detected ambiguous third body colliders in reaction '{}'\n"
446 "Third-body definition requires specification of efficiencies",
448 }
else if (ba::starts_with(rate_type,
"three-body")) {
451 "Detected ambiguous third body colliders in reaction '{}'\n"
452 "A valid ThirdBody or collision efficiency definition is required",
458 }
else if (third_body !=
"M" && !ba::starts_with(rate_type,
"three-body")
459 && !ba::starts_with(third_body,
"(+"))
468 for (
const auto& [name, stoich] : reactants) {
469 if (trunc(stoich) != stoich) {
472 nreac +=
static_cast<size_t>(stoich);
476 for (
const auto& [name, stoich] : products) {
477 if (trunc(stoich) != stoich) {
480 nprod +=
static_cast<size_t>(stoich);
484 if (nreac != 3 && nprod != 3) {
490 string tName = m_third_body->name();
491 if (tName != third_body && third_body !=
"M" && tName !=
"M") {
493 "Detected incompatible third body colliders in reaction '{}'\n"
494 "ThirdBody definition does not match equation", equation);
496 m_third_body->setName(third_body);
498 m_third_body = make_shared<ThirdBody>(third_body);
502 auto reac = reactants.find(third_body);
503 if (trunc(reac->second) != 1) {
506 reactants.erase(reac);
510 auto prod = products.find(third_body);
511 if (trunc(prod->second) != 1) {
514 products.erase(prod);
518string Reaction::type()
const
521 throw CanteraError(
"Reaction::type",
"Empty Reaction does not have a type");
524 string rate_type = m_rate->type();
525 string sub_type = m_rate->subType();
526 if (sub_type !=
"") {
527 return rate_type +
"-" + sub_type;
531 return "three-body-" + rate_type;
552 for (
const auto& [name, order] : orders) {
555 rate_units.
update(phase.standardConcentrationUnits(), -order);
557 for (
const auto& [name, stoich] : reactants) {
560 if (name ==
"M" || ba::starts_with(name,
"(+")) {
564 }
else if (orders.find(name) == orders.end()) {
567 rate_units.
update(phase.standardConcentrationUnits(), -stoich);
571 if (m_third_body && m_third_body->mass_action) {
576 Reaction::rate_units = rate_units.
product();
580void updateUndeclared(vector<string>& undeclared,
583 for (
const auto& [name, stoich]: comp) {
585 undeclared.emplace_back(name);
590void Reaction::checkBalance(
const Kinetics& kin)
const
595 for (
const auto& [name, stoich] : products) {
598 for (
size_t m = 0; m < ph.
nElements(); m++) {
603 for (
const auto& [name, stoich] : reactants) {
606 for (
size_t m = 0; m < ph.
nElements(); m++) {
613 for (
const auto& [elem, balance] : balr) {
614 double elemsum = balr[elem] + balp[elem];
615 double elemdiff = fabs(balp[elem] - balr[elem]);
616 if (elemsum > 0.0 && elemdiff / elemsum > 1e-4) {
618 msg += fmt::format(
" {} {} {}\n",
619 elem, balr[elem], balp[elem]);
624 "The following reaction is unbalanced: {}\n"
625 " Element Reactants Products\n{}",
634 double reac_sites = 0.0;
635 double prod_sites = 0.0;
637 for (
const auto& [name, stoich] : reactants) {
640 reac_sites += stoich * surf.size(k);
643 for (
const auto& [name, stoich] : products) {
644 size_t k = surf.speciesIndex(name);
646 prod_sites += stoich * surf.size(k);
649 if (fabs(reac_sites - prod_sites) > 1e-5 * (reac_sites + prod_sites)) {
651 "Number of surface sites not balanced in reaction {}.\n"
652 "Reactant sites: {}\nProduct sites: {}",
653 equation(), reac_sites, prod_sites);
657bool Reaction::checkSpecies(
const Kinetics& kin)
const
660 vector<string> undeclared;
661 updateUndeclared(undeclared, reactants, kin);
662 updateUndeclared(undeclared, products, kin);
663 if (!undeclared.empty()) {
667 throw InputFileError(
"Reaction::checkSpecies", input,
"Reaction '{}'\n"
668 "contains undeclared species: '{}'",
669 equation(), ba::join(undeclared,
"', '"));
674 updateUndeclared(undeclared, orders, kin);
675 if (!undeclared.empty()) {
679 if (input.hasKey(
"orders")) {
682 "defines reaction orders for undeclared species: '{}'",
683 equation(), ba::join(undeclared,
"', '"));
686 throw InputFileError(
"Reaction::checkSpecies", input,
"Reaction '{}'\n"
687 "defines reaction orders for undeclared species: '{}'",
688 equation(), ba::join(undeclared,
"', '"));
693 return m_third_body->checkSpecies(*
this, kin);
701bool Reaction::usesElectrochemistry(
const Kinetics& kin)
const
704 vector<double> e_counter(kin.
nPhases(), 0.0);
707 for (
const auto& [name, stoich] : products) {
715 for (
const auto& [name, stoich] : reactants) {
723 for (
double delta_e : e_counter) {
724 if (std::abs(delta_e) > 1e-4) {
733ThirdBody::ThirdBody(
const string& third_body)
738void ThirdBody::setName(
const string& third_body)
740 string name = third_body;
741 if (ba::starts_with(third_body,
"(+ ")) {
743 name = third_body.substr(3, third_body.size() - 4);
744 }
else if (ba::starts_with(third_body,
"(+")) {
746 name = third_body.substr(2, third_body.size() - 3);
749 if (name == m_name) {
752 if (name ==
"M" && efficiencies.size() == 1) {
757 if (efficiencies.size()) {
759 "Conflicting efficiency definition for explicit third body '{}'", name);
762 default_efficiency = 0.;
763 efficiencies[m_name] = 1.;
766ThirdBody::ThirdBody(
const AnyMap& node)
771void ThirdBody::setParameters(
const AnyMap& node)
773 if (node.
hasKey(
"default-efficiency")) {
774 double value = node[
"default-efficiency"].asDouble();
775 if (m_name !=
"M" && value != 0.) {
776 throw InputFileError(
"ThirdBody::setParameters", node[
"default-efficiency"],
777 "Invalid default efficiency for explicit collider {};\n"
778 "value is optional and/or needs to be zero", m_name);
780 default_efficiency = value;
782 if (node.
hasKey(
"efficiencies")) {
783 efficiencies = node[
"efficiencies"].asMap<
double>();
786 && (efficiencies.size() != 1 || efficiencies.begin()->first != m_name))
789 "Detected incompatible third body colliders definitions");
793void ThirdBody::getParameters(
AnyMap& node)
const
795 if (m_name ==
"M" || explicit_3rd) {
796 if (efficiencies.size()) {
797 node[
"efficiencies"] = efficiencies;
800 if (default_efficiency != 1.0 && !explicit_3rd) {
801 node[
"default-efficiency"] = default_efficiency;
806double ThirdBody::efficiency(
const string& k)
const
808 return getValue(efficiencies, k, default_efficiency);
811string ThirdBody::collider()
const
814 return " + " + m_name;
816 return " (+" + m_name +
")";
821 vector<string> undeclared;
822 updateUndeclared(undeclared, efficiencies, kin);
824 if (!undeclared.empty()) {
828 rxn.
input[
"efficiencies"],
"Reaction '{}'\n"
829 "defines third-body efficiencies for undeclared species: '{}'",
830 rxn.
equation(), ba::join(undeclared,
"', '"));
834 "is a three-body reaction with undeclared species: '{}'",
835 rxn.
equation(), ba::join(undeclared,
"', '"));
848 return make_unique<Reaction>();
853 return make_unique<Reaction>(rxn_node, kin);
861 vector<string> tokens;
863 tokens.push_back(
"+");
865 size_t last_used =
npos;
866 bool reactants =
true;
867 for (
size_t i = 1; i < tokens.size(); i++) {
868 if (tokens[i] ==
"+" || ba::starts_with(tokens[i],
"(+") ||
869 tokens[i] ==
"<=>" || tokens[i] ==
"=" || tokens[i] ==
"=>") {
870 string species = tokens[i-1];
873 bool mass_action =
true;
874 if (last_used !=
npos && tokens[last_used] ==
"(+"
875 && ba::ends_with(species,
")")) {
878 species =
"(+" + species;
879 }
else if (last_used == i - 1 && ba::starts_with(species,
"(+")
880 && ba::ends_with(species,
")")) {
883 }
else if (last_used == i - 2) {
885 }
else if (last_used == i - 3) {
895 "Error parsing reaction string '{}'.\n"
896 "Current token: '{}'\nlast_used: '{}'",
898 (last_used ==
npos) ?
"n/a" : tokens[last_used]);
901 && mass_action && species !=
"M"))
916 if (tokens[i] ==
"<=>" || tokens[i] ==
"=") {
919 }
else if (tokens[i] ==
"=>") {
928 vector<shared_ptr<Reaction>> all_reactions;
930 auto R = make_shared<Reaction>(node, kinetics);
931 R->validate(kinetics);
932 if (R->valid() && R->checkSpecies(kinetics)) {
933 all_reactions.emplace_back(R);
936 return all_reactions;
Header file for class Cantera::Array2D.
Base class for kinetics managers and also contains the kineticsmgr module documentation (see Kinetics...
Factory class for reaction rate objects.
Header for a simple thermodynamics model of a surface phase derived from ThermoPhase,...
Header file for class ThermoPhase, the base class for phases with thermodynamic properties,...
Base class defining common data possessed by both AnyMap and AnyValue objects.
A map of string keys to values whose type can vary at runtime.
void exclude(const string &key)
Mark key as excluded from this map.
void copyMetadata(const AnyMap &other)
Copy metadata including input line/column from an existing AnyMap.
bool hasKey(const string &key) const
Returns true if the map contains an item named key.
bool empty() const
Return boolean indicating whether AnyMap is empty.
void setFlowStyle(bool flow=true)
Use "flow" style when outputting this AnyMap to YAML.
bool getBool(const string &key, bool default_) const
If key exists, return it as a bool, otherwise return default_.
const string & getString(const string &key, const string &default_) const
If key exists, return it as a string, otherwise return default_.
void update(const AnyMap &other, bool keepExisting=true)
Add items from other to this AnyMap.
A wrapper for a variable whose type is determined at runtime.
const vector< T > & asVector(size_t nMin=npos, size_t nMax=npos) const
Return the held value, if it is a vector of type T.
Base class for exceptions thrown by Cantera classes.
virtual string getMessage() const
Method overridden by derived classes to format the error message.
Public interface for kinetics managers.
ThermoPhase & thermo(size_t n=0)
This method returns a reference to the nth ThermoPhase object defined in this kinetics mechanism.
size_t nPhases() const
The number of phases participating in the reaction mechanism.
void skipUndeclaredSpecies(bool skip)
Determine behavior when adding a new reaction that contains species not defined in any of the phases ...
void skipUndeclaredThirdBodies(bool skip)
Determine behavior when adding a new reaction that contains third-body efficiencies for species not d...
size_t kineticsSpeciesIndex(size_t k, size_t n) const
The location of species k of phase n in species arrays.
ThermoPhase & speciesPhase(const string &nm)
This function looks up the name of a species and returns a reference to the ThermoPhase object of the...
size_t speciesPhaseIndex(size_t k) const
This function takes as an argument the kineticsSpecies index (that is, the list index in the list of ...
size_t nDim() const
Returns the number of spatial dimensions (1, 2, or 3)
size_t speciesIndex(const string &name) const
Returns the index of a species named 'name' within the Phase object.
double nAtoms(size_t k, size_t m) const
Number of atoms of element m in species k.
size_t nElements() const
Number of elements.
string elementName(size_t m) const
Name of the element with index m.
double charge(size_t k) const
Dimensionless electrical charge of a single molecule of species k The charge is normalized by the the...
Abstract base class which stores data about a reaction and its rate parameterization so that it can b...
bool reversible
True if the current reaction is reversible. False otherwise.
string equation() const
The chemical equation for this reaction.
Composition products
Product species and stoichiometric coefficients.
Composition reactants
Reactant species and stoichiometric coefficients.
AnyMap input
Input data used for specific models.
void setValid(bool valid)
Set validity flag of reaction.
A simple thermodynamic model for a surface phase, assuming an ideal solution model.
Base class for a phase with thermodynamic properties.
virtual Units standardConcentrationUnits() const
Returns the units of the "standard concentration" for this phase.
A representation of the units associated with a dimensional quantity.
double fpValueCheck(const string &val)
Translate a string into one double value, with error checking.
void tokenizeString(const string &in_val, vector< string > &v)
This function separates a string up into tokens according to the location of white space.
shared_ptr< ReactionRate > newReactionRate(const string &type)
Create a new empty ReactionRate object.
Namespace for the Cantera kernel.
const size_t npos
index returned by functions to indicate "no position"
void parseReactionEquation(Reaction &R, const string &equation, const AnyBase &reactionNode, const Kinetics *kin)
Parse reaction equation.
vector< shared_ptr< Reaction > > getReactions(const AnyValue &items, Kinetics &kinetics)
Create Reaction objects for each item (an AnyMap) in items.
void warn_deprecated(const string &source, const AnyBase &node, const string &message)
A deprecation warning for syntax in an input file.
const U & getValue(const map< T, U > &m, const T &key, const U &default_val)
Const accessor for a value in a map.
map< string, double > Composition
Map from string names to doubles.
unique_ptr< Reaction > newReaction(const string &type)
Create a new empty Reaction object.
Contains declarations for string manipulation functions within Cantera.
Unit aggregation utility.
void update(const Units &units, double exponent)
Update exponent of item with matching units; if it does not exist, add unit-exponent pair at end of s...
Units product() const
Calculate product of units-exponent stack.
void join(double exponent)
Join (update) exponent of standard units, where the updated exponent is the sum of the pre-existing e...
Various templated functions that carry out common vector and polynomial operations (see Templated Arr...