Scipy正在从odeint
转向solve_ivp
,后者不再支持为dynamics函数传递附加参数。而是使用lambdas are recommended。但是,当我对事件尝试相同时,它们将无法正常工作。有什么想法吗?
MWE(从doc page修改):
import numpy as np
from scipy.integrate import solve_ivp
import matplotlib.pyplot as plt
# dynamics of a simple mass with ballistic flight and a bit of drag
def cannon(t, y, p):
return [y[2],y[3], -p['friction']*y[2], p['gravity']-p['friction']*y[3]]
# termination condition: cannonball hits the ground
# this event does not require parameters, but more complex events might
def hit_ground1(t, y, p):
return y[1]
hit_ground1.terminal = True
hit_ground1.direction = -1
def hit_ground2(t,y):
return y[1]
hit_ground2.terminal = True
hit_ground2.direction = -1
p = {'gravity':-1,'friction':0} # paramters as a dict
y0 = [0, 0, 0, 10] # initial conditions
t_span = [0, 22] # integration time a bit over what is necessary
# we can handle dynamics with parameters by using lambdas
# but somehow the same doesn't seem to work with events
sol1 = solve_ivp(fun=lambda t,x:cannon(t,x,p), t_span=t_span,
y0=y0, events=hit_ground2, max_step=0.01)
sol2 = solve_ivp(fun=lambda t,x:cannon(t,x,p), t_span=t_span,
y0=y0, events=lambda t,x:hit_ground1(t,x,p), max_step=0.01)
print(sol1.t[-1]) # terminates correctly
print(sol2.t[-1]) # continues integrating
plt.plot(sol1.t,sol1.y[1], linewidth=3)
plt.plot(sol2.t,sol2.y[1],'--',linewidth=3)
plt.show()
答案 0 :(得分:1)
事件的属性terminal
和direction
不会转移到您的lambda表达式中。您需要将lambda保存到变量中,然后在其中添加属性,而不是在hit_ground1
函数上。
def hit_ground1(t, y, p):
return y[1]
ground_event = lambda t,x:hit_ground1(t,x,p)
ground_event.terminal = True
ground_event.direction = -1
使用此事件,它应该可以正常工作。
sol2 = solve_ivp(fun=lambda t,x:cannon(t,x,p), t_span=t_span,
y0=y0, events=ground_trigger, max_step=0.01)