Public API
This page lists exported symbols of CTFlows.Trajectories.
From CTFlows.Trajectories
CTFlows.Trajectories [Module]
CTFlows.Trajectories Module
TrajectoriesTrajectory types and trajectory building for CTFlows.
This module provides:
AbstractIntegrationResult: Abstraction for raw ODE integration resultsVectorFieldTrajectory: Trajectory type wrapping integration resultsbuild_trajectory: Trajectory building functions for different configuration typesfinal_state,times,evaluate_at: Semantic accessors for integration resultsstate,time_grid: Semantic accessors for VectorFieldTrajectoryTrajectories.plot: plotting for trajectories via the Plots extension (aRecipesBase.plotmethod; not re-exported — call it qualified or loadPlots)
See also: CTSolvers.Integrators.AbstractIntegrationResult, CTFlows.Trajectories.VectorFieldTrajectory, CTFlows.Trajectories.build_trajectory.
AbstractHamiltonianVectorFieldTrajectory [Abstract Type]
CTFlows.Trajectories.AbstractHamiltonianVectorFieldTrajectory Type
abstract type AbstractHamiltonianVectorFieldTrajectoryAbstract supertype for Hamiltonian vector field solution containers.
This type defines the interface for all solution types that wrap ODE integration results for Hamiltonian systems.
See also: CTFlows.Trajectories.HamiltonianVectorFieldTrajectory, CTSolvers.Integrators.AbstractIntegrationResult.
AbstractVectorFieldTrajectory [Abstract Type]
CTFlows.Trajectories.AbstractVectorFieldTrajectory Type
abstract type AbstractVectorFieldTrajectoryAbstract supertype for vector field solution containers.
This type defines the interface for all solution types that wrap ODE integration results.
See also: CTFlows.Trajectories.VectorFieldTrajectory, CTSolvers.Integrators.AbstractIntegrationResult.
ControlProjection [Struct]
CTFlows.Trajectories.ControlProjection Type
struct ControlProjection{T<:CTFlows.Trajectories.VectorFieldTrajectory, L, V, C} <: FunctionCallable struct returning the reconstructed control of a CTFlows.Trajectories.StateFlowTrajectory: ControlProjection(sol)(t) = law(t, x(t), v). A functor (not a closure); the state coercion is precomputed.
CostateProjection [Struct]
CTFlows.Trajectories.CostateProjection Type
struct CostateProjection{R<:CTSolvers.Integrators.AbstractIntegrationResult, X0} <: FunctionCallable struct returning the costate component of a HamiltonianVectorFieldTrajectory.
CostateProjection(result, x0)(t) is equivalent to sol(t)[2]. It wraps the inner integration result and x0 (not the trajectory itself), so it is constructed once at trajectory construction and stored, and the costate(sol) accessor returns it without rebuilding a functor on every call.
HamiltonianVectorFieldTrajectory [Struct]
CTFlows.Trajectories.HamiltonianVectorFieldTrajectory Type
struct HamiltonianVectorFieldTrajectory{X0, R<:CTSolvers.Integrators.AbstractIntegrationResult, V, SP, CP} <: CTFlows.Trajectories.AbstractHamiltonianVectorFieldTrajectoryContainer for the integration result from a HamiltonianTrajectoryConfig integration.
This type wraps the integration result returned by integrators and provides semantic accessors for time grids, state functions, and costate functions.
Fields
result: The integration result object (subtype ofAbstractIntegrationResult).
Accessors
times(sol): Get the time grid (alias:time_grid(sol))state(sol): Get the solution as a callable state functionx(t)costate(sol): Get the solution as a callable costate functionp(t)sol(t): Evaluate the solution at timet, returning tuple(x(t), p(t))
Example
using CTFlows.Trajectories
sol = HamiltonianVectorFieldTrajectory(result)
ts = times(sol) # or time_grid(sol)
x = state(sol) # callable state function x(t)
p = costate(sol) # callable costate function p(t)
x(0.5), p(0.5) # evaluate at t = 0.5
x0, p0 = sol(0.0) # returns tuple (x(0), p(0))See also: CTSolvers.Integrators.AbstractIntegrationResult, CTFlows.Trajectories.AbstractHamiltonianVectorFieldTrajectory.
StateFlowTrajectory [Struct]
CTFlows.Trajectories.StateFlowTrajectory Type
struct StateFlowTrajectory{T<:CTFlows.Trajectories.VectorFieldTrajectory, L, V, O, C, M, SP, CP} <: CTFlows.Trajectories.AbstractVectorFieldTrajectoryTrajectory of a controlled dynamical system, as produced by an OpenLoop or ClosedLoop control flow. It carries the state trajectory together with the control law, from which the control is reconstructed along the trajectory. There is no costate (the underlying flow is a state flow) and no objective.
Fields
traj::T: the underlying state trajectory (aCTFlows.Trajectories.VectorFieldTrajectory).law::L: the control law (OpenLooporClosedLoop).variable::V: the variable threaded through the flow call (orCore.NotProvided).objective::O: the objective value (Mayer + Lagrange with the reconstructed control) when the trajectory was built from an OCP, ornothing(e.g. fromFlow(fc, law)).state_coerce::C: the state coercion (onlyfor a 1-D state,identityotherwise), precomputed once so the state/control projections never test a length at run time.ocp::M: the OCP model the controlled flow was built from — the source of the component names (state/control) and the time name for plotting — ornothing(e.g. fromFlow(fc, law)).
Accessors
state(sol): callable state functionx(t).control(sol): callable control functionu(t) = law(t, x(t), v).objective(sol): the objective value (errors if unavailable).times(sol)/time_grid(sol): the time grid.sol(t): the state at timet.costate(sol): errors — a controlled state trajectory has no costate.
See also: CTFlows.Trajectories.VectorFieldTrajectory, CTFlows.Trajectories.state, CTFlows.Trajectories.control.
StateProjection [Struct]
CTFlows.Trajectories.StateProjection Type
struct StateProjection{R<:CTSolvers.Integrators.AbstractIntegrationResult, X0} <: FunctionCallable struct returning the state component of a HamiltonianVectorFieldTrajectory.
StateProjection(result, x0)(t) is equivalent to sol(t)[1]. It wraps the inner integration result and x0 (not the trajectory itself), so it is constructed once at trajectory construction and stored, and the state(sol) accessor returns it without rebuilding a functor on every call.
VectorFieldTrajectory [Struct]
CTFlows.Trajectories.VectorFieldTrajectory Type
struct VectorFieldTrajectory{R<:CTSolvers.Integrators.AbstractIntegrationResult, V} <: CTFlows.Trajectories.AbstractVectorFieldTrajectoryContainer for the integration result from a StateTrajectoryConfig integration.
This type wraps the integration result returned by integrators and provides semantic accessors for time grids and state functions.
Fields
result: The integration result object (subtype ofAbstractIntegrationResult).variable: The variable value threaded through the flow call, orCore.NotProvidedwhen the flow carries no variable.
Accessors
times(sol): Get the time grid (alias:time_grid(sol))state(sol): Get the solution as a callable state functionsol(t): Evaluate the solution at timet(equivalent tostate(sol)(t))
Example
using CTFlows.Trajectories
sol = VectorFieldTrajectory(result)
ts = times(sol) # or time_grid(sol)
x = state(sol) # callable state function
x(0.5) # evaluate at t = 0.5See also: CTSolvers.Integrators.AbstractIntegrationResult, CTFlows.Trajectories.AbstractVectorFieldTrajectory.
build_trajectory [Function]
CTFlows.Trajectories.build_trajectory Function
build_trajectory(
::Type{CTBase.Traits.EndPointMode},
::Type{CTBase.Traits.StateDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult
) -> Any
build_trajectory(
::Type{CTBase.Traits.EndPointMode},
::Type{CTBase.Traits.StateDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult,
variable
) -> AnyDefault implementation for scalar point configs — return the final state.
For scalar configurations (initial_state <: Number), unwraps the length-1 vector that was introduced by scalar-promotion at ODE problem construction time.
This uses compile-time dispatch on the initial state type to avoid runtime type tests.
Arguments
::Type{Traits.EndPointMode}: The point mode trait type.::Type{Traits.StateDynamics}: The state content trait type.initial_state::Number: The scalar initial state.result::Integrators.AbstractIntegrationResult: The integration result.
Returns
Number: The unwrapped scalar final state.
See also: CTSolvers.Integrators.AbstractIntegrationResult, CTBase.Traits.EndPointMode, CTBase.Traits.StateDynamics.
build_trajectory(
::Type{CTBase.Traits.TrajectoryMode},
::Type{CTBase.Traits.StateDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult
) -> CTFlows.Trajectories.VectorFieldTrajectory{R, CTBase.Core.NotProvidedType} where R<:CTSolvers.Integrators.AbstractIntegrationResult
build_trajectory(
::Type{CTBase.Traits.TrajectoryMode},
::Type{CTBase.Traits.StateDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult,
variable
) -> CTFlows.Trajectories.VectorFieldTrajectoryDefault implementation for trajectory configs — wrap the integration result in a VectorFieldTrajectory for future extensibility.
Arguments
::Type{Traits.TrajectoryMode}: The trajectory mode trait type.::Type{Traits.StateDynamics}: The state content trait type.initial_state: The initial state.result::Integrators.AbstractIntegrationResult: The integration result.
Returns
VectorFieldTrajectory: The wrapped integration result.
See also: CTSolvers.Integrators.AbstractIntegrationResult, CTFlows.Trajectories.VectorFieldTrajectory, CTBase.Traits.TrajectoryMode, CTBase.Traits.StateDynamics.
build_trajectory(
::Type{CTBase.Traits.EndPointMode},
::Type{CTBase.Traits.HamiltonianDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult
) -> Tuple{Any, Any}
build_trajectory(
::Type{CTBase.Traits.EndPointMode},
::Type{CTBase.Traits.HamiltonianDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult,
variable
) -> Tuple{Any, Any}Build a solution for Hamiltonian point configs.
Returns the final state and costate as a tuple (xf, pf), dispatching on the type of the initial state to handle scalar, vector, and matrix cases.
Arguments
::Type{Traits.EndPointMode}: The point mode trait type.::Type{Traits.HamiltonianDynamics}: The Hamiltonian content trait type.initial_state: The initial state (scalar, vector, or matrix).result::Integrators.AbstractIntegrationResult: The integration result.
Returns
Tuple: The final state and costate. Type depends oninitial_state:Tuple{Number, Number}for scalar inputsTuple{AbstractVector, AbstractVector}for vector inputsTuple{AbstractMatrix, AbstractMatrix}for matrix inputs
See also: CTSolvers.Integrators.AbstractIntegrationResult, CTBase.Traits.EndPointMode, CTBase.Traits.HamiltonianDynamics.
build_trajectory(
::Type{CTBase.Traits.TrajectoryMode},
::Type{CTBase.Traits.HamiltonianDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult
) -> CTFlows.Trajectories.HamiltonianVectorFieldTrajectory{_A, var"#s179", CTBase.Core.NotProvidedType, CTFlows.Trajectories.StateProjection{R, _A1}, CTFlows.Trajectories.CostateProjection{R1, _A2}} where {_A, var"#s179"<:CTSolvers.Integrators.AbstractIntegrationResult, R<:CTSolvers.Integrators.AbstractIntegrationResult, _A1, R1<:CTSolvers.Integrators.AbstractIntegrationResult, _A2}
build_trajectory(
::Type{CTBase.Traits.TrajectoryMode},
::Type{CTBase.Traits.HamiltonianDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult,
variable
) -> CTFlows.Trajectories.HamiltonianVectorFieldTrajectory{_A, var"#s179", _B, CTFlows.Trajectories.StateProjection{R, _A1}, CTFlows.Trajectories.CostateProjection{R1, _A2}} where {_A, var"#s179"<:CTSolvers.Integrators.AbstractIntegrationResult, _B, R<:CTSolvers.Integrators.AbstractIntegrationResult, _A1, R1<:CTSolvers.Integrators.AbstractIntegrationResult, _A2}Build a solution for Hamiltonian trajectory configs.
Wraps the integration result in a HamiltonianVectorFieldTrajectory for future extensibility.
Arguments
::Type{Traits.TrajectoryMode}: The trajectory mode trait type.::Type{Traits.HamiltonianDynamics}: The Hamiltonian content trait type.initial_state: The initial state.result::Integrators.AbstractIntegrationResult: The integration result.
Returns
HamiltonianVectorFieldTrajectory: The wrapped integration result.
See also: CTSolvers.Integrators.AbstractIntegrationResult, CTFlows.Trajectories.HamiltonianVectorFieldTrajectory, CTBase.Traits.TrajectoryMode, CTBase.Traits.HamiltonianDynamics.
build_trajectory(
::Type{CTBase.Traits.EndPointMode},
::Type{CTBase.Traits.AugmentedHamiltonianDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult
) -> Tuple{Any, Any, Any}
build_trajectory(
::Type{CTBase.Traits.EndPointMode},
::Type{CTBase.Traits.AugmentedHamiltonianDynamics},
config::CTFlows.Configs.AbstractConfig,
result::CTSolvers.Integrators.AbstractIntegrationResult,
variable
) -> Tuple{Any, Any, Any}Build a solution for augmented Hamiltonian point configs.
Returns the final state, costate, and variable costate as a tuple (xf, pf, pvf). For Hamiltonian systems, n_p = n_x always, so the augmented state [x; p; pv] splits using only the state dimension n = length(initial_state).
Arguments
::Type{Traits.EndPointMode}: The point mode trait type.::Type{Traits.AugmentedHamiltonianDynamics}: The augmented Hamiltonian content trait type.initial_state: The initial state (used to determine state dimensionn).result::Integrators.AbstractIntegrationResult: The integration result.
Returns
Tuple{AbstractVector, AbstractVector, AbstractVector}: Tuple(xf, pf, pvf).
Notes
Uses
_aug_split_solutionhelper to split the augmented final state.Assumes
n_p = n_xinvariant for Hamiltonian systems.
See also: CTSolvers.Integrators.AbstractIntegrationResult, CTBase.Traits.EndPointMode, CTBase.Traits.AugmentedHamiltonianDynamics.
control [Function]
CTFlows.Trajectories.control Function
control(
sol::CTFlows.Trajectories.StateFlowTrajectory
) -> CTFlows.Trajectories.ControlProjectionReturn the reconstructed control function u(t) = law(t, x(t), v) of a StateFlowTrajectory, as the stored CTFlows.Trajectories.ControlProjection.
Raises a CTBase.Exceptions.PreconditionError when the trajectory was built without a control law (a basic control-free Flow(ocp)), which has no control to reconstruct.
See also: CTFlows.Trajectories.state.
costate [Function]
CTFlows.Trajectories.costate Function
costate(
sol::CTFlows.Trajectories.HamiltonianVectorFieldTrajectory
) -> AnyReturn the solution as a costate function of time p(t).
Returns a CTFlows.Trajectories.CostateProjection wrapping the solution, callable as p(t).
Arguments
sol::HamiltonianVectorFieldTrajectory: The Hamiltonian vector field solution.
Returns
CostateProjection: A callablet -> p(t)that returns the costate at timet.
Example
using CTFlows.Trajectories
sol = HamiltonianVectorFieldTrajectory(result)
p = costate(sol) # p is a callable CostateProjection
p(0.0) # initial costate
p(0.5) # interpolated costate at t = 0.5See also: CTFlows.Trajectories.state, CTSolvers.Integrators.times.
costate(sol::CTFlows.Trajectories.StateFlowTrajectory)A StateFlowTrajectory has no costate — it is the trajectory of a controlled state flow (OpenLoop/ClosedLoop), not a Hamiltonian flow. Raises a PreconditionError pointing at the available getters.
See also: CTFlows.Trajectories.state, CTFlows.Trajectories.control.
objective [Function]
CTFlows.Trajectories.objective Function
objective(
sol::CTFlows.Trajectories.StateFlowTrajectory{T<:CTFlows.Trajectories.VectorFieldTrajectory, L, V, <:Real}
) -> RealReturn the objective value of a StateFlowTrajectory (Mayer + Lagrange, with the control reconstructed from the law). Available only when the trajectory was built from an OCP (trajectory mode); otherwise a clear error is raised.
See also: CTFlows.Trajectories.state, CTFlows.Trajectories.control.
objective(
sol::CTFlows.Trajectories.StateFlowTrajectory{T<:CTFlows.Trajectories.VectorFieldTrajectory, L, V, Nothing}
)Throw a CTBase.Exceptions.PreconditionError when the objective is not available (the trajectory was built without an OCP, e.g. from Flow(fc, law)).
See also: CTFlows.Trajectories.objective.
state [Function]
CTFlows.Trajectories.state Function
state(
sol::CTFlows.Trajectories.VectorFieldTrajectory
) -> CTFlows.Trajectories.VectorFieldTrajectoryReturn the solution itself as a state function of time.
This is a semantic accessor that returns sol itself (which is already callable), providing a clear, self-documenting way to obtain the trajectory function.
Arguments
sol::VectorFieldTrajectory: The vector field solution.
Returns
VectorFieldTrajectory: The solution itself, which is callable as a function of time.
Example
using CTFlows.Trajectories
sol = VectorFieldTrajectory(result)
x = state(sol) # x is a function of time
x(0.0) # initial state
x(0.5) # interpolated state at t = 0.5
x.(0.0:0.1:1.0) # broadcast over time gridNotes
This accessor provides a foundation for uniform semantic accessors in optimal control:
state(sol),costate(sol),control(sol)when extended to Hamiltonian systems.No allocation occurs — returns
soldirectly.
See also: CTSolvers.Integrators.times, CTSolvers.Integrators.evaluate_at, CTFlows.Trajectories.time_grid.
state(
sol::CTFlows.Trajectories.HamiltonianVectorFieldTrajectory
) -> AnyReturn the solution as a state function of time x(t).
Returns a CTFlows.Trajectories.StateProjection wrapping the solution, callable as x(t).
Arguments
sol::HamiltonianVectorFieldTrajectory: The Hamiltonian vector field solution.
Returns
StateProjection: A callablet -> x(t)that returns the state at timet.
Example
using CTFlows.Trajectories
sol = HamiltonianVectorFieldTrajectory(result)
x = state(sol) # x is a callable StateProjection
x(0.0) # initial state
x(0.5) # interpolated state at t = 0.5See also: CTFlows.Trajectories.costate, CTSolvers.Integrators.times.
state(sol::CTFlows.Trajectories.StateFlowTrajectory) -> AnyReturn the state function x(t) of a StateFlowTrajectory (scalar for a 1-D state).
Returns the stored CTFlows.Trajectories.ControlledStateProjection precomputed at construction.
See also: CTFlows.Trajectories.control.
time_grid [Function]
CTFlows.Trajectories.time_grid Function
time_grid(
sol::CTFlows.Trajectories.VectorFieldTrajectory
) -> AnyAlias for times(sol) — returns the time grid from the solution.
This is an alternative, more explicit name for times in numerical contexts where "time grid" is the standard terminology.
Arguments
sol::VectorFieldTrajectory: The vector field solution.
Returns
AbstractVector: The vector of time points.
Example
using CTFlows.Trajectories
sol = VectorFieldTrajectory(result)
tg = time_grid(sol) # same as times(sol)Notes
time_gridandtimesare two names for the same operation.Use
time_gridwhen "grid" terminology is clearer in context.Use
timesfor brevity in everyday use.
See also: CTSolvers.Integrators.times, CTFlows.Trajectories.state.
time_grid(
sol::CTFlows.Trajectories.HamiltonianVectorFieldTrajectory
) -> AnyAlias for times(sol) — returns the time grid from the solution.
This is an alternative, more explicit name for times in numerical contexts where "time grid" is the standard terminology.
Arguments
sol::HamiltonianVectorFieldTrajectory: The Hamiltonian vector field solution.
Returns
AbstractVector: The vector of time points.
See also: CTSolvers.Integrators.times, CTFlows.Trajectories.state.
time_grid(
sol::CTFlows.Trajectories.StateFlowTrajectory
) -> AnyAlias for times(sol) — the time grid of a StateFlowTrajectory.