Add sticking coefficients to CTI API docs
This commit is contained in:
parent
65f7b16f01
commit
71ba021467
3 changed files with 11 additions and 0 deletions
|
|
@ -119,6 +119,9 @@ Reactions
|
|||
.. autoclass:: edge_reaction
|
||||
:no-undoc-members:
|
||||
|
||||
.. autoclass:: stick
|
||||
:no-undoc-members:
|
||||
|
||||
Falloff Parameterizations
|
||||
-------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue