SDE Problems
SciMLBase.SDEProblem
— TypeDefines an stochastic differential equation (SDE) problem. Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/sde_types/
Mathematical Specification of a SDE Problem
To define an SDE Problem, you simply need to give the forcing function f
, the noise function g
, and the initial condition u₀
which define an SDE:
\[du = f(u,p,t)dt + Σgᵢ(u,p,t)dWⁱ\]
f
and g
should be specified as f(u,p,t)
and g(u,p,t)
respectively, and u₀
should be an AbstractArray whose geometry matches the desired geometry of u
. Note that we are not limited to numbers or vectors for u₀
; one is allowed to provide u₀
as arbitrary matrices / higher dimension tensors as well. A vector of g
s can also be defined to determine an SDE of higher Ito dimension.
Problem Type
Wraps the data which defines an SDE problem
\[u = f(u,p,t)dt + Σgᵢ(u,p,t)dWⁱ\]
with initial condition u0
.
Constructors
SDEProblem(f::SDEFunction,u0,tspan,p=NullParameters();noise=WHITE_NOISE,noise_rate_prototype=nothing)
SDEProblem{isinplace,specialize}(f,g,u0,tspan,p=NullParameters();noise=WHITE_NOISE,noise_rate_prototype=nothing)
: Defines the SDE with the specified functions. The default noise isWHITE_NOISE
.isinplace
optionally sets whether the function is inplace or not. This is determined automatically, but not inferred.specialize
optionally controls the specialization level. See the specialization levels section of the SciMLBase documentation for more details. The default is `AutoSpecialize.
Parameters are optional, and if not given then a NullParameters()
singleton will be used which will throw nice errors if you try to index non-existent parameters. Any extra keyword arguments are passed on to the solvers. For example, if you set a callback
in the problem, then that callback
will be added in every solve call.
For specifying Jacobians and mass matrices, see the DiffEqFunctions page.
Fields
f
: The drift function in the SDE.g
: The noise function in the SDE.u0
: The initial condition.tspan
: The timespan for the problem.p
: The optional parameters for the problem. Defaults toNullParameters
.noise
: The noise process applied to the noise upon generation. Defaults to Gaussian white noise. For information on defining different noise processes, see the noise process documentation page.noise_rate_prototype
: A prototype type instance for the noise rates, that is the outputg
. It can be any type which overloadsA_mul_B!
with itself being the middle argument. Commonly, this is a matrix or sparse matrix. If this is not given, it defaults tonothing
, which means the problem should be interpreted as having diagonal noise.kwargs
: The keyword arguments passed onto the solves.
Example Problems
Examples problems can be found in DiffEqProblemLibrary.jl.
To use a sample problem, such as prob_sde_linear
, you can do something like:
#] add SDEProblemLibrary
using SDEProblemLibrary
prob = SDEProblemLibrary.prob_sde_linear
sol = solve(prob)
SciMLBase.SDEFunction
— TypeDocStringExtensions.TypeDefinition()
A representation of an SDE function f
, defined by:
\[M du = f(u,p,t)dt + g(u,p,t) dW\]
and all of its related functions, such as the Jacobian of f
, its gradient with respect to time, and more. For all cases, u0
is the initial condition, p
are the parameters, and t
is the independent variable.
Constructor
SDEFunction{iip,specialize}(f,g;
mass_matrix = __has_mass_matrix(f) ? f.mass_matrix : I,
analytic = __has_analytic(f) ? f.analytic : nothing,
tgrad= __has_tgrad(f) ? f.tgrad : nothing,
jac = __has_jac(f) ? f.jac : nothing,
jvp = __has_jvp(f) ? f.jvp : nothing,
vjp = __has_vjp(f) ? f.vjp : nothing,
ggprime = nothing,
jac_prototype = __has_jac_prototype(f) ? f.jac_prototype : nothing,
sparsity = __has_sparsity(f) ? f.sparsity : jac_prototype,
paramjac = __has_paramjac(f) ? f.paramjac : nothing,
colorvec = __has_colorvec(f) ? f.colorvec : nothing,
sys = __has_sys(f) ? f.sys : nothing)
Note that both the function f
and g
are required. This function should be given as f!(du,u,p,t)
or du = f(u,p,t)
. See the section on iip
for more details on in-place vs out-of-place handling.
All of the remaining functions are optional for improving or accelerating the usage of f
. These include:
mass_matrix
: the mass matrixM
represented in the ODE function. Can be used to determine that the equation is actually a differential-algebraic equation (DAE) ifM
is singular. Note that in this case special solvers are required, see the DAE solver page for more details: https://docs.sciml.ai/DiffEqDocs/stable/solvers/dae_solve/. Must be an AbstractArray or an AbstractSciMLOperator.analytic(u0,p,t)
: used to pass an analytical solution function for the analytical solution of the ODE. Generally only used for testing and development of the solvers.tgrad(dT,u,p,t)
or dT=tgrad(u,p,t): returns $\frac{\partial f(u,p,t)}{\partial t}$jac(J,u,p,t)
orJ=jac(u,p,t)
: returns $\frac{df}{du}$jvp(Jv,v,u,p,t)
orJv=jvp(v,u,p,t)
: returns the directional derivative $\frac{df}{du} v$vjp(Jv,v,u,p,t)
orJv=vjp(v,u,p,t)
: returns the adjoint derivative $\frac{df}{du}^\ast v$ggprime(J,u,p,t)
orJ = ggprime(u,p,t)
: returns the Milstein derivative $\frac{dg(u,p,t)}{du} g(u,p,t)$jac_prototype
: a prototype matrix matching the type that matches the Jacobian. For example, if the Jacobian is tridiagonal, then an appropriately sizedTridiagonal
matrix can be used as the prototype and integrators will specialize on this structure where possible. Non-structured sparsity patterns should use aSparseMatrixCSC
with a correct sparsity pattern for the Jacobian. The default isnothing
, which means a dense Jacobian.paramjac(pJ,u,p,t)
: returns the parameter Jacobian $\frac{df}{dp}$.colorvec
: a color vector according to the SparseDiffTools.jl definition for the sparsity pattern of thejac_prototype
. This specializes the Jacobian construction when using finite differences and automatic differentiation to be computed in an accelerated manner based on the sparsity pattern. Defaults tonothing
, which means a color vector will be internally computed on demand when required. The cost of this operation is highly dependent on the sparsity pattern.
iip: In-Place vs Out-Of-Place
For more details on this argument, see the ODEFunction documentation.
specialize: Controlling Compilation and Specialization
For more details on this argument, see the ODEFunction documentation.
Fields
The fields of the ODEFunction type directly match the names of the inputs.
Solution Type
SDEProblem
solutions return an RODESolution
. For more information, see the RODE problem definition page for the RODESolution
docstring.
Alias Specifier
SciMLBase.SDEAliasSpecifier
— TypeHolds information on what variables to alias when solving an SDEProblem. Conforms to the AbstractAliasSpecifier interface. SDEAliasSpecifier(;alias_p = nothing, alias_f = nothing, alias_u0 = nothing, alias_tstops = nothing, alias = nothing)
When a keyword argument is nothing
, the default behaviour of the solver is used.
Keywords
alias_p::Union{Bool, Nothing}
alias_f::Union{Bool, Nothing}
alias_u0::Union{Bool, Nothing}
: alias the u0 array. Defaults to false .alias_tstops::Union{Bool, Nothing}
: alias the tstops arrayalias_jumps::Union{Bool, Nothing}
: alias jump process if wrapped in a JumpProcessalias::Union{Bool, Nothing}
: sets all fields of theSDEAliasSpecifier
toalias
Example Problems
Examples problems can be found in DiffEqProblemLibrary.jl.
To use a sample problem, such as prob_sde_linear
, you can do something like:
#] add DiffEqProblemLibrary
using DiffEqProblemLibrary.SDEProblemLibrary
# load problems
SDEProblemLibrary.importsdeproblems()
prob = SDEProblemLibrary.prob_sde_linear
sol = solve(prob)
SDEProblemLibrary.prob_sde_linear
— Constant\[du_t = αudt + βudW_t\]
where $α=1.01$, $β=0.87$, and initial condition $u_0=1/2$, with solution
\[u(u_0,p,t,W_t)=u_0\exp((α-\frac{β^2}{2})t+βW_t)\]
SDEProblemLibrary.prob_sde_2Dlinear
— Constant8 linear SDEs (as a 4x2 matrix):
\[du_t = αudt + βudW_t\]
where $α=1.01$, $β=0.87$, and initial condition $u_0=\frac{1}{2}$ with solution
\[u(u_0,p,t,W_t)=u_0\exp((α-\frac{β^2}{2})t+βW_t)\]
SDEProblemLibrary.prob_sde_wave
— Constant\[du_t = -\frac{1}{100}\sin(u)\cos^3(u)dt + \frac{1}{10}\cos^{2}(u_t) dW_t\]
and initial condition $u_0=1$ with solution
\[u(u_0,p,t,W_t)=\arctan(\frac{W_t}{10} + \tan(u_0))\]
SDEProblemLibrary.prob_sde_lorenz
— ConstantLorenz Attractor with additive noise
\[dx = σ(y-x)dt + αdW_t\]
\[dy = (x(ρ-z) - y)dt + αdW_t\]
\[dz = (xy - βz)dt + αdW_t\]
with $σ=10$, $ρ=28$, $β=8/3$, $α=3.0$ and initial condition $u_0=[1;1;1]$.
SDEProblemLibrary.prob_sde_cubic
— Constant\[du_t = \frac{1}{4}u(1-u^2)dt + \frac{1}{2}(1-u^2)dW_t\]
and initial condition $u_0=\frac{1}{2}$, with solution
\[u(u0,p,t,W_t)=\frac{(1+u_0)\exp(W_t)+u)0-1}{(1+u_0)\exp(W_t)+1-u_0}\]
SDEProblemLibrary.prob_sde_additive
— ConstantAdditive noise problem
\[u_t = (\frac{β}{\sqrt{1+t}}-\frac{1}{2(1+t)}u_t)dt + \frac{αβ}{\sqrt{1+t}}dW_t\]
and initial condition $u_0=1$ with $α=0.1$ and $β=0.05$, with solution
\[u(u_0,p,t,W_t)=\frac{u_0}{\sqrt{1+t}} + \frac{β(t+αW_t)}{\sqrt{1+t}}\]
SDEProblemLibrary.prob_sde_additivesystem
— ConstantA multiple dimension extension of additiveSDEExample
SDEProblemLibrary.prob_sde_nltest
— ConstantRunge–Kutta methods for numerical solution of stochastic differential equations Tocino and Ardanuy
SDEProblemLibrary.oval2ModelExample
— Functionoval2ModelExample(;largeFluctuations=false,useBigs=false,noiseLevel=1)
A function which generates the Oval2 Epithelial-Mesenchymal Transition model from:
Rackauckas, C., & Nie, Q. (2017). Adaptive methods for stochastic differential equations via natural embeddings and rejection sampling with memory. Discrete and continuous dynamical systems. Series B, 22(7), 2731.
19 SDEs which are only stiff during transitions between biological states.
SDEProblemLibrary.prob_sde_stiffquadstrat
— ConstantThe composite Euler method for stiff stochastic differential equations
Kevin Burrage, Tianhai Tian
And
S-ROCK: CHEBYSHEV METHODS FOR STIFF STOCHASTIC DIFFERENTIAL EQUATIONS
ASSYR ABDULLE AND STEPHANE CIRILLI
Stiffness of Euler is determined by α+β²<1 Higher α or β is stiff, with α being deterministic stiffness and β being noise stiffness (and grows by square).
SDEProblemLibrary.prob_sde_stiffquadito
— ConstantThe composite Euler method for stiff stochastic differential equations
Kevin Burrage, Tianhai Tian
And
S-ROCK: CHEBYSHEV METHODS FOR STIFF STOCHASTIC DIFFERENTIAL EQUATIONS
ASSYR ABDULLE AND STEPHANE CIRILLI
Stiffness of Euler is determined by α+β²<1 Higher α or β is stiff, with α being deterministic stiffness and β being noise stiffness (and grows by square).
SDEProblemLibrary.generate_stiff_stoch_heat
— FunctionStochastic Heat Equation with scalar multiplicative noise
S-ROCK: CHEBYSHEV METHODS FOR STIFF STOCHASTIC DIFFERENTIAL EQUATIONS
ASSYR ABDULLE AND STEPHANE CIRILLI
Raising D or k increases stiffness
SDEProblemLibrary.prob_sde_bistable
— ConstantBistable chemical reaction network with a semi-stable lower state.
SDEProblemLibrary.prob_sde_bruss
— ConstantStochastic Brusselator
SDEProblemLibrary.prob_sde_oscilreact
— ConstantAn oscillatory chemical reaction system