summaryrefslogtreecommitdiff
path: root/3308/CH20/EX20.1
diff options
context:
space:
mode:
Diffstat (limited to '3308/CH20/EX20.1')
-rwxr-xr-x3308/CH20/EX20.1/Ex20_1.sce22
-rwxr-xr-x3308/CH20/EX20.1/Ex20_1.txt5
2 files changed, 27 insertions, 0 deletions
diff --git a/3308/CH20/EX20.1/Ex20_1.sce b/3308/CH20/EX20.1/Ex20_1.sce
new file mode 100755
index 000000000..93bd6b3d2
--- /dev/null
+++ b/3308/CH20/EX20.1/Ex20_1.sce
@@ -0,0 +1,22 @@
+clc
+// Given that
+to=0.005//in inch depth of cut
+V=400//in ft/min cutting speed
+X=10//in degree rake angle
+w=0.25//in inch width of cut
+tc=0.009//in inch chip thickness
+Fc=125//in lb Cutting force
+Ft=50//in lb thrust force
+
+// Sample Problem on page no. 548
+
+printf("\n # Relative Energies in cutting # \n")
+
+r=to/tc//cutting ratio
+R=sqrt((Ft^2)+(Fc^2))
+B=acosd(Fc/R)+X//friction angle
+F=R*sind(B)
+P=((F*r)/Fc)*100
+printf("\n\n Percentage of total energy going into overcoming friction =%d pecrent",P)
+
+//Answer in the book is approximated to 32 due to approximation in calculation of R and B
diff --git a/3308/CH20/EX20.1/Ex20_1.txt b/3308/CH20/EX20.1/Ex20_1.txt
new file mode 100755
index 000000000..7c219531f
--- /dev/null
+++ b/3308/CH20/EX20.1/Ex20_1.txt
@@ -0,0 +1,5 @@
+
+ # Relative Energies in cutting #
+
+
+ Percentage of total energy going into overcoming friction =31 pecrent \ No newline at end of file