From 13dbbfb604368fae022cda461ed86e062cbdd04e Mon Sep 17 00:00:00 2001 From: Bang-Shiuh Chen Date: Sat, 19 Feb 2022 08:14:27 -0500 Subject: [PATCH] [interface] fix documentation for TwoTempPlasmaRate --- interfaces/cython/cantera/reaction.pyx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/interfaces/cython/cantera/reaction.pyx b/interfaces/cython/cantera/reaction.pyx index 11507b7f3c..d2977cbb78 100644 --- a/interfaces/cython/cantera/reaction.pyx +++ b/interfaces/cython/cantera/reaction.pyx @@ -283,11 +283,15 @@ cdef class TwoTempPlasmaRate(ArrheniusRateBase): .. math:: - k_f = A T_e^b \exp(-\tfrac{E_{a,g}}{RT}) \exp(-\tfrac{E_{a,e}}{RT_e}) - - where :math:`A` is the `pre_exponential_factor`, :math:`b` is the - `temperature_exponent`, :math:`E_{a,g}` is the `activation_energy`, and - :math:`E_{a,e}` is the `activation_electron_energy`. + k_f = A T_e^b \exp(-\tfrac{E_{a,g}}{RT}) \exp(\tfrac{E_{a,e}(T_e - T)}{R T T_e}) + + where :math:`A` is the + `pre_exponential_factor `, + :math:`b` is the `temperature_exponent `, + :math:`E_{a,g}` (``Ea_gas``) is the + `activation_energy `, and + :math:`E_{a,e}` (``Ea_electron``) is the + `activation_electron_energy `. """ _reaction_rate_type = "two-temperature-plasma"