Random for each realization/time step functions
Like the random category functions, these functions provide a generation of random values with corresponding probability distribution. Contrary to the previous category, however, they generate single value per time step or realization. This makes them especially useful for a generation of multi-realization properties.
|
normalT
|
normalT(mean, standard deviation)
|
Random value with normal distribution.
|
normalT(0.1, 1.0)
|
|
|
lognormalT
|
lognormalT(mean, standard deviation)
|
Random value with lognormal distribution.
|
lognormalT(1.0, 1.0)
|
|
|
randomT
|
randomT(minimum, maximum)
randomT(“Distribution name”)
|
Random value with uniform distribution
Random value with previously saved distribution (Statistic manager).
|
randomT(0.0, 5.0)
randomT(“MyDistribution”)
|
|
|
triangularT
|
triangularT(minimum, maximum, peak value)
|
Random value with triangular distribution.
|
triangularT(0, 10, 5)
|
|
|
histogramT
|
histogramT(minimum, maximum, number1, number2, ...)
|
Random value with distribution specified by histogram.
|
histogramT(0.0, 10.0, 4,3,2,1)
|
|
|
randomDT
|
randomDT(minimum, maximum)
|
Discrete random value (max, min inclusive).
|
randomDT(1,4)
|
|
|
histogramDT
|
histogramDT(value1, rate1, value2, rate2, ...)
|
Discrete random value according to specified histogram.
|
histogramDT( 1, 0.3, 2, 0.7)
|
|