Add sticking coefficients to CTI API docs

This commit is contained in:
Ray Speth 2019-10-08 13:34:56 -04:00 committed by Bryan W. Weber
parent 65f7b16f01
commit 71ba021467
3 changed files with 11 additions and 0 deletions

View file

@ -119,6 +119,9 @@ Reactions
.. autoclass:: edge_reaction
:no-undoc-members:
.. autoclass:: stick
:no-undoc-members:
Falloff Parameterizations
-------------------------

View file

@ -591,6 +591,10 @@ class Arrhenius:
class stick(Arrhenius):
"""
A rate expression for a surface reaction given as a sticking probability,
parameterized using a modified Arrhenius expression.
"""
def __init__(self, *args, **kwargs):
"""
:param motz_wise:

View file

@ -1082,6 +1082,10 @@ class Arrhenius(rate_expression):
addFloat(c, 'e', cov[3], fmt = '%f', defunits = _ue)
class stick(Arrhenius):
"""
A rate expression for a surface reaction given as a sticking probability,
parameterized using a modified Arrhenius expression.
"""
def __init__(self, *args, **kwargs):
"""
:param motz_wise: 'True' if the Motz & Wise correction should be used,