antioch-0.4.0
|
Base class for falloff processes coupled with efficiencies. More...
#include <falloff_threebody_reaction.h>
Public Member Functions | |
FalloffThreeBodyReaction (const unsigned int n_species, const std::string &equation, const bool &reversible=true, const ReactionType::ReactionType &falloffType=ReactionType::LINDEMANN_FALLOFF_THREE_BODY, const KineticsModel::KineticsModel kin=KineticsModel::KOOIJ) | |
Construct a single reaction mechanism. More... | |
~FalloffThreeBodyReaction () | |
template<typename StateType , typename VectorStateType > | |
StateType | compute_forward_rate_coefficient (const VectorStateType &molar_densities, const KineticsConditions< StateType, VectorStateType > &conditions) const |
template<typename StateType , typename VectorStateType > | |
void | compute_forward_rate_coefficient_and_derivatives (const VectorStateType &molar_densities, const KineticsConditions< StateType, VectorStateType > &conditions, StateType &kfwd, StateType &dkfwd_dT, VectorStateType &dkfkwd_dX) const |
const FalloffType & | F () const |
Return const reference to the falloff object. More... | |
FalloffType & | F () |
Return writeable reference to the falloff object. More... | |
unsigned int | n_species () const |
const std::string & | equation () const |
const std::string & | id () const |
void | set_id (const std::string &id) |
set the reaction id. More... | |
ReactionType::ReactionType | type () const |
Type of reaction. More... | |
void | set_type (const ReactionType::ReactionType type) |
Set the type of reaction. More... | |
void | set_reversibility (const bool reversible) |
Set the reversibility of reaction. More... | |
KineticsModel::KineticsModel | kinetics_model () const |
Model of kinetics. More... | |
void | set_kinetics_model (const KineticsModel::KineticsModel kin) |
Set the model of kinetics. More... | |
bool | initialized () const |
void | set_parameter_of_rate (KineticsModel::Parameters parameter, CoeffType new_value, unsigned int n_reaction=0, const std::string &unit="SI") |
reset a parameter from the rate constant More... | |
void | set_parameter_of_rate (KineticsModel::Parameters parameter, CoeffType new_value, unsigned int n_reaction, int l, const std::string &unit="SI") |
reset a parameter from the rate constant, vector parameters More... | |
CoeffType | get_parameter_of_rate (KineticsModel::Parameters parameter, unsigned int n_reaction=0, const std::string &unit="SI") const |
get a parameter from the rate constant More... | |
CoeffType | get_parameter_of_rate (KineticsModel::Parameters parameter, unsigned int n_reaction, const std::string &unit, int l) const |
get a parameter from the rate constant, vectorized version More... | |
void | set_parameter_of_chemical_process (ReactionType::Parameters parameter, CoeffType new_value, unsigned int species=std::numeric_limits< unsigned int >::max()) |
reset a parameter from the chemical process More... | |
CoeffType | get_parameter_of_chemical_process (ReactionType::Parameters parameter, unsigned int species=std::numeric_limits< unsigned int >::max()) const |
get a parameter from the chemical process More... | |
bool | reversible () const |
unsigned int | n_reactants () const |
unsigned int | n_products () const |
const std::string & | reactant_name (const unsigned int r) const |
const std::string & | product_name (const unsigned int p) const |
unsigned int | reactant_id (const unsigned int r) const |
unsigned int | product_id (const unsigned int p) const |
unsigned int | reactant_stoichiometric_coefficient (const unsigned int r) const |
unsigned int | product_stoichiometric_coefficient (const unsigned int p) const |
CoeffType | reactant_partial_order (const unsigned int r) const |
CoeffType | product_partial_order (const unsigned int p) const |
void | add_reactant (const std::string &name, const unsigned int r_id, const unsigned int stoichiometric_coeff, const CoeffType partial_order=std::numeric_limits< CoeffType >::infinity()) |
void | add_product (const std::string &name, const unsigned int p_id, const unsigned int stoichiometric_coeff, const CoeffType partial_order=std::numeric_limits< CoeffType >::infinity()) |
void | clear_reactant () |
void | clear_product () |
void | set_efficiency (const std::string &, const unsigned int s, const CoeffType efficiency) |
CoeffType | get_efficiency (const unsigned int s) const |
CoeffType | efficiency (const unsigned int s) const |
void | initialize (unsigned int index=0) |
Computes derived quantities. More... | |
int | gamma () const |
StateType | equilibrium_constant (const StateType &P0_RT, const VectorStateType &h_RT_minus_s_R) const |
void | equilibrium_constant_and_derivative (const StateType &T, const StateType &P0_RT, const VectorStateType &h_RT_minus_s_R, const VectorStateType &ddT_h_RT_minus_s_R, StateType &keq, StateType &dkeq_dT) const |
StateType | compute_forward_rate_coefficient (const VectorStateType &molar_densities, const StateType &temp) const |
void | compute_forward_rate_coefficient_and_derivatives (const VectorStateType &molar_densities, const StateType &temp, StateType &kfwd, StateType &dkfwd_dT, VectorStateType &dkfwd_dX) const |
StateType | compute_rate_of_progress (const VectorStateType &molar_densities, const KineticsConditions< StateType, VectorStateType > &conditions, const StateType &P0_RT, const VectorStateType &h_RT_minus_s_R) const |
StateType | compute_rate_of_progress (const VectorStateType &molar_densities, const StateType &temp, const StateType &P0_RT, const VectorStateType &h_RT_minus_s_R) const |
void | compute_rate_of_progress_and_derivatives (const VectorStateType &molar_densities, const ChemicalMixture< CoeffType > &, const KineticsConditions< StateType, VectorStateType > &conditions, const StateType &P0_RT, const VectorStateType &h_RT_minus_s_R, const VectorStateType &dh_RT_minus_s_R_dT, StateType &net_reaction_rate, StateType &dnet_rate_dT, VectorStateType &dnet_rate_dX_s) const |
void | compute_rate_of_progress_and_derivatives (const VectorStateType &molar_densities, const ChemicalMixture< CoeffType > &chem_mixture, const StateType &temp, const StateType &P0_RT, const VectorStateType &h_RT_minus_s_R, const VectorStateType &dh_RT_minus_s_R_dT, StateType &net_reaction_rate, StateType &dnet_rate_dT, VectorStateType &dnet_rate_dX_s) const |
const KineticsType< CoeffType, VectorCoeffType > & | forward_rate (unsigned int ir=0) const |
Return const reference to the forward rate object. More... | |
KineticsType< CoeffType, VectorCoeffType > & | forward_rate (unsigned int ir=0) |
Return writeable reference to the forward rate object. More... | |
FalloffType & | falloff () |
Return writeable reference to the falloff object, test type. More... | |
void | add_forward_rate (KineticsType< CoeffType, VectorCoeffType > *rate) |
Add a forward rate object. More... | |
void | swap_forward_rates (unsigned int irate, unsigned int jrate) |
Swap two forward rates object. More... | |
unsigned int | n_rate_constants () const |
Return the number of rate constant objects. More... | |
void | print (std::ostream &os=std::cout) const |
Formatted print, by default to std::cout . More... | |
Protected Attributes | |
FalloffType | _F |
unsigned int | _n_species |
std::string | _id |
std::string | _equation |
std::vector< std::string > | _reactant_names |
std::vector< std::string > | _product_names |
std::vector< unsigned int > | _reactant_ids |
std::vector< unsigned int > | _product_ids |
std::vector< unsigned int > | _reactant_stoichiometry |
std::vector< unsigned int > | _product_stoichiometry |
std::vector< unsigned int > | _species_reactant_stoichiometry |
std::vector< unsigned int > | _species_product_stoichiometry |
std::vector< CoeffType > | _species_reactant_partial_order |
std::vector< CoeffType > | _species_product_partial_order |
std::vector< int > | _species_delta_stoichiometry |
int | _gamma |
bool | _initialized |
bool | _reversible |
ReactionType::ReactionType | _type |
KineticsModel::KineticsModel | _kintype |
std::vector< KineticsType < CoeffType, VectorCoeffType > * > | _forward_rate |
The forward reaction rate modified Arrhenius form. More... | |
std::vector< CoeffType > | _efficiencies |
efficiencies for three body reactions More... | |
Base class for falloff processes coupled with efficiencies.
This class encapsulates a model between falloff and three-body reaction.
Sylvain: I strongly disapprove using this model, see section ``A twist in the physics: three-body falloff" in section 2.2.2 Kinetics computing of the <a href="https://github.com/libantioch/model_doc">model documentation.
It performs the common operations. A falloff rate constant is defined by the equation
with
and
being respectively the low and high pressure rate constant limits, considered elementary (as pressure in these conditions is constant). Thus
with any kinetics model (see base class KineticsType), and
the mixture concentration (or pressure, it's equivalent,
in the ideal gas model). All reactions are assumed to be reversible, the kinetics models are assumed to be the same. The three-body part is for the computations of
We have:
By default, the falloff is LindemannFalloff and the kinetics model KooijRate.
Definition at line 102 of file falloff_threebody_reaction.h.
|
inline |
Construct a single reaction mechanism.
Definition at line 144 of file falloff_threebody_reaction.h.
|
inline |
Definition at line 160 of file falloff_threebody_reaction.h.
|
inherited |
Add a forward rate object.
Referenced by tester().
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inline |
Definition at line 182 of file falloff_threebody_reaction.h.
References Antioch::KineticsConditions< StateType, VectorStateType >::T(), and Antioch::zero_clone().
Referenced by tester().
|
inherited |
|
inline |
Definition at line 201 of file falloff_threebody_reaction.h.
References Antioch::KineticsConditions< StateType, VectorStateType >::T(), and Antioch::zero_clone().
Referenced by tester().
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
Referenced by Antioch::read_reaction_set_data().
|
inherited |
|
inherited |
|
inline |
Return const reference to the falloff object.
Definition at line 174 of file falloff_threebody_reaction.h.
Referenced by tester().
|
inline |
Return writeable reference to the falloff object.
Definition at line 167 of file falloff_threebody_reaction.h.
|
inherited |
Return writeable reference to the falloff object, test type.
|
inherited |
Return const reference to the forward rate object.
|
inherited |
Return writeable reference to the forward rate object.
|
inherited |
|
inherited |
|
inherited |
get a parameter from the chemical process
|
inherited |
get a parameter from the rate constant
|
inherited |
get a parameter from the rate constant, vectorized version
|
inherited |
|
inherited |
Computes derived quantities.
|
inherited |
|
inherited |
Model of kinetics.
|
inherited |
|
inherited |
Return the number of rate constant objects.
|
inherited |
|
inherited |
|
inherited |
Formatted print, by default to std::cout
.
|
inherited |
|
inherited |
p
th product.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
r
th reactant.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
Referenced by tester().
|
inherited |
set the reaction id.
|
inherited |
Set the model of kinetics.
|
inherited |
reset a parameter from the chemical process
|
inherited |
reset a parameter from the rate constant
|
inherited |
reset a parameter from the rate constant, vector parameters
|
inherited |
Set the reversibility of reaction.
|
inherited |
Set the type of reaction.
reversible reactions are considered.
|
inherited |
Swap two forward rates object.
|
inherited |
Type of reaction.
reversible reactions are considered.
|
protectedinherited |
efficiencies for three body reactions
Definition at line 379 of file reaction.h.
|
protectedinherited |
Definition at line 357 of file reaction.h.
|
protected |
Definition at line 137 of file falloff_threebody_reaction.h.
|
protectedinherited |
The forward reaction rate modified Arrhenius form.
Definition at line 376 of file reaction.h.
|
protectedinherited |
Definition at line 369 of file reaction.h.
|
protectedinherited |
Definition at line 356 of file reaction.h.
|
protectedinherited |
Definition at line 370 of file reaction.h.
|
protectedinherited |
Definition at line 373 of file reaction.h.
|
protectedinherited |
Definition at line 355 of file reaction.h.
|
protectedinherited |
Definition at line 361 of file reaction.h.
|
protectedinherited |
Definition at line 359 of file reaction.h.
|
protectedinherited |
Definition at line 363 of file reaction.h.
|
protectedinherited |
Definition at line 360 of file reaction.h.
|
protectedinherited |
Definition at line 358 of file reaction.h.
|
protectedinherited |
Definition at line 362 of file reaction.h.
|
protectedinherited |
Definition at line 371 of file reaction.h.
|
protectedinherited |
Definition at line 368 of file reaction.h.
|
protectedinherited |
Definition at line 367 of file reaction.h.
|
protectedinherited |
Definition at line 365 of file reaction.h.
|
protectedinherited |
Definition at line 366 of file reaction.h.
|
protectedinherited |
Definition at line 364 of file reaction.h.
|
protectedinherited |
Definition at line 372 of file reaction.h.