You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I use get_periodic_orbits and getperiod to get the periodic orbit and period of my system, given a specific set of parameters?
function F!(du, u, p, t)
x, y = u
@unpack ω1, ω2 = p
du[1] = ω1 * y
du[2] = -ω2 * x
end
@with_kw mutable struct Params
ω1::Float64 = 2pi
ω2::Float64 = 2pi
end
par = Params()
u0 = [0., 1.]
The text was updated successfully, but these errors were encountered:
How can I use
get_periodic_orbits
andgetperiod
to get the periodic orbit and period of my system, given a specific set of parameters?The text was updated successfully, but these errors were encountered: