Exported functions and types
Index
Docstrings
Integrators
SeeToDee.Rk4
— Typef_discrete = Rk4(f, Ts; supersample = 1)
Discretize a continuous-time dynamics function f
using RK4 with sample time Tₛ
. f
is assumed to have the signature f : (x,u,p,t)->ẋ
and the returned function f_discrete : (x,u,p,t)->x(t+Tₛ)
.
supersample
determins the number of internal steps, 1 is often sufficient, but this can be increased to make the interation more accurate. u
is assumed constant during all steps.
If called with StaticArrays, this integrator is allocation free.
SeeToDee.SimpleColloc
— TypeSimpleColloc(dyn, Ts, nx, na, nu; n = 5, abstol = 1.0e-8, solver=SimpleNewtonRaphson(), residual=false)
SimpleColloc(dyn, Ts, x_inds, a_inds, nu; n = 5, abstol = 1.0e-8, solver=SimpleNewtonRaphson(), residual=false)
A simple direct-collocation integrator that can be stepped manually, similar to the function returned by SeeToDee.Rk4
.
This integrator supports differential-algebraic equations (DAE), the dynamics is expected to be on either of the forms
nx,na
provided:(xz,u,p,t)->[ẋ; res]
wherexz
is a vector[x; z]
contaning the differential statex
and the algebraic variablesz
in this order.res
is the algebraic residuals, andu
is the control input. The algebraic residuals are thus assumed to be the lastna
elements of of the arrays returned by the dynamics (the convention used by ModelingToolkit).x_inds, a_inds
provided:(xz,u,p,t)->xzd
wherexzd[x_inds] = ẋ
andxzd[a_inds] = res
.
The returned function has the signature f_discrete : (x,u,p,t)->x(t+Tₛ)
.
This integrator also supports a fully implicit form of the dynamics
\[0 = F(ẋ, x, u, p, t)\]
When using this interface, the dynamics is called using an additional input ẋ
as the first argument, and the return value is expected to be the residual of the entire state descriptor. To use the implicit form, pass residual = true
.
A Gauss-Radau collocation method is used to discretize the dynamics. The resulting nonlinear problem is solved using (by default) a Newton-Raphson method. This method handles stiff dynamics.
Arguments:
dyn
: Dynamics function (continuous time)Ts
: Sample timenx
: Number of differential state variablesna
: Number of algebraic variablesx_inds, a_inds
: If indices are provided instead ofnx
andna
, the mass matrix is assumed to be diagonal, with ones located atx_inds
and zeros ata_inds
. For maximum efficiency, provide these indices as unit ranges or static arrays.nu
: Number of inputsn
: Number of collocation points.n=2
corresponds to trapezoidal integration.abstol
: Tolerance for the root finding algorithmresidual
: Iftrue
the dynamics function is assumed to return the residual of the entire state descriptor and have the signature(ẋ, x, u, p, t) -> res
. This is sometimes called "fully implicit form".solver
: Any compatible SciML Nonlinear solver to use for the root finding problem
Extended help
- Super-sampling is not supported by this integrator, but you can trivially wrap it in a function that does super-sampling by stepping
supersample
times in a loop with the same input and sample timeTs / supersample
. - To use trapezoidal integration, set
n=2
andnodetype=SeeToDee.FastGaussQuadrature.gausslobatto
.
Utilities
SeeToDee.linearize
— FunctionA,B = linearize(f, x0, u0, p, t)
Linearize dynamics function f(x, u, p, t)
w.r.t., state x
, input u
. Returns Jacobians A,B
in
\[ẋ = A\, Δx + B\, Δu\]
Works for both continuous and discrete-time dynamics.
SeeToDee.initialize
— Functioninitialize(integ, x0, u, p, t = 0.0; solver=integ.solver, abstol=integ.abstol)
Given the differential state variables in x0
, initialize the algebraic variables by solving the nonlinear problem f(x,u,p,t) = 0
using the provided solver.
Arguments:
integ
: An intergrator likeSeeToDee.SimpleColloc
x0
: Initial state descriptor (differential and algebraic variables, where the algebraic variables comes last)