| Crates.io | diffsol |
| lib.rs | diffsol |
| version | 0.10.3 |
| created_at | 2024-02-20 13:19:35.773893+00 |
| updated_at | 2026-01-23 15:27:54.828468+00 |
| description | A library for solving ordinary differential equations (ODEs) in Rust. |
| homepage | |
| repository | https://github.com/martinjrobins/diffsol |
| max_upload_size | |
| id | 1146390 |
| size | 1,635,149 |
Diffsol is a library for solving ordinary differential equations (ODEs) or semi-explicit differential algebraic equations (DAEs) in Rust. It can solve equations in the following form:
M \frac{dy}{dt} = f(t, y, p)
where $M$ is a (possibly singular and optional) mass matrix, $y$ is the state vector, $t$ is the time and $p$ is a vector of parameters.
The equations can be given by either rust code or the DiffSL Domain Specific Language (DSL). The DSL uses automatic differentiation using Enzyme to calculate the necessary jacobians, and JIT compilation (using either LLVM or Cranelift) to generate efficient native code at runtime. The DSL is ideal for using diffsol from a higher-level language like Python or R while still maintaining similar performance to pure rust.
You can add diffsol using cargo add diffsol or directly in your Cargo.toml:
[dependencies]
diffsol = "0.10"
Diffsol has the following features that can be enabled or disabled:
nalgebra: Use nalgebra for linear algebra containers and solvers (enabled by default).faer: Use faer for linear algebra containers and solvers (enabled by default).cuda: Use in-built CUDA linear algebra containers and solvers (disabled by default, experimental).diffsl-llvm15, diffsl-llvm16, diffsl-llvm17, diffsl-llvm18, diffsl-llvm19, diffsl-llvm20, diffsl-cranelift: Enable DiffSL with the specified JIT backend (disabled by default). You will need to set the LLVM_SYS_XXX_PREFIX (see llvm-sys) and LLVM_DIR environment variables to point to your LLVM installation, where XXX is the version number (150, 160, 170, 181, 191, 201, 211).suitesparse: Enable SuiteSparse KLU sparse linear solver (disabled by default, requires faer).You can add any of the above features by specifying them in your Cargo.toml. For example, to enable the diffsl-cranelift JIT backend, you would add:
[dependencies]
diffsol = { version = "0.10", features = "diffsl-cranelift" }
See the Cargo.toml documentation for more information on specifying features.
The diffsol book describes how to use diffsol using examples taken from several application areas (e.g. population dynamics, electrical circuits and pharmacological modelling), as well as more detailed information on the various APIs used to specify the ODE equations. For a more complete description of the API, please see the docs.rs API documentation.
For a quick start, see the following example of solving the Lorenz system of equations using the BDF solver and the DiffSL DSL with the LLVM JIT backend:
use diffsol::{LlvmModule, NalgebraLU, NalgebraMat, OdeBuilder, OdeSolverMethod};
pub fn lorenz() -> Result<(), Box<dyn std::error::Error>> {
let problem = OdeBuilder::<NalgebraMat<f64>>::new().build_from_diffsl::<LlvmModule>(
"
a { 14.0 } b { 10.0 } c { 8.0 / 3.0 }
u_i {
x = 1.0,
y = 0.0,
z = 0.0,
}
F_i {
b * (y - x);
x * (a - z) - y;
x * y - c * z;
}
",
)?;
let mut solver = problem.bdf::<NalgebraLU<f64>>()?;
let (_ys, _ts) = solver.solve(0.0)?;
Ok(())
}
The following ODE solvers are available in diffsol
All solvers feature:
Contributions are very welcome, as are bug reports! Please see the contributing guidelines for more information, but in summary:
Diffsol is designed to be easy to use from higher-level languages like Python or R. I'd prefer not to split my focus away from the core library, so I'm looking for developers who would like to lead the development of these wrappers. If you're interested, please get in touch.