• No results found

Parallel System This is a system that will fail only if they all fail.

N/A
N/A
Protected

Academic year: 2021

Share "Parallel System This is a system that will fail only if they all fail."

Copied!
10
0
0

Loading.... (view fulltext now)

Full text

(1)

8

RELIABILITY

Systems Reliability

A system consists of components which determine whether or not it will work. There are various types of configurations of the components in different systems.

• Series System

This is a system in which all the components are in series and they all have to work for the system to work. If one component fails, the system fails.

• Parallel System

This is a system that will fail only if they all fail.

• Series-Parallel System

This is a system where some of the components in series are repli-cated in parallel.

(2)

8.1 Reliability of Series System Examples

1. A simple computer consists of a processor, a bus and a memory. The computer will work only if all three are functioning correctly. The probability that the processor is functioning is 0.99, that the bus is functioning 0.95, and that the memory is functioning is 0.99 .

P rocessor Bus M emory input−→

0.99 −→ 0.95 −→ 0.99 −→output

The probability that the computer will work is:

Rel=.99×.95×.99 = 0.893475

So even though all the components have above 95% or more reli-ability, the overall Reliability of the computer is less that 90%.

2. A system consists of 5 components in series each having a relia-bility of 0.97. What is the reliarelia-bility of the system?

C1 C2 C3 C4 C5

input−→

0.97 −→ 0.97 −→ 0.97 −→ 0.97 −→ 0.97 −→output

Rel= 0.975 = 0.86

With series systems, reliability decreases as the number of compo-nents increases.

With 6 components in series;

Rel= 0.976 = 0.832972

With 7 components; Rel= 0.977

(3)

3. An electronic product contains 100 integrated circuits. The prob-ability that any integrated circuit is defective is .001 and the in-tegrated circuits are independent. The product operates only if all the integrated circuits are operational. What is the probability that the product is operational?

Solution:

The probability that any component is functioning is .999. Since the product operates only if all 100 components are operational, the probability that the 100 components are functioning is:

Rel=.999100

obtained inR with

.999**100 [1] 0.9047921

The reliability is just over 90% even though each component has a reliability of 99.9%.

Bearing in mind that computing and electrical systems have hundreds or thousands of components, a series formation on its own will never be sufficiently reliable, no matter how high the individual component reliability is. The components need to be backed up in parallel.

(4)

8.2 Reliability of a Parallel System

Systems with parallel structure have built in redundancy. Components are backed up, and the system will work even if some of these cease to function.

Examples

1. A system consists of 5 components in parallel. If each component has a reliability of 0.97, what is the overall reliability of the system?

input−→ 0.97 0.97 0.97 0.97 0.97 −→output

System will function provided at least one of the 5 components works:

Rel = P(At least one component is functioning)

Taking the complementary approach,

P(at least one component functioning ) = 1- P(all components

fail). Therefore

(5)

With parallel systems the “law of diminishing returns” operates: With 2 components Rel= 10.032

= 0.9991

With 3 components Rel= 10.033

= 0.999973

With 4 components Rel= 10.034

= 0.9999992

Reliability of a parallel system with increasing number of components: component reliability = .97

2 4 6 8 10 0.970 0.975 0.980 0.985 0.990 0.995 1.000 Number of components Reliability k<-1:10 p <- .97

plot (k, 1-(1-p)^k , xlab = "Number of components ", ylab = "Reliability")

(6)

Series-Parallel Systems

Examples

1. Consider a system with 5 kinds of component, with reliabilities • component 1 : 0.95,

• component 2 : 0.95, • component 3 : 0.70, • component 4 : 0.75, • component 5 : 0.90.

Because of the low reliability of the third and fourth components, they are replicated; the system contains 3 of the third component and 2 of the fourth component.

The System: 0.95 −→ 0.95 −→ 0.70 0.70 0.70 −→ 0.75 0.75 −→ 0.90 C1 −→ C2 −→ C3 −→ C4 −→ C5

P(C1) × P(C2) × P( at least 1C3) × P(at least 1 C4) × P(C5) Rel =.95×.95×(1.33

)×(1−.252)×.9

InR

.95*.95*(1-.3^3) * (1- .25^2) *.9 [1] 0.7409243

(7)

Examples

2. The following system operates only if there is a path of functional devices from left to right. The probability that each device functions is shown on the graph. Assume the devices fail independently.

C1 C2 C3 input −→ 0.90 0.90 −→ 0.85 0.85 0.85 −→ 0.99 −→ output

Reliability: P(at least 1 of 2 C1) × P(at least 1 of 3 C2) × P(C3)

1−.12 × 1−.153 × .99 InR

> (1-.2^2)* (1-.15^3)*.99 [1] 0.9471924

(8)

Examples

3. The following diagram is a representation of a system that com-prises two subsystems operating in parallel.

input 1 P P P P P P P P P P q Subsystem A Subsystem B 0.9 0.9 0.9 0.9 -P P P P P P P P P P q 1output

The system operates if at least one of subsystem A operates.

Rel = P(at least one subsystem works)

Equivalently

Rel = 1- P(both subsystems fail)

P(Subsystem A fails) = 1.92.

P(Subsystem B fails) = 1.92.

Overall system will operate if at least one of these subsystems works.

Rel = P(at least one subsystem works)

Equivalently

Rel = 1- P(both subsystems fail) Rel = 1(1.92)2 = 0.9639

(9)

Generally with k subsystems, the reliability is Rel= 1(1.92)k

We can examine this with different values of k k<-1:10

plot(k, 1-(1-.9^2)^k, xlab = "Number of Subsystems", ylab = "Reliability") abline(.99, 0)

calculates and plots the reliability for various levels of backup:

2 4 6 8 10 0.85 0.90 0.95 1.00 Number of Subsystems Reliability

(10)

Summary

The reliability of a system, i.e. the probability that it is functioning properly depends on

• the reliability of each of its the components • the type of system

Reliability with Series Systems

The problem with series systems is that reliability quickly decreases as the number of components increases.

Reliability with Parallel Systems

The problem with parallel systems is that the ‘law of diminishing re-turns’ operates. The rate of increase in reliability with each additional component decreases as the number of components increases.

References

Related documents

Mere is that way [masculine] on and off the field. But Mere can’t say that she’s lesbian. In 20xx, her uncle found out that she was lesbian. … She got chased from her home and went

There are different models for different purposes, such as correlation models to create and evaluate a portfolio, and covariance models to forecast VaR on a daily basis for a

The first step is in 2011 when Team Kshatriya will compete at the most prestigious Mini Baja event, SAE Mini Baja Asia India at NATRAX, Pithampur,Madhya Pradesh.. Our goal is to

In Section 2 , we examine orthogonal decompositions of real inner product gyrogroups and construct left and right coset spaces, gyroprojectors, quotient gyrogroups, and give a

Catia V5 (13000+ h) Part + Assembly Design Surfaces (GSD); Drafting DMU: Kinematik Space Analysis/Navigator Sheetmetal Fitting Mold Tooling Design Tubing Electrical Harness Assembly

Compiler is a computer program that reads a program written in one language and translates it in to another language, while an assembler can be considered a special type of

With all four financing mechanisms, price control results in a price decrease in both the monopolistic and the competitive region due to the incumbent ’s strong market power.. There

Analizom upitnika upitnika UIQ-7 (utjecaj poremećaja funkcije mokraćnog mjehura na svakodnevni život) prije i nakon tri, šest i dvanaest mjeseci od operacijske