API
These are the full docstrings for TransitionPathTheory.jl.
Index
TransitionPathTheory.Connectivity
TransitionPathTheory.Disconnected
TransitionPathTheory.HomogeneousTPTProblem
TransitionPathTheory.NonStochastic
TransitionPathTheory.Stochastic
TransitionPathTheory.Stochasticity
TransitionPathTheory.StronglyConnected
TransitionPathTheory.SubStochastic
TransitionPathTheory.SuperStochastic
TransitionPathTheory.TPTProblem
TransitionPathTheory.TransitionMatrix
TransitionPathTheory.WeaklyConnected
TransitionPathTheory.backward_committor
TransitionPathTheory.current2arrows
TransitionPathTheory.forward_committor
TransitionPathTheory.hitting_location_distribution
TransitionPathTheory.nonstationary_statistics
TransitionPathTheory.remaining_time
TransitionPathTheory.stationary_distribution
TransitionPathTheory.stationary_statistics
TransitionPathTheory.Ω
TransitionPathTheory.ℬ
TransitionPathTheory.ℬ_true
TransitionPathTheory.𝒜
TransitionPathTheory.𝒜_true
TransitionPathTheory.𝒞
TransitionPathTheory.𝒫
TransitionPathTheory.𝒫_backwards
TransitionPathTheory.𝒫_plus
TransitionPathTheory.𝒮
TransitionPathTheory.𝒮_plus
Functions
TransitionPathTheory.backward_committor
— Methodbackward_committor(tpt)
Compute the backward committor.
TransitionPathTheory.current2arrows
— Methodcurrent2arrows(f, x, y; excluded = nothing)
Compute forward current vectors in a 2D physical space.
Return (u, v)
where u[i]
and v[i]
are the x
and y
components of vector centered at (x, y)
and pointing in the direction of the weighted average by f[i,:]
of each other point.
Arguments
f
:forward_current
computed fromstationary_statistics
.x
: AVector
of points[x1, x2, ...]
y
: AVector
of points[y1, y2, ...]
Optional Arguments
excluded
: If aVector{<:Integer}
is provided, rows and columns corresponding to them are excluded fromf
. Whenexcluded === nothing
, the last index off
is excluded automatically.
TransitionPathTheory.forward_committor
— Methodforward_committor(tpt)
Compute the forward committor.
TransitionPathTheory.hitting_location_distribution
— Methodhitting_location_distribution(tpt)
Compute the distribution of target-hitting locations.
Return a matrix R
such that R[i, j]
is the probability that - starting in state i
- the first visit to B
occurs in state j
. Note that R[i, j] == 0
for all j ∉ B
.
TransitionPathTheory.nonstationary_statistics
— Methodnonstationary_statistics(tpt, horizon; B_to_S::Symbol = :interior, initial_dist = :stat)
Compute and return the following statistics in a NamedTuple
:
density
reactive_density
tAB_cdf
Arguments
tpt
: TheTPTProblem
.horizon
: The time step at which to cut off the calculation. Note that thehorizon
value does NOT enforce that trajectories leaving A hit B by that time.
Optional Arguments
initial_dist
: ASymbol
determining how the initial distribution inside𝒜
has calculated.:stat
: The initial distribution is equal to stationary distribution of𝒫(tpt)
restricted𝒜
.:uniform
: A uniform distribution supported on𝒜
.
TransitionPathTheory.remaining_time
— Methodremaining_time(tpt)
Compute the remaining time, aka the lead time.
TransitionPathTheory.stationary_distribution
— Methodstationary_distribution(tpt)
Compute the stationary distribution of tpt.transition_matrix.P
.
Errors when P
is not strongly connected.
TransitionPathTheory.stationary_statistics
— Methodstationary_statistics(tpt)
Compute and return the following statistics in a NamedTuple
:
stationary_distribution
forward_committor
backward_committor
reactive_density
reactive_current
forward_current
reactive_rate
reactive_time
remaining_time
hitting_location_distribution
TransitionPathTheory.Ω
— MethodΩ(tpt)
Return the set of avoided states.
TransitionPathTheory.ℬ
— Methodℬ(tpt)
Return tpt.target
.
TransitionPathTheory.ℬ_true
— Methodℬ_true(tpt)
Return the set of states that are members of the target
, but are not avoided.
TransitionPathTheory.𝒜
— Method𝒜(tpt)
Return tpt.source
.
TransitionPathTheory.𝒜_true
— Method𝒜_true(tpt)
Return the set of states that are members of the source
, but are not avoided.
TransitionPathTheory.𝒞
— Method𝒞(tpt)
Return the set of states that are not in the source or target.
TransitionPathTheory.𝒫
— Method𝒫(tpt)
Return tpt.transition_matrix.P
.
TransitionPathTheory.𝒫_backwards
— Method𝒫_backwards(tpt)
Compute the "backwards" transition matrix; return a Matrix
.
TransitionPathTheory.𝒫_plus
— Method𝒫_plus(tpt)
The forward-reactive analogue of 𝒫
.
TransitionPathTheory.𝒮
— Method𝒮(tpt)
Return all possible indices implied by the transition matrix, i.e. 1:size(P, 1)
.
TransitionPathTheory.𝒮_plus
— Method𝒮_plus(tpt)
The set of indices i
such that
- if
i
is inB_true
, theni
is inS_plus
- if
i
is outsideB_true
, theni
is inS_plus
if bothq_minus[i] > 0.0
sum(P[i, j]*qp[j] for j in sets.S) > 0.0
Intuitively: i
is either in B_true
, or could have come from A_true
and is connected to a state that is reactively connected to B
.
Types
TransitionPathTheory.Connectivity
— Typeabstract type Connectivity
Supertype for all transition matrix connectivity types.
TransitionPathTheory.Disconnected
— Typestruct Disconnected
A Connectivity
such that the directed graph implied by the transition matrix is disconnected.
TransitionPathTheory.HomogeneousTPTProblem
— Typestruct HomogeneousTPTProblem
A TPTProblem
where the transition matrix is homogeneous, i.e. time-independent.
Fields
transition_matrix
: ATransitionMatrix
.source
: A vector of indices defining the TPT source, akaA
.target
: A vector of indices defining the TPT target, akaB
.
Constructor
HomogeneousTPTProblem(P, source, target; avoid = Int64[])
Build a HomogeneousTPTProblem
where each argument of the constructor maps to the corresponding field.
Optional Arguments
avoid
: Indices provided here will be appended to bothA
andB
and will hence be avoided by transition path theory.
TransitionPathTheory.NonStochastic
— Typestruct NonStochastic
A Stochasticity
such that the row sums of the transition matrix are incomparable to 1.
TransitionPathTheory.Stochastic
— Typestruct Stochastic
A Stochasticity
such that the row sums of the transition matrix are all equal to 1.
TransitionPathTheory.Stochasticity
— Typeabstract type Stochasticity
Supertype for all transition matrix stochasticity types.
TransitionPathTheory.StronglyConnected
— Typestruct StronglyConnected
A Connectivity
such that the directed graph implied by the transition matrix is strongly connected.
TransitionPathTheory.SubStochastic
— Typestruct SubStochastic
A Stochasticity
such that the row sums of the transition matrix are all strictly less than 1.
TransitionPathTheory.SuperStochastic
— Typestruct SuperStochastic
A Stochasticity
such that the row sums of the transition matrix are all strictly greater than 1.
TransitionPathTheory.TPTProblem
— Typeabstract type TPTProblem
Supertype for all TPT problems.
TransitionPathTheory.TransitionMatrix
— Typestruct TransitionMatrix{S, C}
A transition probability matrix with Stochasticity
S
and Connectivity
C
.
Fields
P
: The transition probabilityMatrix
itself.stochasticity
:S
connectivity
:C
Constructors
TransitionMatrix(P_size; n_zeros = 0, normalize = true, seed = 1234)
Construct a randomly generated transition matrix.
Arguments
P_size
: The number of rows (== columns) of the matrix.
Optional Arguments
n_zeros
: This many zeros will be placed in the matrix at random. If this results in a row of the matrix having all zeros, a1
will be placed randomly in that row.normalize
: Whether to normalize the row sums of the resulting matrix.seed
: A seed for reproducible randomness.
TransitionMatrix(P)
Construct a TransitionMatrix
from a matrix P
. The properties of P
are inferred automatically.
Arguments
P
: The transition matrix.
TransitionPathTheory.WeaklyConnected
— Typestruct WeaklyConnected
A Connectivity
such that the directed graph implied by the transition matrix is weakly connected.