Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMVale committed Oct 12, 2023
1 parent 2ea7ebb commit f67407f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/polykin/kinetics/thermal.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def equation(T: FloatOrArray,
Unit = K.
k0 : FloatOrArray
Coefficient value at the reference temperature, $k_0=k(T_0)$.
Unit = `unit`.
Unit = Any.
EaR : FloatOrArray
Energy of activation, $E_a/R$.
Unit = K.
Expand All @@ -116,7 +116,7 @@ def equation(T: FloatOrArray,
Returns
-------
FloatOrArray
Coefficient value.
Coefficient value. Unit = [k0].
"""
return k0 * np.exp(-EaR*(1/T - 1/T0))

Expand Down Expand Up @@ -350,6 +350,6 @@ def equation(T: FloatOrArray,
Returns
-------
FloatOrArray
Coefficient value.
Coefficient value. Unit = 1/s.
"""
return kappa * kB*T/h * np.exp((DSa - DHa/T)/R)

0 comments on commit f67407f

Please sign in to comment.