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

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

Simulation.Aivika.Experiment.TableView

Description

Tested with: GHC 7.4.1

The module defines TableView that saves the simulation results in the CSV file(s).

Synopsis

Documentation

data TableView Source

Defines the View that saves the simulation results in the CSV file(s).

Constructors

TableView 

Fields

tableTitle :: String

This is a title used in HTML.

tableDescription :: String

This is a description in the HTML.

tableLinkText :: String

It specifies the text for the link which is displayed in the HTML page if there is only one simulation run. The link downloads the corresponded CSV file in the browser. If there are more simulation runs, then this link is not shown.

An example is

   tableLinkText = "Download the CSV file"
tableRunLinkText :: String

It specifies the link text which is displayed in the HTML page if there are many simulation runs. Such a link downloads the CSV file for the corresponded run. To define the text, you can use special variables $LINK, $RUN_INDEX and $RUN_COUNT.

An example is

   tableRunLinkText = "$LINK / Run $RUN_INDEX of $RUN_COUNT"

If there is only one run, then the link of this kind is not displayed. Instead, only one link is shown, which text is defined by the tableLinkText field.

tableFileName :: FileName

It defines the file name for each CSV file. It may include special variables $TITLE, $RUN_INDEX and $RUN_COUNT.

An example is

   tableFileName = UniqueFileName "$TITLE - $RUN_INDEX" ".csv"
tableSeparator :: String

It defines the separator for the view. It delimits the cells in the rows of the CSV file.

tableFormatter :: ShowS

It defines the formatter which is applied to all values before they will be written in the CSV file(s).

tablePredicate :: Event Bool

It specifies the predicate that defines when we can save data in the table.

tableSeries :: [String]

It contains the labels of data saved in the CSV file(s).

defaultTableView :: TableViewSource

The default table view.