martinjrobins / diffsol

ODE solver library in Rust
https://martinjrobins.github.io/diffsol/
MIT License
24 stars 3 forks source link
bdf dsl jacobian mass-matrix ode ode-integrator ode-solver runge-kutta rust scientific-computing solver sparse-matrix
docs.rs badge CI build status badge

DiffSol

Diffsol is a library for solving ordinary differential equations (ODEs) or semi-explicit differential algebraic equations (DAEs) in Rust. You can use it out-of-the-box with vectors and matrices from the nalgebra or faer crates, or you can implement your own types by implementing the various vector and matrix traits in diffsol.

Features

DiffSol implements the following solvers:

All solvers feature:

For comparison, the BDF solvers are similar to MATLAB's ode15s solver, the bdf solver in SciPy's solve_ivp function, or the BDF solver in SUNDIALS. The ESDIRK solver using the provided tr_bdf2 tableau is similar to MATLAB's ode23t solver.

Users can specify the equations to solve in the following ODE form, either using closures or the DiffSL Domain Specific Language (DSL):

M \frac{dy}{dt} = f(t, y, p)

where $M$ is a (possibly singular) mass matrix, $y$ is the state vector, $t$ is the time, $p$ is a vector of parameters, and $f$ is the right-hand side function. The mass matrix $M$ is optional (assumed to be the identity matrix if not provided).

Installation

See instructions on the crates.io page.

Usage

For more documentation and examples, see the API documentation.