OrdinaryDiffEq.jl

OrdinaryDiffEq.jl is a component package in the DifferentialEquations ecosystem. It holds the core ordinary differential equation solvers and utilities. While completely independent and usable on its own, users interested in using this functionality should check out DifferentialEquations.jl.

Installation

Assuming that you already have Julia correctly installed, it suffices to import OrdinaryDiffEq.jl in the standard way:

import Pkg;
Pkg.add("OrdinaryDiffEq");
OrdinaryDiffEqModule
OrdinaryDiffEq

OrdinaryDiffEq.jl provides ordinary differential-equation solvers and the common SciML interfaces needed to construct and solve ODE, DAE, and ensemble problems. Solver-author extension points are documented separately in the developer API.

See the package documentation for installation instructions, solver selection, and the user-facing API.