|
8.
Assessing Product Reliability
8.1. Introduction 8.1.6. What are the basic lifetime distribution models used for non-repairable populations?
|
|||
| Formulas and Plots | |||
| Lognormal Formulas and relationship to the normal distribution | Formulas and Plots
The lognormal life distribution, like the Weibull, is a very flexible
model that can empirically fit many types of failure data. The two parameter
form has parameters Note: If time to failure, tf, has a lognormal
distribution, then the (natural) logarithm of time to failure has a normal
distribution with mean µ = ln T50 and standard deviation Below is a summary of the key formulas for the lognormal.
Note: A more general 3-parameter form of the lognormal includes
an additional waiting time parameter Examples of lognormal PDF and failure rate plots are shown below. Note
that lognormal shapes for small sigmas are very similar to Weibull shapes
when the shape parameter |
||
| Lognormal data 'shapes' | ![]() |
||
| Lognormal failure rate 'shapes' | ![]() |
||
| A very flexible model that also can apply (theoretically) to many degradation process failure modes | Uses
of the Lognormal Distribution Model
Applying the Central Limit Theorem to small additive errors in the log domain and justifying a normal model is equivalent to justifying the lognormal model in real time when a process moves towards failure based on the cumulative effect of many small "multiplicative" shocks. More precisely, if at any instant in time a degradation process undergoes a small increase in the total amount of degradation that is proportional to the current total amount of degradation, then it is reasonable to expect the time to failure (i.e., reaching a critical amount of degradation) to follow a lognormal distribution (Kolmogorov, 1941).A more detailed description of the multiplicative degradation argument appears in a later section. |
||
| Dataplot and EXCEL lognormal functions |
DATAPLOT and EXCEL Functions for the Lognormal
The following commands in Dataplot will evaluate the PDF, the CDF, and
the failure rate (PDF/(1-CDF)) of a lognormal at time T, with shape
LET PDF = LGNPDF(T,For example, if T = 5000 and To generate 100 lognormal random numbers from a lognormal with shape .5 and median life 20,000, use the following commands: LET SIGMA = 0.5Next, to see how well these random lognormal data points are fit by a lognormal, we plot them using the lognormal probability plot command. First we have to set = SD to .5
(see PPCC PLOT
for how to estimate the value of SD from actual data).
LET SIGMA = .5The resulting plot is below. Points that line up approximately on a straight line indicates a good fit to a lognormal (with shape SD = .5). The time that corresponds to the (normalized) x-axis T50 of 1 is the estimated T50 according to the data. In this case it is close to 20,000, as expected. |
||
| Dataplot lognormal probability plot |
Finally, we note that EXCEL has a built in function to calculate the
lognormal CDF. The command is =LOGNORMDIST(5000,9.903487553,0.5) to evaluate
the CDF of a lognormal at time T = 5000 with =(1/5000)*NORMDIST(8.517193191,9.903487553,0.5,FALSE) where 8.517193191 is ln 5000 and "FALSE" is needed to get PDF's instead of CDF's. The answer returned is 3.42E-06. |
||