Scenario
Machine A and Machine B each had 20 hours of downtime this month. The supervisor said they were "equally bad." However, after checking the detailed records: Machine A had 2 downtimes, each lasting 10 hours; Machine B had 20 downtimes, each lasting 1 hour.
From a production perspective, these two machines are completely different. Machine B's 20 minor failures interrupted 20 production cycles, and the losses from line changes and restarts far exceeded the downtime itself. Only MTBF and MTTR can clearly explain this.
Formulas
MTBF (Mean Time Between Failures) = Total Operating Time / Number of Failures
MTTR (Mean Time To Repair) = Total Repair Time / Number of Failures
Availability = MTBF / (MTBF + MTTR)
Calculating with the above example (assuming a monthly scheduled operation of 720 hours):
- Machine A: MTBF = (720-20)/2 = 350h, MTTR = 20/2 = 10h, Availability = 350/(350+10) = 97.2%
- Machine B: MTBF = (720-20)/20 = 35h, MTTR = 20/20 = 1h, Availability = 35/(35+1) = 97.2%
The availability is the same, but the MTBF differs by 10 times—Machine B's maintenance frequency is 10 times that of Machine A, leading to entirely different management burdens.
Exponential Reliability Model
For random failure modes, the reliability function is:
R(t) = e^(-t/MTBF)
This formula means: the probability that the equipment is still operating normally after running for t hours.
Example: For equipment with an MTBF of 500 hours, the reliability after 100 hours of operation:
R(100) = e^(-100/500) = e^(-0.2) ≈ 0.819 = 81.9%
Equipment Target Setting Recommendations
| Equipment Level | MTBF Target | MTTR Target |
|---|---|---|
| Critical Equipment (Bottleneck Station) | > 500 hours | < 2 hours |
| General Production Equipment | > 200 hours | < 4 hours |
| Non-Critical Auxiliary Equipment | > 100 hours | < 8 hours |
How to Collect MTBF/MTTR Data
- Record each failure: Failure start time, repair completion time, failure cause code
- Monthly summary: Calculate MTBF/MTTR trends by equipment
- Track trends: Declining MTBF = Equipment aging signal; Rising MTTR = Insufficient spare parts or technical capability issues
Golden Quote
"Looking only at total downtime is like looking only at body weight—two people weighing 70 kg can have vastly different health conditions. MTBF and MTTR are the true health indicators for equipment, telling you where the problem occurred and how severe it is."