Cantera  2.1.2
Classes | Functions
Kinetics Managers
Collaboration diagram for Kinetics Managers:

Classes

class  ImplicitSurfChem
 Advances the surface coverages of the associated set of SurfacePhase objects in time. More...
 
class  Kinetics
 Public interface for kinetics managers. More...
 

Functions

bool installReaction (int i, const XML_Node &r, Kinetics &kin, std::string default_phase, ReactionRules &rules, bool validate_rxn)
 Install an individual reaction into a kinetics manager. More...
 
doublereal isDuplicateReaction (std::map< int, doublereal > &r1, std::map< int, doublereal > &r2)
 This function returns a ratio if two reactions are duplicates of one another, and 0.0 otherwise. More...
 
void checkRxnElementBalance (Kinetics &kin, const ReactionData &rdata, doublereal errorTolerance=1.0e-3)
 This function will check a specific reaction to see if the elements balance. More...
 
void getRateCoefficient (const XML_Node &kf, Kinetics &kin, ReactionData &rdata, const ReactionRules &rules)
 Read the rate coefficient data from the XML file. More...
 
bool installReactionArrays (const XML_Node &p, Kinetics &kin, std::string default_phase, bool check_for_duplicates=false)
 Install information about reactions into the kinetics object, kin. More...
 
bool importKinetics (const XML_Node &phase, std::vector< ThermoPhase * > th, Kinetics *kin)
 Import a reaction mechanism for a phase or an interface. More...
 

Detailed Description

Models and Managers

A kinetics manager is a C++ class that implements a kinetics model; a kinetics model is a set of mathematical equation describing how various kinetic quantities are to be computed – reaction rates, species production rates, etc. Many different kinetics models might be defined to handle different types of kinetic processes. For example, one kinetics model might use expressions valid for elementary reactions in ideal gas mixtures. It might, for example, require the reaction orders to be integral and equal to the forward stoichiometric coefficients, require that each reaction be reversible with a reverse rate satisfying detailed balance, include pressure-dependent unimolecular reactions, etc. Another kinetics model might be designed for heterogeneous chemistry at interfaces, and might allow empirical reaction orders, coverage-dependent activation energies, irreversible reactions, and include effects of potential differences across the interface on reaction rates.

A kinetics manager implements a kinetics model. Since the model equations may be complex and expensive to evaluate, a kinetics manager may adopt various strategies to 'manage' the computation and evaluate the expressions efficiently. For example, if there are rate coefficients or other quantities that depend only on temperature, a manager class may choose to store these quantities internally, and re-evaluate them only when the temperature has actually changed. Or a manager designed for use with reaction mechanisms with a few repeated activation energies might precompute the terms \( exp(-E/RT) \), instead of evaluating the exponential repeatedly for each reaction. There are many other possible 'management styles', each of which might be better suited to some reaction mechanisms than others.

But however a manager structures the internal computation, the tasks the manager class must perform are, for the most part, the same. It must be able to compute reaction rates, species production rates, equilibrium constants, etc. Therefore, all kinetics manager classes should have a common set of public methods, but differ in how they implement these methods.

A kinetics manager computes reaction rates of progress, species production rates, equilibrium constants, and similar quantities for a reaction mechanism. All kinetics manager classes derive from class Kinetics, which defines a common public interface for all kinetics managers. Each derived class overloads the virtual methods of Kinetics to implement a particular kinetics model.

For example, class GasKinetics implements reaction rate expressions appropriate for homogeneous reactions in ideal gas mixtures, and class InterfaceKinetics implements expressions appropriate for heterogeneous mechanisms at interfaces, including how to handle reactions involving charged species of phases with different electric potentials — something that class GasKinetics doesn't deal with at all.

Kinetics managers may be also created that hard-wire a particular reaction mechanism in C++ code. This can often result in faster performance. An example of this is the kinetics manager GRI30_Kinetics that hard-wires the rate expressions for the natural gas combustion mechanism GRI-3.0.

Many of the methods of class Kinetics write into arrays the values of some quantity for each species, for example the net production rate. These methods always write the results into flat arrays, ordered by phase in the order the phase was added, and within a phase in the order the species were added to the phase (which is the same ordering as in the input file). Example: suppose a heterogeneous mechanism involves three phases – a bulk phase 'a', another bulk phase 'b', and the surface phase 'a:b' at the a/b interface. Phase 'a' contains 12 species, phase 'b' contains 3, and at the interface there are 5 adsorbed species defined in phase 'a:b'. Then methods like getNetProductionRates(doublereal* net) will write and output array of length 20, beginning at the location pointed to by 'net'. The first 12 values will be the net production rates for all 12 species of phase 'a' (even if some do not participate in the reactions), the next 3 will be for phase 'b', and finally the net production rates for the surface species will occupy the last 5 locations.

Function Documentation

bool installReaction ( int  i,
const XML_Node r,
Kinetics kin,
std::string  default_phase,
ReactionRules rules,
bool  validate_rxn 
)

Install an individual reaction into a kinetics manager.

The data for the reaction is in the xml_node r. In other words, r points directly to a ctml element named "reaction". i refers to the number id of the reaction in the kinetics object.

Parameters
iReaction number.
rXML_Node containing reaction data.
kinKinetics manager to which reaction will be added.
default_phaseDefault phase for locating a species
rulesRule for handling reactions with missing species (skip or flag as error)
validate_rxnIf true, check that this reaction is not a duplicate of one already entered, and check that the reaction balances.

Definition at line 612 of file importKinetics.cpp.

References Kinetics::addReaction(), AssertTrace, Cantera::CHEBYSHEV_RXN, Cantera::checkRxnElementBalance(), Cantera::CHEMACT_RXN, XML_Node::child(), ReactionData::duplicate, Cantera::EDGE_RXN, ReactionData::efficiency(), Cantera::ELEMENTARY_RXN, ReactionData::equation, Cantera::FALLOFF_RXN, ReactionData::falloffType, Cantera::getRateCoefficient(), Cantera::getReagents(), ReactionData::global, XML_Node::hasAttrib(), XML_Node::hasChild(), Cantera::int2str(), Cantera::isDuplicateReaction(), ReactionData::isReversibleWithFrac, rxninfo::m_participants, XML_Node::name(), ReactionData::net_stoich, Phase::nSpecies(), Kinetics::nTotalSpecies(), ReactionData::number, Cantera::PLOG_RXN, ReactionData::porder, ReactionData::products, ReactionData::pstoich, ReactionData::reactants, ReactionData::reactionType, ReactionData::reversible, ReactionData::rorder, ReactionData::rstoich, ReactionData::rxn_number, Kinetics::speciesPhase(), Cantera::SURFACE_RXN, Cantera::THREE_BODY_RXN, and ReactionData::validate.

Referenced by Cantera::installReactionArrays().

doublereal isDuplicateReaction ( std::map< int, doublereal > &  r1,
std::map< int, doublereal > &  r2 
)

This function returns a ratio if two reactions are duplicates of one another, and 0.0 otherwise.

The input arguments are two maps from species number to stoichiometric coefficient, one for each reaction. The reactions are considered duplicates if their stoichiometric coefficients have the same ratio for all species.

Parameters
r1map 1
r2map 2
Returns
Returns 0.0 if the reactions are not the same. If the reactions are the same, it returns the ratio of the stoichiometric coefficients.

Definition at line 569 of file importKinetics.cpp.

Referenced by rxninfo::installReaction().

void checkRxnElementBalance ( Kinetics &  kin,
const ReactionData &  rdata,
doublereal  errorTolerance = 1.0e-3 
)

This function will check a specific reaction to see if the elements balance.

Parameters
kinKinetics object
rdataObject containing the information about one reaction
errorTolerancedouble containing the error tolerance.

Definition at line 85 of file importKinetics.cpp.

References Phase::elementName(), ReactionData::equation, Cantera::fp2str(), Kinetics::kineticsSpeciesIndex(), Phase::nAtoms(), Phase::nElements(), ReactionData::products, ReactionData::pstoich, ReactionData::reactants, ReactionData::rstoich, Kinetics::speciesPhase(), and Kinetics::speciesPhaseIndex().

Referenced by rxninfo::installReaction().

void getRateCoefficient ( const XML_Node &  kf,
Kinetics &  kin,
ReactionData &  rdata,
const ReactionRules &  rules 
)

Read the rate coefficient data from the XML file.

Extract the rate coefficient for a reaction from the xml node, kf. kf should point to a XML element named "rateCoeff". rdata is the partially filled ReactionData object for the reaction. This function will fill in more fields in the ReactionData object.

Parameters
kfXML_Node containing information about the rate coefficients.
kinkinetics manager
rdataReactionData reference
rulesRules for parsing and installing reactions

Trigger an exception for negative A unless specifically authorized.

Definition at line 468 of file importKinetics.cpp.

References XML_Node::attrib(), ReactionData::auxRateCoeffParameters, ReactionData::beta, ReactionData::chebCoeffs, ReactionData::chebDegreeP, ReactionData::chebDegreeT, ReactionData::chebPmax, ReactionData::chebPmin, ReactionData::chebTmax, ReactionData::chebTmin, Cantera::CHEBYSHEV_RXN, Cantera::CHEMACT_RXN, XML_Node::child(), Cantera::EDGE_RXN, Cantera::ELEMENTARY_RXN, Cantera::FALLOFF_RXN, Cantera::fpValue(), Cantera::GasConstant, Cantera::getArrhenius(), Cantera::getEfficiencies(), Cantera::getFalloff(), ctml::getFloat(), ctml::getFloatArray(), Cantera::getStick(), Cantera::int2str(), XML_Node::name(), XML_Node::nChildren(), ReactionData::number, Cantera::PLOG_RXN, ReactionData::plogParameters, ReactionData::rateCoeffParameters, ReactionData::rateCoeffType, ReactionData::reactionType, Cantera::SURFACE_RXN, Kinetics::surfacePhaseIndex(), Kinetics::thermo(), and Cantera::THREE_BODY_RXN.

Referenced by rxninfo::installReaction().

bool installReactionArrays ( const XML_Node &  p,
Kinetics &  kin,
std::string  default_phase,
bool  check_for_duplicates = false 
)

Install information about reactions into the kinetics object, kin.

At this point, parent usually refers to the phase xml element. One of the children of this element is reactionArray, the element which determines where in the xml file to look up the reaction rate data.

Parameters
pparent XML phase element
kinKinetics object to install reactions into
default_phaseThe default_phase is the default phase to assume when looking up species.
check_for_duplicatesCheck for reactions with exactly the same reactants and products.
Returns
On return, if reaction instantiation goes correctly, return true. If there is a problem, return false.

Definition at line 812 of file importKinetics.cpp.

References XML_Node::child(), Kinetics::finalize(), Cantera::get_XML_Node(), XML_Node::getChildren(), XML_Node::hasChild(), rxninfo::installReaction(), Cantera::npos, and XML_Node::root().

Referenced by Cantera::importKinetics().

bool importKinetics ( const XML_Node &  phase,
std::vector< ThermoPhase * >  th,
Kinetics *  kin 
)

Import a reaction mechanism for a phase or an interface.

This routine will import a reaction mechanism into a kinetics object. The reaction mechanism may either be homogeneous or heterogeneous, involving multiple ThermoPhase objects. The hosting phase should be included as the first argument. For example, if phase I is an interface phase between bulk phases A and B. Then, the XML_Node for phase I should be the first argument. The vector of ThermoPhase objects should consist of pointers to phases I, A, and B.

Parameters
phaseThis is an xml node containing a description of the owning phase for the kinetics object. Within the phase is a XML element called reactionArray containing the location of the description of the reactions that make up the kinetics object. Also within the phase is an XML element called phaseArray containing a listing of other phases that participate in the kinetics mechanism.
thThis is a list of ThermoPhase pointers which must include all of the phases that participate in the kinetics operator. All of the phases must have already been initialized and formed within Cantera. However, their pointers should not have been added to the Kinetics object; this addition is carried out here. Additional phases may be include in the list; these have no effect.
kinThis is a pointer to a kinetics manager class that will be initialized with the kinetics mechanism. Inherited Kinetics classes may be used here.

Definition at line 944 of file importKinetics.cpp.

References Kinetics::addPhase(), XML_Node::child(), ctml::getStringArray(), XML_Node::hasChild(), Kinetics::init(), Cantera::installReactionArrays(), Cantera::npos, XML_Node::parent(), and Kinetics::phaseIndex().

Referenced by Cantera::buildSolutionFromXML(), Interface::Interface(), and KineticsFactory::newKinetics().