TwoStageOptimalControl.integ4Function
integ4(n::Int64, h::Float64, F)

integ4 performs 4th order integration (Simpson-method) method for datavector F with n points with a distance of h between each of them. If n > 1 and F = 1, F will be interpreted as a constant function over the n points.

source
TwoStageOptimalControl.integ2Function
integ2(n::Int64, h::Float64, F)

integ2 performs 2nd order integration (trapezoid) method for datavector F with n points with a distance of h between each of them. If n > 1 and F = 1, F will be interpreted as a constant function over the n points.

source
TwoStageOptimalControl.integ1Function
integ1(n::Int64, h::Float64, F)

integ1 performs 1st order left boundary integration method for datavector F with n points with a distance of h between each of them. If n > 1 and F = 1, F will be interpreted as a constant function over the n points.

source
TwoStageOptimalControl.CumInteg4Function
CumInteg4(n::Int64, h::Float64, F)

CumInteg4 calculates the cumulative integrals

\[\int_0^t F(s)ds \forall t\in(0,T)\]

of F using a 4th order integration method.

  • n -> number of datapoints,
  • h -> distance between datapoints.
source
TwoStageOptimalControl.interp1Function
interp1(xpt, ypt; method = "Linear", extrapolation = Flat())

One dimensional interpolation using either linear interpolation or BSplines

source
TwoStageOptimalControl.ConInterpolFunction
ConInterpol(Con_dist::Array{Float64,3}, Con::Array{Float64,3}, Para::Dict)

Given Controls Con_dist and Con, ConInterpol performs an interpolation of these fields to fit the passed Parameter dict Para.

source
TwoStageOptimalControl.ConSmoothFunction
ConSmooth(Con::Array{Float64,3}, Con_dist::Array{Float64,3}, Para::Dict)

Smooth the profiles of the control variables using a SavitskyGolaySmoother

source