aivika-transformers-4.3.5: 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.Activity

Contents

Description

Tested with: GHC 7.10.1

It models an activity that can be utilised. The activity is similar to a Server but destined for simulation within Net computation.

Synopsis

Activity

data Activity m s a b Source

Like Server it models an activity that takes a and provides b having state s. But unlike the former the activity is destined for simulation within Net computation.

Instances

newActivity Source

Arguments

:: MonadDES m 
=> (a -> Process m b)

provide an output by the specified input

-> Simulation m (Activity m () a b) 

Create a new activity that can provide output b by input a.

By default, it is assumed that the activity utilisation cannot be preempted, because the handling of possible task preemption is rather costly operation.

newStateActivity Source

Arguments

:: MonadDES m 
=> (s -> a -> Process m (s, b))

provide a new state and output by the specified old state and input

-> s

the initial state

-> Simulation m (Activity m s a b) 

Create a new activity that can provide output b by input a starting from state s.

By default, it is assumed that the activity utilisation cannot be preempted, because the handling of possible task preemption is rather costly operation.

newPreemptibleActivity Source

Arguments

:: MonadDES m 
=> Bool

whether the activity can be preempted

-> (a -> Process m b)

provide an output by the specified input

-> Simulation m (Activity m () a b) 

Create a new interruptible activity that can provide output b by input a.

newPreemptibleStateActivity Source

Arguments

:: MonadDES m 
=> Bool

whether the activity can be preempted

-> (s -> a -> Process m (s, b))

provide a new state and output by the specified old state and input

-> s

the initial state

-> Simulation m (Activity m s a b) 

Create a new activity that can provide output b by input a starting from state s.

Processing

activityNet :: MonadDES m => Activity m s a b -> Net m a b Source

Return a network computation for the specified activity.

The computation updates the internal state of the activity. The usual case is when the computation is applied only once in a chain of data processing. Otherwise; every time the computation is used, the state of the activity changes. Sometimes it can be indeed useful if you want to aggregate the statistics for different activities simultaneously, but it would be more preferable to avoid this.

If you connect different activity computations returned by this function in a chain with help of >>> or other category combinator then this chain will act as one whole, where the first activity will take a new task only after the last activity finishes its current task and requests for the next one from the previous activity in the chain. This is not always that thing you might need.

Activity Properties

activityInitState :: Activity m s a b -> s Source

The initial state of the activity.

activityState :: MonadDES m => Activity m s a b -> Event m s Source

Return the current state of the activity.

See also activityStateChanged and activityStateChanged_.

activityTotalUtilisationTime :: MonadDES m => Activity m s a b -> Event m Double Source

Return the counted total time when the activity was utilised.

The value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityTotalUtilisationTimeChanged and activityTotalUtilisationTimeChanged_.

activityTotalIdleTime :: MonadDES m => Activity m s a b -> Event m Double Source

Return the counted total time when the activity was idle.

The value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityTotalIdleTimeChanged and activityTotalIdleTimeChanged_.

activityTotalPreemptionTime :: MonadDES m => Activity m s a b -> Event m Double Source

Return the counted total time when the activity was preemted waiting for the further proceeding.

The value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityTotalPreemptionTimeChanged and activityTotalPreemptionTimeChanged_.

activityUtilisationTime :: MonadDES m => Activity m s a b -> Event m (SamplingStats Double) Source

Return the statistics for the time when the activity was utilised.

The value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityUtilisationTimeChanged and activityUtilisationTimeChanged_.

activityIdleTime :: MonadDES m => Activity m s a b -> Event m (SamplingStats Double) Source

Return the statistics for the time when the activity was idle.

The value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityIdleTimeChanged and activityIdleTimeChanged_.

activityPreemptionTime :: MonadDES m => Activity m s a b -> Event m (SamplingStats Double) Source

Return the statistics for the time when the activity was preempted waiting for the further proceeding.

The value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityPreemptionTimeChanged and activityPreemptionTimeChanged_.

activityUtilisationFactor :: MonadDES m => Activity m s a b -> Event m Double Source

It returns the factor changing from 0 to 1, which estimates how often the activity was utilised.

This factor is calculated as

  totalUtilisationTime / (totalUtilisationTime + totalIdleTime + totalPreemptionTime)

As before in this module, the value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityUtilisationFactorChanged and activityUtilisationFactorChanged_.

activityIdleFactor :: MonadDES m => Activity m s a b -> Event m Double Source

It returns the factor changing from 0 to 1, which estimates how often the activity was idle.

This factor is calculated as

  totalIdleTime / (totalUtilisationTime + totalIdleTime + totalPreemptionTime)

As before in this module, the value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityIdleFactorChanged and activityIdleFactorChanged_.

activityPreemptionFactor :: MonadDES m => Activity m s a b -> Event m Double Source

It returns the factor changing from 0 to 1, which estimates how often the activity was preempted waiting for the further proceeding.

This factor is calculated as

  totalUtilisationTime / (totalUtilisationTime + totalIdleTime + totalPreemptionTime)

As before in this module, the value returned changes discretely and it is usually delayed relative to the current simulation time.

See also activityPreemptionFactorChanged and activityPreemptionFactorChanged_.

Summary

activitySummary :: MonadDES m => Activity m s a b -> Int -> Event m ShowS Source

Return the summary for the activity with desciption of its properties using the specified indent.

Derived Signals for Properties

activityStateChanged :: MonadDES m => Activity m s a b -> Signal m s Source

Signal when the activityState property value has changed.

activityStateChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityState property value has changed.

activityTotalUtilisationTimeChanged :: MonadDES m => Activity m s a b -> Signal m Double Source

Signal when the activityTotalUtilisationTime property value has changed.

activityTotalUtilisationTimeChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityTotalUtilisationTime property value has changed.

activityTotalIdleTimeChanged :: MonadDES m => Activity m s a b -> Signal m Double Source

Signal when the activityTotalIdleTime property value has changed.

activityTotalIdleTimeChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityTotalIdleTime property value has changed.

activityTotalPreemptionTimeChanged :: MonadDES m => Activity m s a b -> Signal m Double Source

Signal when the activityTotalPreemptionTime property value has changed.

activityTotalPreemptionTimeChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityTotalPreemptionTime property value has changed.

activityUtilisationTimeChanged :: MonadDES m => Activity m s a b -> Signal m (SamplingStats Double) Source

Signal when the activityUtilisationTime property value has changed.

activityUtilisationTimeChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityUtilisationTime property value has changed.

activityIdleTimeChanged :: MonadDES m => Activity m s a b -> Signal m (SamplingStats Double) Source

Signal when the activityIdleTime property value has changed.

activityIdleTimeChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityIdleTime property value has changed.

activityPreemptionTimeChanged :: MonadDES m => Activity m s a b -> Signal m (SamplingStats Double) Source

Signal when the activityPreemptionTime property value has changed.

activityPreemptionTimeChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityPreemptionTime property value has changed.

activityUtilisationFactorChanged :: MonadDES m => Activity m s a b -> Signal m Double Source

Signal when the activityUtilisationFactor property value has changed.

activityUtilisationFactorChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityUtilisationFactor property value has changed.

activityIdleFactorChanged :: MonadDES m => Activity m s a b -> Signal m Double Source

Signal when the activityIdleFactor property value has changed.

activityIdleFactorChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityIdleFactor property value has changed.

activityPreemptionFactorChanged :: MonadDES m => Activity m s a b -> Signal m Double Source

Signal when the activityPreemptionFactor property value has changed.

activityPreemptionFactorChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal when the activityPreemptionFactor property value has changed.

Basic Signals

activityUtilising :: Activity m s a b -> Signal m a Source

Raised when starting to utilise the activity after a new input task is received.

activityUtilised :: Activity m s a b -> Signal m (a, b) Source

Raised when the activity has been utilised after the current task is processed.

activityPreemptionBeginning :: Activity m s a b -> Signal m a Source

Raised when the activity utilisation was preempted.

activityPreemptionEnding :: Activity m s a b -> Signal m a Source

Raised when the activity utilisation was proceeded after it had been preempted earlier.

Overall Signal

activityChanged_ :: MonadDES m => Activity m s a b -> Signal m () Source

Signal whenever any property of the activity changes.