Sampling transitions
... by direct simulation
These functions generate noise-induced transitions between an initial and final state.
CriticalTransitions.transition
— Methodtransition(
sys::CoupledSDEs,
x_i,
x_f;
rad_i,
rad_f,
tmax,
rad_dims,
cut_start,
kwargs...
) -> Tuple{Any, Any, Any}
Generates a sample transition from point x_i
to point x_f
.
This function simulates sys
in time, starting from initial condition x_i
, until entering a length(sys.u)
-dimensional ball of radius rad_f
around x_f
.
Keyword arguments
rad_i=0.1
: radius of ball aroundx_i
rad_f=0.1
: radius of ball aroundx_f
tmax=1e3
: maximum time when the simulation stops evenx_f
has not been reachedrad_dims=1:length(sys.u)
: the directions in phase space to consider when calculating the radiirad_i
andrad_f
. Defaults to all directions. To consider only a subspace of state space, insert a vector of indices of the dimensions to be included.cut_start=true
: iffalse
, returns the whole trajectory up to the transitionkwargs...
: keyword arguments passed toCommonSolve.solve
Output
[path, times, success]
path
(Matrix): transition path (size [dim × N], where N is the number of time points)times
(Vector): time values (since start of simulation) of the path points (size N)success
(bool): iftrue
, a transition occured (i.e. the ball aroundx_f
has been reached), elsefalse
See also transitions
, trajectory
.
CriticalTransitions.transitions
— Functionfunction transitions(sys::CoupledSDEs, x_i, x_f, N=1; kwargs...)
Generates an ensemble of N
transition samples of sys
from point x_i
to point x_f
.
This function repeatedly calls the transition
function to efficiently generate an ensemble of transitions. Multi-threading is enabled.
Keyword arguments
rad_i=0.1
: radius of ball aroundx_i
rad_f=0.1
: radius of ball aroundx_f
Nmax
: number of attempts before the algorithm stops even if less thanN
transitions occurred.tmax=1e3
: maximum time when the simulation stops evenx_f
has not been reachedrad_dims=1:length(sys.u)
: the directions in phase space to consider when calculating the radiirad_i
andrad_f
. Defaults to all directions. To consider only a subspace of state space, insert a vector of indices of the dimensions to be included.cut_start=true
: iffalse
, returns the whole trajectory up to the transitionshow_progress
: shows a progress bar with respect toNmax
kwargs...
: keyword arguments passed toCommonSolve.solve
See also transition
.
Output
[samples, times, idx, N_fail]
samples
(Array of Matrices): sample paths. Each path i has size (dim × Ni), where Ni is the number of path pointstimes
(Array of Vectors): time values (since simulation start) of path points for each pathidx
(Array): list of sample indices i that produced a transitionN_fail
(Int): number of samples that failed to produce a transition
An example script using
transitions
is available here.
... in pathspace
Coming soon...