Skip to content

Commit

Permalink
Change AntiLangmuir coefficient from SizedUnsignedList to SizedList
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoniaBerger authored and schmoelder committed Jun 20, 2024
1 parent 7ddabeb commit cdc11b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CADETProcess/processModel/binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,15 +442,15 @@ class AntiLangmuir(BindingBaseClass):
Desorption rate constants. Length depends on `n_comp`.
capacity : list of unsigned floats.
Maximum adsorption capacities. Length depends on `n_comp`.
antilangmuir : list of unsigned floats.
antilangmuir : list of {-1, 1}.
Anti-Langmuir coefficients. Length depends on `n_comp`.
"""

adsorption_rate = SizedUnsignedList(size='n_comp')
desorption_rate = SizedUnsignedList(size='n_comp')
capacity = SizedUnsignedList(size='n_comp')
antilangmuir = SizedUnsignedList(size='n_comp')
antilangmuir = SizedList(size='n_comp')

_parameters = [
'adsorption_rate',
Expand Down

0 comments on commit cdc11b9

Please sign in to comment.