diff options
Diffstat (limited to '3513/CH9/EX9.2/ch9_2.sce')
-rw-r--r-- | 3513/CH9/EX9.2/ch9_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3513/CH9/EX9.2/ch9_2.sce b/3513/CH9/EX9.2/ch9_2.sce new file mode 100644 index 000000000..3f9355d79 --- /dev/null +++ b/3513/CH9/EX9.2/ch9_2.sce @@ -0,0 +1,15 @@ +//Calculate the reliability of the configuration
+//page no 218
+clear
+clc;
+RA = 0.7;
+RB = 0.7;
+RC = 0.9;
+RD = 0.8;
+RE = 0.9;
+
+RAB = 1-((1-RA)*(1-RB));
+RABC=RAB*RC;
+RABCD = 1-((1-RABC)*(1-RD));
+RABCDE = RABCD*RE;
+mprintf("\RABCDE = %.4f \n",RABCDE);
|