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/CH8/EX8.2 | |
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/CH8/EX8.2')
-rwxr-xr-x | 3257/CH8/EX8.2/Ex8_2.sce | 23 | ||||
-rwxr-xr-x | 3257/CH8/EX8.2/Ex8_2.txt | 9 |
2 files changed, 32 insertions, 0 deletions
diff --git a/3257/CH8/EX8.2/Ex8_2.sce b/3257/CH8/EX8.2/Ex8_2.sce new file mode 100755 index 000000000..041705b76 --- /dev/null +++ b/3257/CH8/EX8.2/Ex8_2.sce @@ -0,0 +1,23 @@ +// Comparison of forming and machining energy
+clc
+d_i = 10 // diameter in mm
+l = 125 // length in mm
+del_d = 0.5 // reduction in diameter in mm
+K = 1275 // constant in MPa
+n = 0.45 // constant
+Es = 4.1 // Specific energy in machining in W-S/mm^3
+printf("\n Example 8.2")
+printf("\n\n Part A:")
+d_o = d_i - del_d
+epsilon = log((d_i/d_o)^2)
+u = K*1e6*epsilon^(n+1)/(1+n)
+W_tension = u*%pi*l*1e-3*(del_d*1e-2)^2
+
+printf("\n Work done by pulling in tension is %d Nm.",W_tension)
+printf("\n\n Part B:")
+V = %pi/4*(d_i^2-d_o^2)*l
+W_mach = Es*V
+ratio = W_mach/W_tension
+printf("\n Work done by machining on lathe is %d Nm.",W_mach)
+printf("\n Work done on machining is about %d time higher than that of tension.",ratio)
+
diff --git a/3257/CH8/EX8.2/Ex8_2.txt b/3257/CH8/EX8.2/Ex8_2.txt new file mode 100755 index 000000000..78b642d59 --- /dev/null +++ b/3257/CH8/EX8.2/Ex8_2.txt @@ -0,0 +1,9 @@ +
+ Example 8.2
+
+ Part A:
+ Work done by pulling in tension is 317 Nm.
+
+ Part B:
+ Work done by machining on lathe is 3924 Nm.
+ Work done on machining is about 12 time higher than that of tension.
\ No newline at end of file |