summaryrefslogtreecommitdiff
path: root/3513/CH9/EX9.3/ch9_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3513/CH9/EX9.3/ch9_3.sce')
-rw-r--r--3513/CH9/EX9.3/ch9_3.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3513/CH9/EX9.3/ch9_3.sce b/3513/CH9/EX9.3/ch9_3.sce
new file mode 100644
index 000000000..91f8cb150
--- /dev/null
+++ b/3513/CH9/EX9.3/ch9_3.sce
@@ -0,0 +1,21 @@
+//Calculate the reliability of the configuration
+//page no 219
+clear
+clc;
+RA = 0.8;
+RB = 0.8;
+RC = 0.8;
+RD = 0.95;
+RE = 0.85;
+
+RABC = 1-((1-RA)*(1-RB)*(1-RC));
+RABCDE1 = RABC*RD*RE;
+mprintf("\RABC = %.4f \n",RABC);
+mprintf("\RABCDE = %.4f \n",RABCDE1);
+RABC=0.992;
+RD=0.95;
+RE = 1-((1-RE)*(1-RE));
+RABCDE2 = RABC*RD*RE;
+mprintf("\(b) WKT RABCDE = %.4f \n",RABCDE2);
+I=RABCDE2-RABCDE1;
+mprintf("\Improvement in R = %.4f \n",I);