@@ -559,7 +559,7 @@ cdef class ArrheniusBM(KineticsModel):
559559 """
560560 Return the rate coefficient in the appropriate combination of m^3,
561561 mol, and s at temperature `T` in K and enthalpy of reaction `dHrxn`
562- in J/mol.
562+ in J/mol, evaluated at 298 K .
563563 """
564564 cdef double A, n, Ea
565565 Ea = self .get_activation_energy(dHrxn)
@@ -570,7 +570,7 @@ cdef class ArrheniusBM(KineticsModel):
570570 cpdef double get_activation_energy(self , double dHrxn) except - 1 :
571571 """
572572 Return the activation energy in J/mol corresponding to the given
573- enthalpy of reaction `dHrxn` in J/mol.
573+ enthalpy of reaction `dHrxn` in J/mol, evaluated at 298 K .
574574 """
575575 cdef double w0, E0
576576 E0 = self ._E0.value_si
@@ -586,7 +586,8 @@ cdef class ArrheniusBM(KineticsModel):
586586 cpdef Arrhenius to_arrhenius(self , double dHrxn):
587587 """
588588 Return an :class:`Arrhenius` instance of the kinetics model using the
589- given enthalpy of reaction `dHrxn` to determine the activation energy.
589+ given enthalpy of reaction `dHrxn` (in J/mol, evaluated at 298 K)
590+ to determine the activation energy.
590591 """
591592 return Arrhenius(
592593 A = self .A,
@@ -615,7 +616,6 @@ cdef class ArrheniusBM(KineticsModel):
615616 w0 = sum (w0s) / len (w0s)
616617
617618 if len (rxns) == 1 :
618- T = 1000.0
619619 rxn = rxns[0 ]
620620 dHrxn = rxn.get_enthalpy_of_reaction(298.0 )
621621 A = rxn.kinetics.A.value_si
@@ -632,7 +632,7 @@ cdef class ArrheniusBM(KineticsModel):
632632 self .Tmin = rxn.kinetics.Tmin
633633 self .Tmax = rxn.kinetics.Tmax
634634 self .solute = None
635- self .comment = ' Fitted to {0} reaction at temperature: {1} K ' .format( len (rxns), T)
635+ self .comment = ' Fitted to 1 reaction. '
636636 else :
637637 # define optimization function
638638 def kfcn (xs , lnA , n , E0 ):
0 commit comments