aivika-3.1: A multi-paradigm simulation library

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

Simulation.Aivika.Results.IO

Contents

Description

Tested with: GHC 7.8.3

The module allows printing and converting the Simulation Results to a String.

Synopsis

Basic Types

type ResultSourcePrint = ResultSource -> Event () Source

This is a function that prints the simulation results within the Event computation synchronized with the event queue.

type ResultSourceShowS = ResultSource -> Event ShowS Source

This is a function that shows the simulation results within the Event computation synchronized with the event queue.

Printing the Results

printResultsWithTime :: ResultSourcePrint -> Results -> Event () Source

Print the results with the information about the modeling time.

printResultsInStartTime :: ResultSourcePrint -> Results -> Simulation () Source

Print the simulation results in start time.

printResultsInStopTime :: ResultSourcePrint -> Results -> Simulation () Source

Print the simulation results in stop time.

printResultsInIntegTimes :: ResultSourcePrint -> Results -> Simulation () Source

Print the simulation results in the integration time points.

printResultsInTime :: Double -> ResultSourcePrint -> Results -> Simulation () Source

Print the simulation results in the specified time.

printResultsInTimes :: [Double] -> ResultSourcePrint -> Results -> Simulation () Source

Print the simulation results in the specified time points.

Simulating and Printing the Results

printSimulationResultsInStartTime :: ResultSourcePrint -> Simulation Results -> Specs -> IO () Source

Run the simulation and then print the results in the start time.

printSimulationResultsInStopTime :: ResultSourcePrint -> Simulation Results -> Specs -> IO () Source

Run the simulation and then print the results in the final time.

printSimulationResultsInIntegTimes :: ResultSourcePrint -> Simulation Results -> Specs -> IO () Source

Run the simulation and then print the results in the integration time points.

printSimulationResultsInTime :: Double -> ResultSourcePrint -> Simulation Results -> Specs -> IO () Source

Run the simulation and then print the results in the specified time point.

printSimulationResultsInTimes :: [Double] -> ResultSourcePrint -> Simulation Results -> Specs -> IO () Source

Run the simulation and then print the results in the specified time points.

Showing the Results

showResultsWithTime :: ResultSourceShowS -> Results -> Event ShowS Source

Show the results with the information about the modeling time.

showResultsInStartTime :: ResultSourceShowS -> Results -> Simulation ShowS Source

Show the simulation results in start time.

showResultsInStopTime :: ResultSourceShowS -> Results -> Simulation ShowS Source

Show the simulation results in stop time.

showResultsInIntegTimes :: ResultSourceShowS -> Results -> Simulation ShowS Source

Show the simulation results in the integration time points.

It may consume much memory, for we have to traverse all the integration points to create the resulting function within the Simulation computation.

showResultsInTime :: Double -> ResultSourceShowS -> Results -> Simulation ShowS Source

Show the simulation results in the specified time point.

showResultsInTimes :: [Double] -> ResultSourceShowS -> Results -> Simulation ShowS Source

Show the simulation results in the specified time points.

It may consume much memory, for we have to traverse all the specified points to create the resulting function within the Simulation computation.

Simulating and Showing the Results

showSimulationResultsInStartTime :: ResultSourceShowS -> Simulation Results -> Specs -> IO ShowS Source

Run the simulation and then show the results in the start time.

showSimulationResultsInStopTime :: ResultSourceShowS -> Simulation Results -> Specs -> IO ShowS Source

Run the simulation and then show the results in the final time.

showSimulationResultsInIntegTimes :: ResultSourceShowS -> Simulation Results -> Specs -> IO ShowS Source

Run the simulation and then show the results in the integration time points.

It may consume much memory, for we have to traverse all the integration points to create the resulting function within the IO computation.

showSimulationResultsInTime :: Double -> ResultSourceShowS -> Simulation Results -> Specs -> IO ShowS Source

Run the simulation and then show the results in the integration time point.

showSimulationResultsInTimes :: [Double] -> ResultSourceShowS -> Simulation Results -> Specs -> IO ShowS Source

Run the simulation and then show the results in the specified time points.

It may consume much memory, for we have to traverse all the specified points to create the resulting function within the IO computation.

Printing the Result Source

hPrintResultSourceIndented Source

Arguments

:: Handle

a handle

-> Int

an indent

-> ResultLocalisation

a localisation

-> ResultSourcePrint 

Print a localised text representation of the results by the specified source and with the given indent.

hPrintResultSource Source

Arguments

:: Handle

a handle

-> ResultLocalisation

a localisation

-> ResultSourcePrint 

Print a localised text representation of the results by the specified source.

hPrintResultSourceInRussian :: Handle -> ResultSourcePrint Source

Print in Russian a text representation of the results by the specified source.

hPrintResultSourceInEnglish :: Handle -> ResultSourcePrint Source

Print in English a text representation of the results by the specified source.

printResultSourceIndented Source

Arguments

:: Int

an indent

-> ResultLocalisation

a localisation

-> ResultSourcePrint 

Print a localised text representation of the results by the specified source and with the given indent.

printResultSource Source

Arguments

:: ResultLocalisation

a localisation

-> ResultSourcePrint 

Print a localised text representation of the results by the specified source.

printResultSourceInRussian :: ResultSourcePrint Source

Print in Russian a text representation of the results by the specified source.

printResultSourceInEnglish :: ResultSourcePrint Source

Print in English a text representation of the results by the specified source.

Showing the Result Source

showResultSourceIndented Source

Arguments

:: Int

an indent

-> ResultLocalisation

a localisation

-> ResultSourceShowS 

Show a localised text representation of the results by the specified source and with the given indent.

showResultSource Source

Arguments

:: ResultLocalisation

a localisation

-> ResultSourceShowS 

Show a localised text representation of the results by the specified source.

showResultSourceInRussian :: ResultSourceShowS Source

Show in Russian a text representation of the results by the specified source.

showResultSourceInEnglish :: ResultSourceShowS Source

Show in English a text representation of the results by the specified source.