mirror of
https://github.com/Athemis/pyKinetics.git
synced 2025-04-05 06:56:02 +00:00
declare kinetic functions as static
This commit is contained in:
parent
65ce7e7e72
commit
662f1baca1
1 changed files with 5 additions and 3 deletions
|
@ -328,7 +328,8 @@ class Experiment():
|
|||
else:
|
||||
self.hill = None
|
||||
|
||||
def mm_kinetics_function(self, x, vmax, Km):
|
||||
@staticmethod
|
||||
def mm_kinetics_function(x, vmax, Km):
|
||||
"""
|
||||
Michaelis-Menten function.
|
||||
|
||||
|
@ -349,7 +350,8 @@ class Experiment():
|
|||
v = (vmax * x) / (Km + x)
|
||||
return v
|
||||
|
||||
def hill_kinetics_function(self, x, vmax, Kprime, h):
|
||||
@staticmethod
|
||||
def hill_kinetics_function(x, vmax, Kprime, h):
|
||||
"""
|
||||
Hill function.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue