colour.biochemistry.substrate_concentration_MichaelisMenten#

colour.biochemistry.substrate_concentration_MichaelisMenten(v: ArrayLike, V_max: ArrayLike, K_m: ArrayLike, method: Literal['Michaelis 1913', 'Abebe 2017'] | str = 'Michaelis 1913', **kwargs: Any) NDArrayFloat[source]#

Describe the rate of enzymatic reactions, by relating concentration of a substrate \(S\) to reaction rate \(v\) according to given method.

Parameters:
  • v (ArrayLike) – Reaction rate \(v\).

  • V_max (ArrayLike) – Maximum rate \(V_{max}\) achieved by the system, at saturating substrate concentration.

  • K_m (ArrayLike) – Substrate concentration \(K_m\) at which the reaction rate is half of \(V_{max}\).

  • method (Literal['Michaelis 1913', 'Abebe 2017'] | str) – Computation method.

  • b_m – {colour.biochemistry.substrate_concentration_MichaelisMenten_Abebe2017()}, Bias factor \(b_m\).

  • kwargs (Any) –

Returns:

Concentration of a substrate \(S\).

Return type:

numpy.ndarray

References

[Wikipedia03d], [APLR17]

Examples

>>> substrate_concentration_MichaelisMenten(0.961538461538461, 2.5, 0.8)
... 
0.4999999...
>>> substrate_concentration_MichaelisMenten(
...     1.036054703688355, 2.5, 0.8, method="Abebe 2017", b_m=0.813
... )
... 
0.5000000...