summaryrefslogtreecommitdiff
path: root/3257/CH7/EX7.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3257/CH7/EX7.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3257/CH7/EX7.9')
-rwxr-xr-x3257/CH7/EX7.9/Ex7_9.sce15
-rwxr-xr-x3257/CH7/EX7.9/Ex7_9.txt6
2 files changed, 21 insertions, 0 deletions
diff --git a/3257/CH7/EX7.9/Ex7_9.sce b/3257/CH7/EX7.9/Ex7_9.sce
new file mode 100755
index 000000000..14bbefccc
--- /dev/null
+++ b/3257/CH7/EX7.9/Ex7_9.sce
@@ -0,0 +1,15 @@
+// Estimating cup diameter and earing
+clc
+r_0 = 0.9
+r_45 = 1.3
+r_90 = 1.9
+theta1 = 0 // angle in degree
+theta2 = 45 // angle in degree
+theta3 = 90 // angle in degree
+printf("\n Example 7.9")
+R_avg = (r_0+2*r_45+r_90)/4
+del_r = (r_0-2*r_45+r_90)/4
+printf(" \n\n For average R value %.2f LDR of steel can be approximated to be 2.5 (deduced from figure).",R_avg)
+if del_r>0 then
+ printf("\n\n Ear will form in deep drawing of this material.")
+end
diff --git a/3257/CH7/EX7.9/Ex7_9.txt b/3257/CH7/EX7.9/Ex7_9.txt
new file mode 100755
index 000000000..32a4aaba5
--- /dev/null
+++ b/3257/CH7/EX7.9/Ex7_9.txt
@@ -0,0 +1,6 @@
+
+ Example 7.9
+
+ For average R value 1.35 LDR of steel can be approximated to be 2.5 (deduced from figure).
+
+ Ear will form in deep drawing of this material. \ No newline at end of file