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.
DiffSol implements the following solvers:
tr_bdf2
or esdirk34
).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).
See instructions on the crates.io page.
For more documentation and examples, see the API documentation.