The problem I'm dealing with (the shown example is highly simplified) seems like a common problem but I haven't found a solution yet. I have three different reactions, v1, v2 and v3, that are defined as follows:
v1: R <-> A + C; v1 = k1*(R - A*C/5000.)
v2: R <-> B + C; v2 = k2*(R - B*C/5000.)
v3: A + B -> P; v3 = k3*A*B
Using a resource R, the first two reactions produce A and C and B and C, respectively, whereas the third reaction converts A and B to a product P (k1, k2, k3 are constants, here they are set to 1).
The third reaction is supposed to occur only if C exceeds a certain threshold called Cthr (here: Cthr = 25), otherwise v3 is 0. So the idea is that C accumulates which then, once a certain concentration is reached, results in the production of the product P.
I implemented that as follows:
def thresholdmodel (yn,tvec,allpara,R):
(A, B, C, P) = yn
k1, k2, k3 = allpara['kv']
Cthr = allpara['Cthresh']
if C <= Cthr:
v3 = 0
else:
v3 = k3*A*B
C = 0 #does not(!) affect the ouput, why?
v1 = k1*(R - A*C/5000.)
v2 = k2*(R - B*C/5000.)
dA = v1 - v3
dB = v2 - v3
dC = v1 + v2
dP = v3
return (dA, dB, dC, dP)
The simulation's output looks like this: http://i50.tinypic.com/apdvkj.png
So apparently it works until the threshold is reached for the first time (v3 is 0, P is not produced) but afterwards C is not set to 0 and I have no idea why.
What I want to get is: C is produced until the threshold, drops to 0, is produced again, drops to 0 and so on, looking like a sawtooth wave.
The time course of P should look like stairs (only produced when Cthr is exceeded).
Does anyone know what I have to do in order to set C back to 0 and to receive the expected output? Thanks a lot!