blob: a58514c32d4da8d5f4511174a83425b26ecbb21a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|