Appendix A: Generating Random Numbers from a Distribution: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
=Generating Random Times from a Weibull Distribution=
=Generating Random Times from a Weibull Distribution=


The  <math>cdf</math>  of the 2-parameter Weibull distribution is given by,
The  <math>cdf</math>  of the 2-parameter Weibull distribution is given by:
<br>
<br>


Line 11: Line 11:
<br>
<br>


The Weibull reliability function is given by,
The Weibull reliability function is given by:
<br>
<br>


Line 27: Line 27:
<br>
<br>
==Conditional==
==Conditional==
The Weibull conditional reliability function is given by,
The Weibull conditional reliability function is given by:
<br>
<br>
::<math>R(T,t)=\frac{R(T+t)}{R(T)}=\frac{{{e}^{-{{\left( \tfrac{T+t}{\eta } \right)}^{\beta }}}}}{{{e}^{-{{\left( \tfrac{T}{\eta } \right)}^{\beta }}}}},</math>
::<math>R(T,t)=\frac{R(T+t)}{R(T)}=\frac{{{e}^{-{{\left( \tfrac{T+t}{\eta } \right)}^{\beta }}}}}{{{e}^{-{{\left( \tfrac{T}{\eta } \right)}^{\beta }}}}},</math>

Revision as of 19:54, 7 June 2012

New format available! This reference is now available in a new format that offers faster page load, improved display for calculations and images, more targeted search and the latest content available as a PDF. As of September 2023, this Reliawiki page will not continue to be updated. Please update all links and bookmarks to the latest reference at help.reliasoft.com/reference/system_analysis

Chapter A3: Appendix A: Generating Random Numbers from a Distribution


BlockSimbox.png

Chapter A3  
Appendix A: Generating Random Numbers from a Distribution  

Synthesis-icon.png

Available Software:
BlockSim

Examples icon.png

More Resources:
BlockSim examples


Simulation involves generating random numbers that belong to a specific distribution. We will illustrate this methodology using the Weibull distribution.

Generating Random Times from a Weibull Distribution

The [math]\displaystyle{ cdf }[/math] of the 2-parameter Weibull distribution is given by:

[math]\displaystyle{ F(T)=1-{{e}^{-{{\left( \tfrac{T}{\eta } \right)}^{\beta }}}}. }[/math]


The Weibull reliability function is given by:

[math]\displaystyle{ \begin{align} R(T)= & 1-F(t) \\ = & {{e}^{-{{\left( \tfrac{T}{\eta } \right)}^{\beta }}}}. \end{align} }[/math]


To generate a random time from a Weibull distribution, with a given [math]\displaystyle{ \eta }[/math] and [math]\displaystyle{ \beta }[/math] a uniform random number from 0 to 1, [math]\displaystyle{ {{U}_{R}}[0,1] }[/math] , is first obtained. The random time from a weibull distribution is then obtained from:


[math]\displaystyle{ {{T}_{R}}=\eta \cdot {{\left\{ -\ln \left[ {{U}_{R}}[0,1] \right] \right\}}^{\tfrac{1}{\beta }}}. }[/math]


Conditional

The Weibull conditional reliability function is given by:

[math]\displaystyle{ R(T,t)=\frac{R(T+t)}{R(T)}=\frac{{{e}^{-{{\left( \tfrac{T+t}{\eta } \right)}^{\beta }}}}}{{{e}^{-{{\left( \tfrac{T}{\eta } \right)}^{\beta }}}}}, }[/math]


or,



BlockSim's Random Number Generator (RNG)

Internally ReliaSoft's BlockSim uses an algorithm based on L'Ecuyer's [RefX] random number generator with a post Bays-Durham shuffle. The RNG's period is aproximately 10^18. The RNG passes all currently known statistical tests, within the limits the machine's precion, and for a number of calls (simulation runs) less than the period. If no seed is provided the algorithm uses the machines clock to initialize the RNG.

References

  1. L'Ecuyer, P., 1988, Communications of the ACM, vol. 31, pp.724-774
  2. L'Ecuyer, P., 2001, Proceedings of the 2001 Winter Simulation Conference, pp.95-105
  3. Press, William H., Teukolsky, Saul A., Vetterling, William T., Flannery, Brian R., Numerical
  4. Recipes in C: The Art of Scientific Computing, Second Edition, Cambridge University Press, 1988.
  5. Peters, Edgar E., Fractal Market Analysis: Applying Chaos Theory to Investment & Economics, John Wiley & Sons, 1994.
  6. Knuth, Donald E., The Art of Computer Programming: Volume 2 - Seminumerical Algorithms, Third Edition, Addison-Wesley, 1998.