5.35 Mean Time Between Failure Calculations The reliability of a piece of elec t
ID: 3599870 • Letter: 5
Question
5.35 Mean Time Between Failure Calculations The reliability of a piece of elec tronic equipment is usually measured in terms of Mean Time Between Failures (MTBF), where MTBF is the average time that the piece of equip- ment can operate before a failure occurs in it. For large systems contain- ing many pieces of electronic equipment, it is customary to determine the MTBFs of each component and to calculate the overall MTBF of the sys- tem from the failure rates of the individual components. If the system is structured like the one shown in Figure 5.12, every component must worlkExplanation / Answer
package com;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.util.ArrayList;
import java.util.Random;
import javax.swing.JPanel;
public class Graph extends JPanel {
public Graph() {
setSize(500, 500);
}
@Override
public void paintComponent(Graphics g) {
Graphics2D gr = (Graphics2D) g; // This is if you want to use Graphics2D
// Now do the drawing here
ArrayList<Integer> scores = new ArrayList<Integer>(10);
Random r = new Random();
for (int i : scores) {
i = r.nextInt(20);
System.out.println(r);
}
int y1;
int y2;
for (int i = 0; i < scores.size() - 1; i++) {
y1 = (scores.get(i)) * 10;
y2 = (scores.get(i + 1)) * 10;
gr.drawLine(i * 10, y1, (i + 1) * 10, y2);
}
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.