summaryrefslogtreecommitdiff
path: root/3557/CH14/EX14.10/Ex14_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3557/CH14/EX14.10/Ex14_10.sce')
-rw-r--r--3557/CH14/EX14.10/Ex14_10.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3557/CH14/EX14.10/Ex14_10.sce b/3557/CH14/EX14.10/Ex14_10.sce
new file mode 100644
index 000000000..68072e84a
--- /dev/null
+++ b/3557/CH14/EX14.10/Ex14_10.sce
@@ -0,0 +1,15 @@
+//Example 14.10//
+a=175;//Mpa //the tensile strength of pure aluminium
+b=1.02*10^-1;//kg/mm^2/Mpa
+c=2.70;//Mg/m^3 //density of aluminium
+d=10^3;//kg/Mg //given
+e=1;//m^3 //cubic meter
+f=10^9;//mm^3 //given
+sp=(a*b)/(c*d*(e/f))
+mprintf("sp = %e mm",sp)
+a1=350;//mm //the tensile strength of the dispersion strengthened aluminium
+b1=1.02*10^-1;//mm//given
+c1=2.83;//Mg/m^3// density of aluminium
+g=10^-6;//given
+s=(a1*b1)/(c1*g)
+mprintf("\ns = %e mm",s)