Skip to content

Commit

Permalink
Update propagate_lyap
Browse files Browse the repository at this point in the history
  • Loading branch information
PerezHz committed Aug 9, 2024
1 parent a8c2a91 commit db2074f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/propagation/propagation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ function propagate_lyap(dynamics::D, jd0::V, tspan::T, q0::Vector{U},
tlim = minmax(_jd0_, _jd0_ + tspan * yr) .- JD_J2000
buffer = PropagationBuffer(dynamics, jd0, tlim, q0, params)
# Propagate orbit
@time tv, xv, λv = lyap_taylorinteg(dynamics, q0, zero(T), tspan * yr, params.order,
@time sol = lyap_taylorinteg(dynamics, q0, zero(T), tspan * yr, params.order,
params.abstol, buffer.params; maxsteps = params.maxsteps, parse_eqs = params.parse_eqs)

return tv, xv, λv
end
return sol.t, sol.x, sol.λ
end

0 comments on commit db2074f

Please sign in to comment.