1
0
Fork 0
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:
Alexander Minges 2016-04-14 14:10:04 +02:00
parent 65ce7e7e72
commit 662f1baca1

View file

@ -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.