Next Page Previous Page Handbook Home Tools & Aids Search Handbook
8. Assessing Product Reliability
8.4. Reliability Data Analysis

8.4.3.

How do you project reliability at use conditions?

When projecting from high stress to use conditions, having a correct acceleration model and life distribution model is critical General Considerations

Reliability projections based on failure data from high stress tests are based on assuming we know the correct acceleration model for the failure mechanism under investigation and we are also using the correct life distribution model. This is because we are extrapolating "backwards" - trying to describe failure behavior in the early tail of the life distribution, where we have little or no actual data. 

For example, with an acceleration factor of 5000 (and some are much larger than this) the first 100,000 hours of use life is "over" by 20 hours into the test. Most, or all, of the test failures typically come later in time and are used to fit a life distribution model where only the first 20 hours or less are of practical use.  Many distributions may be flexible enough to adequately fit the data at the percentiles where the points are, and yet differ by orders of magnitude in the very early percentiles (sometimes referred to as the early "tail" of the distribution). 

However, it is frequently necessary to test at high stress (to get any failures at all!) and project backwards to use. When doing this bear in mind two important points:

Project for each failure mechanism separately
  • Distribution models, and especially acceleration models, should be applied only to a single failure mechanism at a time. Separate out failure mechanisms when doing the data analysis and use the competing risk model to build up to a total component failure rate
  • Try to find theoretical justification for the chosen models, or at least a successful history of their use for the same or very similar mechanisms. (Choosing models solely based on empirical fit is like extrapolating from quicksand to a mirage.) 
How to Project from High Stress to Use Stress

Two types of use condition reliability projections are common:

  1. Projection to use conditions after completing a multiple stress cell experiment and successfully fitting both a life distribution model and an acceleration model
  2. Projection to use conditions after a single cell at high stress is run as a line reliability monitor
Arrhenius model projection example with Dataplot commands The Arrhenius example from the graphical estimation and the MLE estimation sections ended by comparing use projections of the CDF at 100,000 hours. This is a projection of the first type. We know from the Arrhenius model assumption that the T50 at 25°C is just 

Using the graphical model estimates for ln A and we have

T50 at use = e-18.312 × e.808 × 11605/298.16 = e13.137 = 507380

and combining this T50 with the common sigma of .74 allows us to easily estimate the CDF or failure rate after any number of hours of operation at use conditions. In particular, the Dataplot command 

LET Y = LGNCDF((T/T50),sigma)
evaluates a lognormal CDF at time T, and 
LET Y = LGNCDF((100000/507380),.74)
returns the answer .014 given in the MLE estimation section as the graphical projection of the CDF at 100,000 hours at a use temperature of 25°C. 

If the life distribution model had been Weibull, the same type of analysis would be done by letting the characteristic life parameter vary with stress according to the acceleration model, while the shape parameterg is constant for all stress conditions. 

The second type of use projection was used in the section on lognormal and Weibull Tests where we judged new lots of product by looking at the proportion of failures in a sample tested at high stress. The assumptions we made were: 

  • we knew the acceleration factor between use and high stress
  • the shape parameter (sigma for the lognormal, gamma for the Weibull) is also known and does not change significantly from lot to lot.
With these assumptions, we can take any proportion fails we see from a high stress test and project a use CDF or failure rate. For a T hour high stress test and an acceleration factor of A from high stress to use stress, an observed proportion p is converted to a use CDF at 100,000 hours for a lognormal model as follows: 
LET T50STRESS = T *LGNPPF(p,)
LET CDF = LGNCDF((100000/(A*T50STRESS)),)
If the model is Weibull, the Dataplot commands are 
LET ASTRESS = T*WEIPPF(p,)
LET CDF = WEICDF((100000/(A*ASTRESS)),)
Handbook Home Tools & Aids Search Handbook Previous Page Next Page