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
|
@ -82,7 +82,7 @@ class Replicate():
|
||||||
) = stats.linregress(x_for_fit, y_for_fit)
|
) = stats.linregress(x_for_fit, y_for_fit)
|
||||||
|
|
||||||
r_squared = r_value ** 2
|
r_squared = r_value ** 2
|
||||||
|
|
||||||
n = len(x_for_fit[0]) # number of observations
|
n = len(x_for_fit[0]) # number of observations
|
||||||
k = 2 # independent variables: slope and intercept
|
k = 2 # independent variables: slope and intercept
|
||||||
|
|
||||||
|
@ -328,7 +328,8 @@ class Experiment():
|
||||||
else:
|
else:
|
||||||
self.hill = None
|
self.hill = None
|
||||||
|
|
||||||
def mm_kinetics_function(self, x, vmax, Km):
|
@staticmethod
|
||||||
|
def mm_kinetics_function(x, vmax, Km):
|
||||||
"""
|
"""
|
||||||
Michaelis-Menten function.
|
Michaelis-Menten function.
|
||||||
|
|
||||||
|
@ -349,7 +350,8 @@ class Experiment():
|
||||||
v = (vmax * x) / (Km + x)
|
v = (vmax * x) / (Km + x)
|
||||||
return v
|
return v
|
||||||
|
|
||||||
def hill_kinetics_function(self, x, vmax, Kprime, h):
|
@staticmethod
|
||||||
|
def hill_kinetics_function(x, vmax, Kprime, h):
|
||||||
"""
|
"""
|
||||||
Hill function.
|
Hill function.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue