dde-0.1.0: Delay differential equations

Safe HaskellNone
LanguageHaskell2010

Numeric.DDE.Types

Synopsis

Documentation

newtype RHS state Source #

DDE right-hand side.

Parameter state is and abstraction of a dynamical system's state, i.e. it can be a vector of any length (x(t), y(t), ...).

Constructors

RHS 

Fields

newtype HistorySnapshot state Source #

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

Constructors

Hist 

Fields

newtype Input Source #

Vector of input data points

Constructors

Input 

Fields

newtype InputSnapshot Source #

Input u(t) is one-dimensional

Constructors

Inp 

Fields

newtype Stepper Source #

DDE stepper (all delays are equal).

Stepper is a function of the following arguments:

  • Integration step
  • DDE right-hand side
  • Current state vector (x(t), y(t), ...)
  • Two subsequent history snapshots
  • Two subsequent inputs

The result (step) is a new state vector.

Constructors

Stepper 

Fields