|
8.
Assessing Product Reliability
8.1. Introduction 8.1.6. What are the basic lifetime distribution models used for non-repairable populations?
|
|||||||||
| Formulas for the gamma model | Formulas
and Plots
There are two ways of writing (parameterizing) the gamma distribution
that are common in the literature. In addition, different authors use different
symbols for the shape and scale parameters. Below we show three ways of
writing the gamma, with a = |
||||||||
| The exponential is a special case of the gamma | Note: When a = 1, the gamma reduces to an
exponential
distribution with b = .
Another well-known statistical distribution, the Chi-Square, is also
a special case of the gamma. A Chi-Square distribution with n degrees
of freedom is the same as a gamma with a = n/2 and b
= .5 (or The following plots give examples of gamma PDF, CDF and failure rate shapes. |
||||||||
| Shapes for Gamma data | ![]() |
||||||||
| Gamma CDF shapes | ![]() |
||||||||
| Gamma failure rate shapes | ![]() |
||||||||
| The gamma is used in "Standby" system models and also for Bayesian reliability analysis | Uses
of the Gamma Distribution Model
|
||||||||
| Dataplot and EXCEL gamma functions | Dataplot
and EXCEL Functions for the Gamma
To calculate the PDF, CDF, Reliability and failure rate at time t
for a gamma with parameters a and b = 1/ LET PDF = GAMPDF(t,a,0,b)Using an example solved in the section on standby models, if a = 2, b = 1/30 and t = 24 months, the statements are:
To generate random gamma data we first have to set the "a" parameter (called "gamma" by Dataplot). The following commands generate 100 gamma data points chosen randomly from a gamma distribution with parameters a and b: LET GAMMA = aFor the above example this becomes LET GAMMA = 2Continuing this example, we can now do a gamma probability plot of the 100 points in DATA. The commands are LET GAMMA = 2The resulting plot is shown below.
Note that the value of gamma can be estimated using a PPCC plot. EXCEL also has built-in functions to evaluate the gamma pdf and cdf. The syntax is: =GAMMADIST(t,a,1/b,FALSE) for the PDF |
||||||||