DifferentialEquations.jl Documentation
DifferentialEquations.jl is a package for numerically solving differential equations using the various components of JuliaDiffEq. The purpose of this package is to supply efficient Julia implementations of solvers for various differential equations. Equations within the realm of this package include discrete equations (function maps, discrete stochastic simulations like Gillespie/Markov models), ordinary differential equations (ODEs), stochastic ordinary differential equations (SODEs or SDEs), stochastic partial differential equations (SPDEs), partial differential equations (with both finite difference and finite element methods), differential algebraic equations (DAEs), and differential delay equations (DDEs). The well-optimized DifferentialEquations solvers benchmark as the fastest Julia implementations, using classic algorithms and ones from recent research, and include algorithms optimized for high-precision and HPC applications. It integrates with the Julia package sphere, for example using Juno's progress meter, automatic plotting, built-in interpolations, and wraps other differential equation solvers so that many different methods for solving the equations can be accessed by simply switching a keyword argument. It utilizes Julia's generality to be able to solve problems specified with arbitrary number types (types with units like Unitful, and arbitrary precision numbers like BigFloats and ArbFloats), arbitrary sized arrays (ODEs on matrices), and more. This gives a powerful mixture of speed and productivity features to help you solve and analyze your differential equations faster.
If you have any questions, or just want to chat about solvers/using the package, please feel free to use the Gitter channel. For bug reports, feature requests, etc., please submit an issue. If you're interested in contributing, please see the Developer Documentation.
Supporting and Citing
The software in this ecosystem was developed as part of academic research. If you would like to help support it, please star the repository as such metrics may help us secure funding in the future. If you use JuliaDiffEq software as part of your research, teaching, or other activities, we would be grateful if you could cite our work. Please see our citation page for guidelines.
Using the Package
To install the package, use the following command inside the Julia REPL:
Pkg.add("DifferentialEquations")
To load the package, use the command:
using DifferentialEquations
The command Pkg.add("DifferentialEquations")
will add solvers and dependencies for all kind of Differential Equations (e.g. ODEs or SDEs etc., see the Supported Equations section below). If you are interested in only one type of equation solvers of DifferentialEquations.jl
or simply want a more lightweight version, see the Low Dependency Usage page.
To understand the package in more detail, check out the following tutorials in this manual. Example IJulia notebooks can also be found in DiffEqTutorials.jl. If you find any example where there seems to be an error, please open an issue.
For the most up to date information on using the package, please join the Gitter channel.
Using the bleeding edge for the latest features and development is only recommended for power users. Information on how to get to the bleeding edge is found in the developer documentation.
Supported Equations
For PDEs, one can optionally specify a noise equation. The solvers currently have stochastic variants for handling Gaussian Space-time white noise SPDEs.
Discrete Equations (function maps, discrete stochastic (Gillespie/Markov) simulations)
Ordinary Differential Equations (ODEs)
Split and Partitioned ODEs (Symplectic integrators, IMEX Methods)
Stochastic Differential Equations (SDEs)
Random Differential Equations (RDEs)
Algebraic Differential Equations (DAEs)
Delay Differential Equations (DDEs)
(Stochastic) Partial Differential Equations ((S)PDEs):
Linear Poisson Equation
Semi-linear Poisson Equation
Linear Heat Equation
Semi-linear Heat Equation (aka Reaction-Diffusion Equation)
Stationary Stokes Equation
For help with choosing a solver algorithm, please see the solver options pages.
IJulia Notebook Tutorials
You can access extra tutorials supplied in the DiffEqTutorials.jl repository. If you have IJulia installed, you can view them locally and interactively, by cloning the repository:
#Pkg.add("IJulia") # Need to do this the first time to install IJulia!
Pkg.clone("https://github.com/JuliaDiffEq/DiffEqTutorials.jl")
using IJulia
notebook(dir = Pkg.dir("DiffEqTutorials"))
Tutorials
The following tutorials will introduce you to the functionality of DifferentialEquations.jl. More examples can be found by checking out the IJulia notebooks in the examples folder.
- Ordinary Differential Equations
- Stochastic Differential Equations
- Delay Differential Equations
- Differential Algebraic Equations
- Discrete Stochastic (Gillespie) Equations
- Defining a Model using Reactions
- Building and Solving the Problem
- Defining the Jumps Directly
- Adding Jumps to a Differential Equation
- Adding a VariableRateReaction
- Jump Diffusion Equations
- Poisson Equation Finite Element Method
- Heat Equation Finite Element Method
- Stochastic Finite Element Method
Basics
These pages introduce you to the core of DifferentialEquations.jl and the common interface. It explains the general workflow, options which are generally available, and the general tools for analysis.
- Overview of DifferentialEquations.jl
- Defining Problems
- Solving the Problems
- Analyzing the Solution
- Add-on Tools
- Development and Testing Tools
- Common Solver Options
- Default Algorithm Hinting
- Output Control
- Stepsize Control
- Miscellaneous
- Progress Monitoring
- User Data
- Error Calculations
- Examples
- Solution Handling
- Accessing the Values
- Array Interface
- Interpolations
- Comprehensions
- Special Fields
- Return Codes (RetCodes)
- Problem-Specific Features
- Plot Functions
- Integrator Interface
- Solver Compatibility Chart
Equation Types
These pages describe building the problem types to define differential equations for the solvers, and the special features of the different solution types.
- Discrete Types
- Mathematical Specification of a Discrete Problem
- Problem Type
- Special Solver Options
- Special Solution Fields
- ODE Types
- Mathematical Specification of an ODE Problem
- Problem Type
- Special Solver Options
- Special Solution Fields
- Example Problems
- Refined ODE Types
- Mathematical Specification of a Split ODE Problem
- Mathematical Specification of a Partitioned ODE Problem
- Mathematical Specification of an Second Order ODE Problem
- Mathematical Specification of a Constrained ODE Problem
- Mathematical Specification of a Split Constrained ODE Problem
- Mathematical Specification of a Partitioned Constrained ODE Problem
- Steady State Types
- Mathematical Specification of a Steady State Problem
- Problem Type
- Special Solver Options
- Special Solution Fields
- SDE Types
- Mathematical Specification of a SDE Problem
- Problem Type
- Special Solver Options
- Special Solution Fields
- Example Problems
- RODE Types
- DDE Types
- Mathematical Specification of a DDE Problem
- Problem Type
- Special Solver Options
- Special Solution Fields
- DAE Types
- Mathematical Specification of an DAE Problem
- Problem Type
- Special Solver Options
- Special Solution Fields
- Example Problems
- Refined DAE Types
- Mathematical Specification of a Split DAE Problem
- Mathematical Specification of a Partitioned ODE Problem
- Jump Types
- FEM Types
Solver Algorithms
These pages describe the solvers and available algorithms in detail.
- Discrete Solvers
- ODE Solvers
- Refined ODE Solvers
- Steady State Solvers
- SDE Solvers
- RODE Solvers
- DDE Solvers
- DAE Solvers
- FEM Poisson Solvers
- FEM Heat Solvers
Additional Features
These sections discuss extra performance enhancements, event handling, and other in-depth features.
- Performance Overloads
- DiffEq-Specific Array Types
- Noise Processes
- Specifying (Non)Linear Solvers
- Event Handling and Callback Functions
- Introduction to Callback Functions
- The Callback Types
- Using Callbacks
- DiscreteCallback Examples
- ContinuousCallback Examples
- Callback Library
- Parallel Monte Carlo Simulations
- Low Dependency Usage
- Meshes
- Juno Progress Bar Integration
Analysis Tools
Because DifferentialEquations.jl has a common interface on the solutions, it is easy to add functionality to the entire DiffEq ecosystem by developing it to the solution interface. These pages describe the add-on analysis tools which are available.
- ParameterizedFunctions
- Transforming User-Defined Functions to ParameterizedFunctions
- Function Definition Macros
- Extra Features
- Extra Little Tricks
- Extra Optimizations
- Finite Element Method Macros
- Parameter Estimation
- Bifurcation Analysis
- Sensitivity Analysis
- Uncertainty Quantification
- ProbInts
- Example 2: Adaptive ProbInts on FitzHugh-Nagumo
- Example 3: Adaptive ProbInts on the Lorenz Attractor
- Algorithm Development and Testing
Modeling Tools
While DifferentialEquations.jl can be used to directly build any differential or difference equation (/ discrete stochastic) model, in many cases it can be helpful to have a tailored-built API for making certain types of common models easier. This is provided by the modeling functionality.