blob: 59545059092e657aa555f9fc19c4921a5962ab88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// chip dimensions in grinding
clc
D = 150 // diameter in mm
d = 0.03 // depth in mm
C = 3 // per mm^2
r = 12 // radius in mm
v = 0.4 // velocity in m/sec
V = 25 // velocity in m/sec
printf("\n Example 9.1")
l = sqrt(D*d)
t = sqrt((4*v/(V*C*r))*sqrt(d/D))
printf("\n Length of chip is %.2f mm. \n Thickness of chip is %.3f mm.",l,t)
|