aivika-transformers-4.3.3: Transformers for the Aivika 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.Trans.Results.IO

Contents

Description

Tested with: GHC 7.10.1

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

Synopsis

Basic Types

type ResultSourcePrint m = ResultSource m -> Event m () Source

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

type ResultSourceShowS m = ResultSource m -> Event m ShowS Source

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

Printing the Results

printResultsWithTime :: (MonadDES m, MonadIO m) => ResultSourcePrint m -> Results m -> Event m () Source

Print the results with the information about the modeling time.

printResultsInStartTime :: (MonadDES m, MonadIO m) => ResultSourcePrint m -> Results m -> Simulation m () Source

Print the simulation results in start time.

printResultsInStopTime :: (MonadDES m, MonadIO m) => ResultSourcePrint m -> Results m -> Simulation m () Source

Print the simulation results in stop time.

printResultsInIntegTimes :: (MonadDES m, MonadIO m) => ResultSourcePrint m -> Results m -> Simulation m () Source

Print the simulation results in the integration time points.

printResultsInTime :: (MonadDES m, MonadIO m) => Double -> ResultSourcePrint m -> Results m -> Simulation m () Source

Print the simulation results in the specified time.

printResultsInTimes :: (MonadDES m, MonadIO m) => [Double] -> ResultSourcePrint m -> Results m -> Simulation m () Source

Print the simulation results in the specified time points.

Simulating and Printing the Results

printSimulationResultsInStartTime :: (MonadDES m, MonadIO m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source

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

printSimulationResultsInStopTime :: (MonadDES m, MonadIO m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source

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

printSimulationResultsInIntegTimes :: (MonadDES m, MonadIO m) => ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source

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

printSimulationResultsInTime :: (MonadDES m, MonadIO m) => Double -> ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source

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

printSimulationResultsInTimes :: (MonadDES m, MonadIO m) => [Double] -> ResultSourcePrint m -> Simulation m (Results m) -> Specs m -> m () Source

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

Showing the Results

showResultsWithTime :: MonadDES m => ResultSourceShowS m -> Results m -> Event m ShowS Source

Show the results with the information about the modeling time.

showResultsInStartTime :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS Source

Show the simulation results in start time.

showResultsInStopTime :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m ShowS Source

Show the simulation results in stop time.

showResultsInIntegTimes :: MonadDES m => ResultSourceShowS m -> Results m -> Simulation m 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 :: MonadDES m => Double -> ResultSourceShowS m -> Results m -> Simulation m ShowS Source

Show the simulation results in the specified time point.

showResultsInTimes :: MonadDES m => [Double] -> ResultSourceShowS m -> Results m -> Simulation m 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 :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source

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

showSimulationResultsInStopTime :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source

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

showSimulationResultsInIntegTimes :: MonadDES m => ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m 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 :: MonadDES m => Double -> ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m ShowS Source

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

showSimulationResultsInTimes :: MonadDES m => [Double] -> ResultSourceShowS m -> Simulation m (Results m) -> Specs m -> m 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

:: (MonadDES m, MonadIO m) 
=> Handle

a handle

-> Int

an indent

-> ResultLocalisation

a localisation

-> ResultSourcePrint m 

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

hPrintResultSource Source

Arguments

:: (MonadDES m, MonadIO m) 
=> Handle

a handle

-> ResultLocalisation

a localisation

-> ResultSourcePrint m 

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

hPrintResultSourceInRussian :: (MonadDES m, MonadIO m) => Handle -> ResultSourcePrint m Source

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

hPrintResultSourceInEnglish :: (MonadDES m, MonadIO m) => Handle -> ResultSourcePrint m Source

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

printResultSourceIndented Source

Arguments

:: (MonadDES m, MonadIO m) 
=> Int

an indent

-> ResultLocalisation

a localisation

-> ResultSourcePrint m 

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

printResultSource Source

Arguments

:: (MonadDES m, MonadIO m) 
=> ResultLocalisation

a localisation

-> ResultSourcePrint m 

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

printResultSourceInRussian :: (MonadDES m, MonadIO m) => ResultSourcePrint m Source

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

printResultSourceInEnglish :: (MonadDES m, MonadIO m) => ResultSourcePrint m Source

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

Showing the Result Source

showResultSourceIndented Source

Arguments

:: MonadDES m 
=> Int

an indent

-> ResultLocalisation

a localisation

-> ResultSourceShowS m 

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

showResultSource Source

Arguments

:: MonadDES m 
=> ResultLocalisation

a localisation

-> ResultSourceShowS m 

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

showResultSourceInRussian :: MonadDES m => ResultSourceShowS m Source

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

showResultSourceInEnglish :: MonadDES m => ResultSourceShowS m Source

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