summaryrefslogtreecommitdiff
path: root/213/CH10/EX10.18/10_18.sce
blob: 32f001d14822916923db0b04decfc658884cc472 (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
//To find power lost in friction
clc
//Given:
D=200/1000,R=D/2 //m
W=30*1000 //N
alpha=120/2 //degrees
mu=0.025
N=140 //rpm
//Solution:
//Calculating the angular speed of the shaft
omega=2*%pi*N/60 //rad/s
//Power lost in friction assuming uniform pressure:
//Calculating the total frictional torque
T=2/3*mu*W*R*(1/sind(alpha)) //N-m
//Calculating the power lost in friction
P1=T*omega //Power lost in friction, W
//Power lost in friction assuming uniform wear:
//Calculating the total frictional torque
T=1/2*mu*W*R*(1/sind(alpha)) //N-m
//Calculating the power lost in friction
P2=T*omega //Power lost in friction, W
//Resluts:
printf("\n\n Power lost in friction assuming uniform pressure, P = %d W.\n",P1)
printf(" Power lost in friction assuming uniform wear, P = %.1f W.\n\n",P2)