scipy odeint结果取决于输入时间数组

时间:2017-07-11 12:00:56

标签: python scipy odeint

我尝试使用scipy odeint函数解决以下一维ODE(第二顺序):

z'' = 2*F*cos(vt-kz)*(z*cos(vt-k*z) - k*(1+z^2)*sin(vt-kz))/(1+z^2)^2

我的python脚本是

import numpy as np
from scipy.integrate import odeint
import matplotlib.pyplot as plt

def func(var,t,F,k,v):
    z,Vz = var
    tmp = v*t-k*z
    cos_tmp = np.cos(tmp)
    denom = 1+z**2

    return [Vz,
            2*F*cos_tmp*(z*cos_tmp - k*denom*np.sin(tmp))/(denom*denom)]

我知道odeint使用自适应时间步长,它返回在输入t数组给出的时间点评估的解。但是,我观察到当时间数组不够精确时,解决方案会发生偏差,如果odeint自动选择内部时间步,对我来说没有意义。

k= 12184.
F = -0.000125597154176
v = 0.3
y0 = [-1.0,0.]

t1 = np.linspace(0,10,10000)
t2 = np.linspace(0,10,100)
t3 = np.linspace(0,10,10)

result1 = odeint(func,y0,t1,args=(F,k,v))
result2 = odeint(func,y0,t2,args=(F,k,v))
result3 = odeint(func,y0,t3,args=(F,k,v))

fig,ax = plt.subplots(1,2,figsize=(14,5))

ax[0].plot(t1,result1[:,0],label='t1')
ax[0].plot(t2,result2[:,0],'r.',label='t2')
ax[1].plot(t3,result3[:,0],'r.',label='t3')

ax[0].legend(frameon=False,loc='upper left',numpoints=1)
ax[1].legend(frameon=False,loc='upper left',numpoints=1)

plt.show()

解决方案的图像在这里:

enter image description here

1 个答案:

答案 0 :(得分:2)

运行代码时,您是否注意到打印的警告?它说

 lsoda--  at current t (=r1), mxstep (=i1) steps   
       taken on this call before reaching tout     
      in above message,  i1 =       500
      in above message,  r1 =  0.3622415764602D+00
[...]/scipy/integrate/odepack.py:218: ODEintWarning: Excess work done on this call (perhaps wrong Dfun type). Run with full_output = 1 to get quantitative information.
  warnings.warn(warning_msg, ODEintWarning)

这有点神秘,但这意味着odeint在达到要求的时间之前达到了500个内部时间步长的限制。

您可以通过设置mxstep参数来增加该最大值。我刚刚尝试使用

编写代码
result3 = odeint(func,y0,t3,args=(F,k,v), mxstep=2000)

并且有效。