aivika-transformers-4.3.2: Transformers for the Aivika simulation library

CopyrightCopyright (c) 2009-2015, David Sorokin <david.sorokin@gmail.com>
LicenseBSD3
MaintainerDavid Sorokin <david.sorokin@gmail.com>
Stabilityexperimental
Safe HaskellSafe
LanguageHaskell2010

Simulation.Aivika.Trans.Specs

Contents

Description

Tested with: GHC 7.10.1

It defines the simulation specs and functions for this data type.

Synopsis

Simulation Specs

data Specs m Source

It defines the simulation specs.

Constructors

Specs 

Fields

spcStartTime :: Double

the start time

spcStopTime :: Double

the stop time

spcDT :: Double

the integration time step

spcMethod :: Method

the integration method

spcGeneratorType :: GeneratorType m

the type of random number generator

data Method Source

It defines the integration method.

Constructors

Euler

Euler's method

RungeKutta2

the 2nd order Runge-Kutta method

RungeKutta4

the 4th order Runge-Kutta method

Auxiliary Functions

basicTime :: Specs m -> Int -> Int -> Double Source

Returns a simulation time for the integration point specified by the specs, iteration and phase.

integIterationBnds :: Specs m -> (Int, Int) Source

Returns the first and last integration iterations.

integIterationHiBnd :: Specs m -> Int Source

Returns the last integration iteration.

integIterationLoBnd :: Specs m -> Int Source

Returns the first integration iteration, i.e. zero.

integPhaseBnds :: Specs m -> (Int, Int) Source

Returns the first and last integration phases.

integPhaseHiBnd :: Specs m -> Int Source

Returns the last integration phase, 0 for Euler's method, 1 for RK2 and 3 for RK4.

integPhaseLoBnd :: Specs m -> Int Source

Returns the first integration phase, i.e. zero.

integTimes :: Specs m -> [Double] Source

Return the integration time values.