dde-0.0.0: Delay differential equations

Safe HaskellNone
LanguageHaskell2010

Numeric.DDE.Types

Synopsis

Documentation

type RHS = (State, HistorySnapshot, InputSnapshot) -> State Source #

DDE right-hand side

newtype HistorySnapshot Source #

Contains only the required snapshot of history to make steppers (e.g. Heun) work. There could be several delay variables (as in rc-analog)

Constructors

Hist 

newtype Input Source #

Vector of input data points

Constructors

Input 

Fields

newtype InputSnapshot Source #

Input u(t) is one-dimensional

Constructors

Inp 

Fields

newtype State Source #

State of a dynamical system, it can be a vector of any length (x(t), y(t), ...).

Constructors

State 

Fields

newtype Stepper1 Source #

Stepper for DDEs with a single delay

>>> _stepper stepSize rhs xyState xTau1_2 u1_2

Constructors

Stepper1 

Fields