package owl-ode
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=f15d895329d63329376421e260ae55483cf1b74d271cbce0a45ce05d20a7ea5f
sha512=22a50eaef16f6fbe0cba922a3b1727d3f2f920a2683ca7a518543b87e1a7e5bbfbba0de0f4bc40e709ce745fe308352d159a264522bec3e79bf929eb1590209b
doc/index.html
Library owl-ode
Owl_ode
is a lightweight package for numerically integrating ordinary differential equations written in the for of an initial value problem
$$\frac{dy}{dt} = f(y,t)$$
$$y(t_0) = y_0$$
Here t is a one-dimensional independent variable (time), \(y(t)\) is an n-dimensional vector-valued function (state), and the n-dimensional vector-valued function \(f(y, t)\) determines the differential equations.
The goal is to find \(y(t)\) approximately satisfying the differential equations, given an initial value \(y(t_0)=y_0\).
Built on top of Owl’s numerical library, Owl_ode was designed with extensibility and ease of use in mind and includes a number of classic ode solvers (e.g. Euler and Runge-Kutta, in both adaptive and fixed-step variants) and symplectic solvers (e.g. Leapfrog), with more to come.
This library provides a collection of solvers for the initial value problem for ordinary differential equation systems.
A tutorial is available at the Tutorial page.
The entry point of this library is the module: Owl_ode.Ode
.
This library builds on top of the Owl_ode_base
library, which provides the generic, functorised, underlying implementation.
Some important modules
Owl_ode.Ode
Owl_ode.Types
The Types module provides some common types for Owl_ode ODEs integrators.Owl_ode.Native
Owl_ode.Symplectic