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 /3308/CH25/EX25.1 | |
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 '3308/CH25/EX25.1')
-rwxr-xr-x | 3308/CH25/EX25.1/Ex25_1.sce | 28 | ||||
-rwxr-xr-x | 3308/CH25/EX25.1/Ex25_1.txt | 7 |
2 files changed, 35 insertions, 0 deletions
diff --git a/3308/CH25/EX25.1/Ex25_1.sce b/3308/CH25/EX25.1/Ex25_1.sce new file mode 100755 index 000000000..a58514c32 --- /dev/null +++ b/3308/CH25/EX25.1/Ex25_1.sce @@ -0,0 +1,28 @@ +clc
+// Given that
+D=200//in mm Grinding Wheel diameter
+d=0.05//in mm depth of cut
+v=30//m/min workpiece velocity
+V=1800//in m/min wheel velocity
+
+// Sample Problem on page no. 713
+
+printf("\n # Chip Dimensions in Surface Grinding # \n")
+
+l=sqrt(D*d)
+l1=l/2.54*(10^-1)
+printf("\n\n Undeformed Chip Length = %f mm",l1)
+
+//the answer in the book is approximated to 0.13 in
+
+//assume
+C=2//in mm
+r=15
+t=sqrt(((4*v)/(V*C*r))*sqrt(d/D))
+t1=t/2.54*(10^-1)
+printf("\n\n Undeformed chip Thickness = %f in",t1)
+
+//the answer in the book is approximated to 0.00023in
+
+
+
diff --git a/3308/CH25/EX25.1/Ex25_1.txt b/3308/CH25/EX25.1/Ex25_1.txt new file mode 100755 index 000000000..982289851 --- /dev/null +++ b/3308/CH25/EX25.1/Ex25_1.txt @@ -0,0 +1,7 @@ +
+ # Chip Dimensions in Surface Grinding #
+
+
+ Undeformed Chip Length = 0.124499 mm
+
+ Undeformed chip Thickness = 0.000233 in
\ No newline at end of file |