[Doc/Kinetics] Clarify values returned by getFwdRateConstants
This commit is contained in:
parent
ebc478f8ec
commit
831b92dac4
4 changed files with 26 additions and 9 deletions
|
|
@ -636,7 +636,10 @@ public:
|
|||
/**
|
||||
* Return the forward rate constants
|
||||
*
|
||||
* length is the number of reactions. units depends on many issues.
|
||||
* The computed values include all temperature-dependent, pressure-dependent,
|
||||
* and third body contributions. Length is the number of reactions. Units are
|
||||
* a combination of kmol, m^3 and s, that depend on the rate expression for
|
||||
* the reaction.
|
||||
*
|
||||
* @param kfwd Output vector containing the forward reaction rate
|
||||
* constants. Length: nReactions().
|
||||
|
|
@ -648,11 +651,13 @@ public:
|
|||
/**
|
||||
* Return the reverse rate constants.
|
||||
*
|
||||
* length is the number of reactions. units depends on many issues. Note,
|
||||
* this routine will return rate constants for irreversible reactions if
|
||||
* the default for doIrreversible is overridden.
|
||||
* The computed values include all temperature-dependent, pressure-dependent,
|
||||
* and third body contributions. Length is the number of reactions. Units are
|
||||
* a combination of kmol, m^3 and s, that depend on the rate expression for
|
||||
* the reaction. Note, this routine will return rate constants for
|
||||
* irreversible reactions if the default for `doIrreversible` is overridden.
|
||||
*
|
||||
* @param krev Output vector of reverse rate constants.
|
||||
* @param krev Output vector of reverse rate constants
|
||||
* @param doIrreversible boolean indicating whether irreversible reactions
|
||||
* should be included.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -258,16 +258,20 @@ cdef class Kinetics(_SolutionBase):
|
|||
|
||||
property forward_rate_constants:
|
||||
"""
|
||||
Forward rate constants for all reactions. Units are a combination of
|
||||
kmol, m^3 and s, that depend on the rate expression for the reaction.
|
||||
Forward rate constants for all reactions. The computed values include
|
||||
all temperature-dependent, pressure-dependent, and third body
|
||||
contributions. Units are a combination of kmol, m^3 and s, that depend
|
||||
on the rate expression for the reaction.
|
||||
"""
|
||||
def __get__(self):
|
||||
return get_reaction_array(self, kin_getFwdRateConstants)
|
||||
|
||||
property reverse_rate_constants:
|
||||
"""
|
||||
Reverse rate constants for all reactions. Units are a combination of
|
||||
kmol, m^3 and s, that depend on the rate expression for the reaction.
|
||||
Reverse rate constants for all reactions. The computed values include
|
||||
all temperature-dependent, pressure-dependent, and third body
|
||||
contributions. Units are a combination of kmol, m^3 and s, that depend
|
||||
on the rate expression for the reaction.
|
||||
"""
|
||||
def __get__(self):
|
||||
return get_reaction_array(self, kin_getRevRateConstants)
|
||||
|
|
|
|||
|
|
@ -2,6 +2,10 @@ function kf = fwdRateConstants(a)
|
|||
% FWDRATECONSTANTS Get the forward reaction rate constants.
|
||||
% kf = fwdRateConstants(a)
|
||||
%
|
||||
% The computed values include all temperature-dependent, pressure-dependent, and
|
||||
% third body contributions. Units are a combination of kmol, m^3 and s, that
|
||||
% depend on the rate expression for the reaction.
|
||||
%
|
||||
% see also: :mat:func:`revRateConstants`, :mat:func:`equil_Kc`
|
||||
%
|
||||
% :param a:
|
||||
|
|
|
|||
|
|
@ -2,6 +2,10 @@ function kr = revRateConstants(a)
|
|||
% REVRATECONSTANTS Get the reverse reaction rate constants.
|
||||
% kr = revRateConstants(a)
|
||||
%
|
||||
% The computed values include all temperature-dependent, pressure-dependent, and
|
||||
% third body contributions. Units are a combination of kmol, m^3 and s, that
|
||||
% depend on the rate expression for the reaction.
|
||||
%
|
||||
% See also: :mat:func:`fwdRateConstants`, :mat:func:`equil_KC`
|
||||
%
|
||||
% :param a:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue