Consider a stereo with CD player, FM–AM radio tuner, speakers (dual), and power amplifier (PA) components, as displayed with the reliabilities shown in Figure 6.11. Determine the system’s reliability. What assumptions are required in your model?
Define \(F(t)\) as the cumulative distrubution function of the failure rate,\(f(t)\), of a system or component, where \(t\) refers to time. The reliability \(R(t)\), of a system of component is the complement of \(F(t)\)
\(R(t) = 1-F(t)\)
| rs | |
|---|---|
| PA | 0.95 |
| CD | 0.98 |
| Radio | 0.97 |
| SpeakerA | 0.99 |
| SpeakerB | 0.99 |
The diagram above, gives us the assumptions that the following subsystems operate in parallel.
In addition, it seems that the parallel subsystems run in serials with each other and the power amplifier.
Therefore, if any of the two subsystems or the Power Amplifier components fail, the system as a whole will fail.
Futhermore, we can assume that the individual components are independent of one another.
Lastly, we can assume that each component and subsystems are running in serials and have independent reliabilities.
\(R_s(t)\) can be calculated by the union of the reliabilty for the components by using the following formula:
\(\displaystyle R_s(t) = \bigcup_{i=1}^nR_i(t)\)
Calculating the respective reliability for each of the three parallel subsystems
## [1] 0.9994
# Subsystem B
r_s2 <- rs["SpeakerA"] + rs["SpeakerB"] - rs["SpeakerA"] * rs["SpeakerB"]
names(r_s2) <- NULL ## [1] 0.9999
\(\displaystyle R_s(t) = \prod_{i=1}^nR_i(t)\)
To calculate the reliability of the system as a whole, we have to assume the Power Amplifier runs in series with the two subsystems.
## PA
## 0.9493351
Based on the above model, the System has a 95% probability of properly functioning.