我有下一个方程组:
#dY0=/dt = k1*S - k2*Y1*Y0
#dY1/dt = k3*S - k4*Y1
其中S(t)是阶梯函数,在t = 4,8,12等时增加一个单位。我的代码如下:
import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import odeint
def stp(t):
if t < 4 and t >= 0:
return 0.0
if t < 8 and t >= 4:
return 1.0
if t < 12 and t >= 8:
return 2.0
if t < 16 and t >= 12:
return 3.0
if t < 20 and t >= 16:
return 4.0
else:
return 5.0
#Initial conditions:
y0 = np.array([1,0])
#Time
t = np.linspace(0, 20, 100)
def f(y,t):
s=stp(t)
k1=2
k2=2
k3=1
k4=1
dy0=k1*s - k2*y[1]*y[0]
dy1=k3*s - k4*y[1]
return (dy0, dy1)
res=odeint(f, y0, t)
我的问题是,我的&#34; stp&#34;功能会改进,以便不记录我指定的时间点的条件? (它结束时给出5作为返回值只是为了结束函数,但是如果时间长度增加则应该增加),我的意思是,使其适用于任何时间长度以及能够为跳转指定不同的间隔分段函数。
提前致谢
答案 0 :(得分:3)
stp
与参数t
有明确的关系。您可以用整数除法替换所有t < 20
:
def stp(t):
if t < 20:
return float(t//4)
else:
return 5.0
通常,对于所有范围,包括那些远远超过20的范围:
def stp(t):
return float(t//4)