-
-
Notifications
You must be signed in to change notification settings - Fork 243
Closed
Labels
Description
As discussed here: https://discourse.julialang.org/t/differentialequations-jl-and-systems-with-heterogenous-units/2952/4
The following example does not work:
function newton!(t, y, dy, μ)
r = norm(y[1:3])
dy[1:3] = y[4:6]
dy[4:6] = -μ * y[1:3] / r^3
end
function test2()
r0 = [1131.340, -2282.343, 6672.423]u"km"
v0 = [-5.64305, 4.30333, 2.42879]u"km/s"
Δt = 86400.0*365u"s"
mu = 398600.4418u"km^3/s^2"
rv0 = [r0; v0]
prob = ODEProblem((t, y, dy) -> newton!(t, y, dy, mu), rv0, (0.0u"s", Δt))
solve(prob, Vern8())[end]
end