Solve non-linear non homogeneous differential equation with python (Duffing oscillator)

前端 未结 0 536
逝去的感伤
逝去的感伤 2021-01-25 00:43

I try to solve the Duffing equation using odeint:

def func(z, t):
    q, p = z
    return [p, F*np.cos(OMEGA * t) + Fm*np.cos(3*OMEGA * t) + 2*gamma*         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题