Skip to content

Commit

Permalink
Fix calculation of conversion rates for MSSMA model
Browse files Browse the repository at this point in the history
  • Loading branch information
r.jaepel authored and schmoelder committed Dec 7, 2023
1 parent e66ec1b commit bd721eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CADETProcess/processModel/binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ class MultistateStericMassAction(BindingBaseClass):
@property
def _conversion_entries(self):
n = 0
for state in self.bound_states[1:]:
for state in self.bound_states:
n += state**2

return n
Expand Down

0 comments on commit bd721eb

Please sign in to comment.