我想解一阶微分方程
在哪里和是固定的。我无法获得这个微分方程的解,我猜我的问题的根源在于 sinh 和 cosh 函数。实际上,我可以毫无问题地解决例如,但是返回. 为什么我可以用正弦数值求解微分方程,但不能用 sinh 求解?我把重现错误的MWE放在下面。Warning: Instability detected. Aborting
using DifferentialEquations
using Plots
const global s2=81. # σ^2
const global d=-0.00090
function ode(du,u,p,t)
α = u[1]
du[1] = 2*d*sinh(s2*α*t)
end
α0 =[1.0] # This initial value is just a guess
prob = ODEProblem(ode,α0,(-5.0,5.0))
sol = solve(prob)
plot(sol,label="2*d*sinh(s2*α*ϕ)")