aivika-1.3: A multi-paradigm simulation library

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

Simulation.Aivika.Circuit

Contents

Description

Tested with: GHC 7.6.3

It represents a circuit synchronized with the event queue. Also it allows creating the recursive links with help of the proc-notation.

The implementation is based on the Arrow Tutorial.

Synopsis

Circuit Arrow

newtype Circuit a b Source

Represents a circuit synchronized with the event queue. Besides, it allows creating the recursive links with help of the proc-notation.

Constructors

Circuit 

Fields

runCircuit :: a -> Event (Circuit a b, b)

Run the circuit.

Circuit Primitives

arrCircuit :: (a -> Event b) -> Circuit a b Source

Lift the Event function to a curcuit.

accumCircuit :: (acc -> a -> Event (acc, b)) -> acc -> Circuit a b Source

Accumulator that outputs a value determined by the supplied function.

Arrival Circuit

arrivalCircuit :: Circuit a (Arrival a) Source

A circuit that adds the information about the time points at which the values were received.

Delaying Circuit

delayCircuit :: a -> Circuit a a Source

Delay the input by one step using the specified initial value.

Time Circuit

timeCircuit :: Circuit a Double Source

A circuit that returns the current modeling time.

Conditional Computation

(<?<) Source

Arguments

:: Circuit b c

process the event if it presents

-> Circuit a (Maybe b)

whether there is an event

-> Circuit a (Maybe c)

the resulting circuit that processes only the represented events

Like <<< but processes only the represented events.

(>?>) Source

Arguments

:: Circuit a (Maybe b)

whether there is an event

-> Circuit b c

process the event if it presents

-> Circuit a (Maybe c)

the resulting circuit that processes only the represented events

Like >>> but processes only the represented events.

filterCircuit :: (a -> Bool) -> Circuit a b -> Circuit a (Maybe b) Source

Filter the circuit, calculating only those parts of the circuit that satisfy the specified predicate.

filterCircuitM :: (a -> Event Bool) -> Circuit a b -> Circuit a (Maybe b) Source

Filter the circuit within the Event computation, calculating only those parts of the circuit that satisfy the specified predicate.

neverCircuit :: Circuit a (Maybe b) Source

The source of events that never occur.

Converting to Signals and Processors

circuitSignaling :: Circuit a b -> Signal a -> Signal b Source

Get a signal transform by the specified circuit.

circuitProcessor :: Circuit a b -> Processor a b Source

Transform the circuit to a processor.

Integrals and Difference Equations

integCircuit Source

Arguments

:: Double

the initial value

-> Circuit Double Double

map the derivative to an integral

An approximation of the integral using Euler's method.

This function can be rather inaccurate as it depends on the time points at wich the Circuit computation is actuated. Also Euler's method per se is not most accurate, although simple enough for implementation.

Consider using the integ function whenever possible. That function can integrate with help of the Runge-Kutta method by the specified integration time points that are passed in the simulation specs to every Simulation, when running the model.

At the same time, the integCircuit function has no mutable state unlike the former. The latter consumes less memory but at the cost of inaccuracy and relatively more slow simulation, had we requested the integral in the same time points.

Regarding the recursive equations, the both functions allow defining them but whithin different computations (either with help of the recursive do-notation or the proc-notation).

sumCircuit Source

Arguments

:: Num a 
=> a

the initial value

-> Circuit a a

map the difference to a sum

A sum of differences starting from the specified initial value.

Consider using the more accurate diffsum function whener possible as it is calculated in every integration time point specified by specs passed in to every Simulation, when running the model.

At the same time, the sumCircuit function has no mutable state and it consumes less memory than the former.

Regarding the recursive equations, the both functions allow defining them but whithin different computations (either with help of the recursive do-notation or the proc-notation).

Circuit Transform

circuitTransform :: Circuit a b -> Transform a b Source

Approximate the circuit as a transform of time varying function, calculating the values in the integration time points and then interpolating in all other time points. The resulting transform computation is synchronized with the event queue.

This procedure consumes memory as the underlying memoization allocates an array to store the calculated values.