Censored Generalized Exponential model



   [genexponential_cen_ex1]

In this example the experiment is stoped after all but three of the N test items have failed.   The last three items are therefore left censored at the failure time of the N - 3 item. The software
predicts the unobserved failure times of the last three items. Sorting these failure time then gives
predictions on when the N - 2, N - 1 and N th failure will occur.
   
   model
   {
      for( i in 1 : N - 3) # observed failure times
      {
      x[i] ~ dgen.exp(alpha, lambda)
      }
      
      for(i in N - 2 : N) # censored observations
         {
            x[i] ~ dgen.exp(alpha, lambda)C(x[N - 3],)
         }   
            
      for(i in 1 : 3) # predicted failure times of censored items
         {
            x.pred[i] <- ranked(x[N- 2 : N], i)
         }
         
   # Prior distributions of the model parameters   
         alpha~ dunif(0.001, 20)
         lambda~ dunif(0.001, 20)   
   }

The data given here arose in tests on endurance of deep groove ball bearings.The test involves 23 ball bearings but the test is halted after 20 ball bearings have failed. The data are the number of million revolutions before failure for each of the 20 ball bearings in the life test plus the censoring time of the 20th failure for the remaining 3 ball bearings.

Lawless, J.F. (2003). Statistical Models and Methods for Lifetime data, Second edition, John Wiley & Sons, New York.

Data
list( N=23, x = c(17.88, 28.92, 33.00, 41.52, 42.12, 45.60, 48.80, 51.84, 51.96, 54.12, 55.56, 67.80, 68.64, 68.64, 68.88, 84.12, 93.12, 98.64, 105.12, 105.84, NA, NA, NA))
Inits for chain 1
list(alpha=4.0, lambda=0.01)
   
Inits for chain 2
list(alpha=8.0, lambda=0.1)



Results


[genexponential_cen_ex2]