aivika-2.1: A multi-paradigm simulation library

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

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 ShowSSource

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 ShowSSource

Show the results with the information about the modeling time.

showResultsInStartTime :: ResultSourceShowS -> Results -> Simulation ShowSSource

Show the simulation results in start time.

showResultsInStopTime :: ResultSourceShowS -> Results -> Simulation ShowSSource

Show the simulation results in stop time.

showResultsInIntegTimes :: ResultSourceShowS -> Results -> Simulation ShowSSource

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 ShowSSource

Show the simulation results in the specified time point.

showResultsInTimes :: [Double] -> ResultSourceShowS -> Results -> Simulation ShowSSource

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 ShowSSource

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

showSimulationResultsInStopTime :: ResultSourceShowS -> Simulation Results -> Specs -> IO ShowSSource

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

showSimulationResultsInIntegTimes :: ResultSourceShowS -> Simulation Results -> Specs -> IO ShowSSource

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 ShowSSource

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

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

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

hPrintResultSourceIndentedSource

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.

hPrintResultSourceSource

Arguments

:: Handle

a handle

-> ResultLocalisation

a localisation

-> ResultSourcePrint 

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

hPrintResultSourceInRussian :: Handle -> ResultSourcePrintSource

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

hPrintResultSourceInEnglish :: Handle -> ResultSourcePrintSource

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

printResultSourceIndentedSource

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.

printResultSourceSource

Arguments

:: ResultLocalisation

a localisation

-> ResultSourcePrint 

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

printResultSourceInRussian :: ResultSourcePrintSource

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

printResultSourceInEnglish :: ResultSourcePrintSource

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

Showing the Result Source

showResultSourceIndentedSource

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.

showResultSourceSource

Arguments

:: ResultLocalisation

a localisation

-> ResultSourceShowS 

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

showResultSourceInRussian :: ResultSourceShowSSource

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

showResultSourceInEnglish :: ResultSourceShowSSource

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