Utility functions
CoupledSDEs
utility functions
CriticalTransitions.covariance_matrix
— Functioncovariance_matrix(ds::CoupledSDEs)
Returns the covariance matrix of the stochastic term of the CoupledSDEs
ds
, provided that the diffusion function g
can be expressed as a constant invertible matrix. If this is not the case, returns nothing
.
See also diffusion_matrix
.
CriticalTransitions.diffusion_matrix
— Functiondiffusion_matrix(ds::CoupledSDEs)
Returns the diffusion matrix of the stochastic term of the CoupledSDEs
ds
, provided that the diffusion function g
can be expressed as a constant invertible matrix. If this is not the case, returns nothing
.
Note: The diffusion matrix $Σ$ is the square root of the noise covariance matrix $Q$ (see covariance_matrix
), defined via the Cholesky decomposition $Q = Σ Σ^\top$.
DynamicalSystemsBase.dynamic_rule
— Functiondynamic_rule(ds::DynamicalSystem) → f
Return the dynamic rule of ds
. This is never mutated and is set when initializing ds
.
CriticalTransitions.noise_process
— Functionnoise_process(sys::CoupledSDEs) -> Any
Fetches the stochastic process $\mathcal{N}$ specified in the intergrator of sys
. Returns the type DiffEqNoiseProcess.NoiseProcess
.
DynamicalSystemsBase.current_state
— Functioncurrent_state(ds::DynamicalSystem) → u::AbstractArray
Return the current state of ds
. This state is mutated when ds
is mutated. See also initial_state
, observe_state
.
DynamicalSystemsBase.set_state!
— Functionset_state!(ds::DynamicalSystem, u::AbstractArray{<:Real})
Set the state of ds
to u
, which must match dimensionality with that of ds
. Also ensure that the change is notified to whatever integration protocol is used.
set_state!(ds::DynamicalSystem, value::Real, i) → u
Set the i
th variable of ds
to value
. The index i
can be an integer or a symbolic-like index for systems that reference a ModelingToolkit.jl model. For example:
i = :x # or `1` or `only(@variables(x))`
set_state!(ds, 0.5, i)
Warning: this function should not be used with derivative dynamical systems such as Poincare/stroboscopic/projected dynamical systems. Use the method below to manipulate an array and give that to set_state!
.
set_state!(u::AbstractArray, value, index, ds::DynamicalSystem)
Modify the given state u
and leave ds
untouched.
set_state!(ds::DynamicalSystem, mapping::AbstractDict)
Convenience version of set_state!
that iteratively calls set_state!(ds, val, i)
for all index-value pairs (i, val)
in mapping
. This is useful primarily in two cases:
- to partially set only some state variables,
- to set variables by name (if the system is created via ModelingToolkit.jl)
so that you don't have to keep track of the order of the dynamic variables.
CriticalTransitions.drift
— Functiondrift(sys::CoupledSDEs{IIP}, x; t) -> Any
Returns the deterministic drift $f(x)$ of the CoupledSDEs sys
at state x
. For time-dependent systems, the time can be specified as a keyword argument t
(by default t=0
).
CriticalTransitions.div_drift
— Functiondiv_drift(sys::CoupledSDEs, x; t) -> Any
Computes the divergence of the drift field $f(x)$ at state x
. For time- dependent systems, the time can be specified as a keyword argument t
(by default t=0
).