Skip to content

Commit

Permalink
Extend MPMLangmuir gamma range
Browse files Browse the repository at this point in the history
  • Loading branch information
ronald-jaepel authored and schmoelder committed Jan 14, 2025
1 parent ae08449 commit 2706d88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CADETProcess/processModel/binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ class MobilePhaseModulator(BindingBaseClass):
ion_exchange_characteristic : list of unsigned floats.
Parameters describing the ion-exchange characteristics (IEX).
Length depends on `n_comp`.
hydrophobicity : list of unsigned floats.
hydrophobicity : list of floats.
Parameters describing the hydrophobicity (HIC).
Length depends on `n_comp`.
linear_threshold : UnsignedFloat
Expand All @@ -527,7 +527,7 @@ class MobilePhaseModulator(BindingBaseClass):
capacity = SizedUnsignedList(size='n_comp')
ion_exchange_characteristic = SizedUnsignedList(size='n_comp')
beta = ion_exchange_characteristic
hydrophobicity = SizedUnsignedList(size='n_comp')
hydrophobicity = SizedList(size='n_comp')
gamma = hydrophobicity
linear_threshold = UnsignedFloat(default=1e-8)

Expand Down Expand Up @@ -555,7 +555,7 @@ class ExtendedMobilePhaseModulator(BindingBaseClass):
ion_exchange_characteristic : list of unsigned floats.
Parameters describing the ion-exchange characteristics (IEX).
Length depends on `n_comp`.
hydrophobicity : list of unsigned floats.
hydrophobicity : list of floats.
Parameters describing the hydrophobicity (HIC).
Length depends on `n_comp`.
component_mode : list of unsigned integers.
Expand All @@ -572,7 +572,7 @@ class ExtendedMobilePhaseModulator(BindingBaseClass):
capacity = SizedUnsignedList(size='n_comp')
ion_exchange_characteristic = SizedUnsignedList(size='n_comp')
beta = ion_exchange_characteristic
hydrophobicity = SizedUnsignedList(size='n_comp')
hydrophobicity = SizedList(size='n_comp')
gamma = hydrophobicity
component_mode = SizedUnsignedIntegerList(size='n_comp', ub=2)

Expand Down

0 comments on commit 2706d88

Please sign in to comment.