Block a user
Feedback
vo2 = v*0.2
why is that?
when referring to experimental data, please specify paper and figure / subplot.
exp_data = exp_data * 806
- this is not good. instead, make a var with CS…
Feedback
usually, we use micromol / min / g prot. please use this unit for rates and then convert to nmol O2 when needed for comparison.
already have question regarding PK_vmax - not sure regarding the…
Feedback
Each constant has to have a reference next to it. If it is based on my recommendation then state that in the code too.
mg prot should always be spelled out. Right now it is hard to read comment…
Feedback
class PK:
def __init__(self, vmax, Kib=0.4, Kia=1e+4):
self.vmax = vmax
self.KiaKb = Kia*Kib ; self.Kib = Kib ; self.Kia = Kia
def rate(self, ADP, PEP):
…
Feedback
- PK reaction: make it then as random bi reaction between PEP and ADP. Just set PEP dissociation constant to a small one, so it would have a minimal impact on the rate. Then handle PEP as a almost…