diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3257/CH7/EX7.9 | |
download | Scilab-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-x | 3257/CH7/EX7.9/Ex7_9.sce | 15 | ||||
-rwxr-xr-x | 3257/CH7/EX7.9/Ex7_9.txt | 6 |
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 |