Skip to content

Conversation

oameye
Copy link
Member

@oameye oameye commented Jan 2, 2025

Eventually, I would like to try the OrdinaryDiffEq integrator interface, by iterating over the SciMLBase.Integrator

using OrdinaryDiffEq, DynamicalSystemsBase

# Linear ODE which starts at 0.5 and solves from t=0.0 to t=1.0
function b(u::Matrix, p, t)
    1.01*u
end
initu = ones(2,100)
prob = ODEProblem{false}(b, initu, (0.0, Inf))
ds = CoupledODEs(prob)
ds.integ
step!(ds.integ, 0.1)
ds.integ

@oameye oameye marked this pull request as draft January 4, 2025 13:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant