aivika-experiment-2.1: Simulation experiments for the Aivika library

Stabilityexperimental
MaintainerDavid Sorokin <david.sorokin@gmail.com>
Safe HaskellNone

Simulation.Aivika.Experiment.LastValueView

Description

Tested with: GHC 7.8.3

The module defines LastValueView that shows the last values for the simulation variables.

Synopsis

Documentation

data LastValueView Source

Defines the View that shows the last values of the simulation variables.

Constructors

LastValueView 

Fields

lastValueTitle :: String

The title for the view.

lastValueRunTitle :: String

The run title for the view. It may include special variables $RUN_INDEX, $RUN_COUNT and $TITLE.

An example is

   lastValueRunTitle = "$TITLE / Run $RUN_INDEX of $RUN_COUNT"
lastValueDescription :: String

The description for the view.

lastValueFormatter :: ShowS

It transforms data before they will be shown.

lastValueTransform :: ResultTransform

The transform applied to the results before receiving series.

lastValueSeries :: ResultTransform

It defines the series for which the last values to be shown.

defaultLastValueView :: LastValueViewSource

This is the default view.