summaryrefslogtreecommitdiff
path: root/3526/CH7/EX7.8/EX7_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3526/CH7/EX7.8/EX7_8.sce')
-rw-r--r--3526/CH7/EX7.8/EX7_8.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3526/CH7/EX7.8/EX7_8.sce b/3526/CH7/EX7.8/EX7_8.sce
new file mode 100644
index 000000000..e269ec695
--- /dev/null
+++ b/3526/CH7/EX7.8/EX7_8.sce
@@ -0,0 +1,13 @@
+clc;funcprot(0);//EXAMPLE 7.8
+//page 193
+// Initialisation of Variables
+m=9;.........//Weibull modulus of an ceramic
+sigma1=250;.......//The flexural strength in MPa
+F1=0.4;.......//probability of failure
+F2=0.1;.......//Expected the probability of failure
+//CALCULATIONS
+sigma2=exp(log(sigma1)-(log(log(1/(1-F1)))/m ));.....// The characteristic strength of the ceramic
+sigma3=exp((log(log(1/(1-F2)))/m)+log(sigma2));........//Expected level of stress that can be supported in MPa
+disp(sigma2,"The characteristic strength of the ceramic in MPa:")
+disp(sigma3,"Expected level of stress that can be supported in MPa:")
+