未能执行微分代数方程的第一个例子

时间:2017-10-05 12:33:23

标签: julia differentialequations.jl

我正在使用JuliaPro v0.6.0.1和JunoIDE 我尝试应用DifferentialEquations.jl。为了运行第一个例子,我添加了包DifferentialEquations,后跟using语句。在下一步中,我复制了第一个例子:

f(t,u) = 1.01*u
u0=1/2
tspan = (0.0,1.0)
prob = ODEProblem(f,u0,tspan)
sol = solve(prob,Tsit5(),reltol=1e-8,abstol=1e-8)
using Plots
plot(sol,linewidth=5,title="Solution to the linear ODE with a thick line",
 xaxis="Time (t)",yaxis="u(t) (in μm)",label="My Thick Line!") #    legend=false
plot!(sol.t, t->0.5*exp(1.01t),lw=3,ls=:dash,label="True Solution!")

而不是获得预期的图形我得到了消息:

UndefVarError: ODEProblem not defined

此外,我在使用DifferentialEquations 语句后立即收到警告

WARNING: The call to compilecache failed to create a usable precompiled cache file for module StochasticDiffEq. Got:
WARNING: Module Iterators uuid did not match cache file.
> LoadError: Declaring __precompile__(true) is only allowed in module files being imported.

我不明白。然而,最后一次警告涉及StochasticDiffEq,而我正在应用常微分方程问题。

任何帮助都是合适的

0 个答案:

没有答案