我正在尝试使用 DifferentialEquation.jl 包求解 ode45 微分方程,但出现方法错误。
using DifferentialEquations
M = 400; m = 35;
C = 3e3; c = 300;
K = 50e3; k = 200e3;
A = 0.05; L = 0.5; vh = 13.9
MM = [M 0;
0 m] # mass matrix
CC = [C -C;
-C C+c] # damping matrix
KK = [K -K;
-K K+k] # stiffness matrix
w(t) = A*sin(2*pi*vh*t/L)
wd(t) = A*2*pi*vh*t/L*cos(2*pi*vh*t/L) # dw/dt
n = 2 # number of (original) equations
Mi = MM^(-1)
AA = [zeros(n,n) eye(n); -Mi*KK -Mi*CC]
f(t) = [0; c*wd(t)+k*w(t)] # force vector
g(t,y) = AA*y+[zeros(n,1); Mi*f(t)]
y0 = zeros(4) # initial conditions
tspan = (0.0, 0.5) # time span
prob = ODEProblem(g, y0, tspan) # defining the problem
solve(prob)
代码给出了一个错误,上面写着:
MethodError:无法
convert
将 Array{Float64,2} 类型的对象转换为 Array{Float64,1} 类型的对象这可能是由于调用构造函数 Array{Float64,1}(...) 引起的,因为类型构造函数会下降返回转换方法。
我不明白我可能做错了什么,尽管我相信错误可能与 y0 有关(因为 typeof(y0) = Array{Float64,1})并且错误发生在 solve() 函数所在的行是。
感谢您事先提供的任何帮助!