summaryrefslogtreecommitdiff
path: root/1325/CH8/EX8.2/8_2.sce
blob: d24caee557fbc2056c4bf09610f4912a666b5c61 (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
29
30
31
32
//To find braking torque applied to the drum
clc
//given

OH=15//in
l=OH
u=0.3
P=100//lb
phi=atan(u)
//according to fig 170(b)
//for clockwise rotation
a=6//from figure
x=r*sin(phi)//in inches;radius of friction circle
Tb=P*l*x/a//braking torque on the drum
//for counter clockwise rotation
a1=5.5//in
Tb1=P*l*x/a1//braking torque on the drum
//according to figure 172(a)
//for clockwise rotation
a2=6.48//from figure
x=r*sin(phi)//in inches;radius of friction circle
Tb2=P*l*x/a2//braking torque on the drum
//for counter clockwise rotation
a3=6.38//in
Tb3=P*l*x/a3//braking torque on the drum
T1=ceil(Tb1)
T2=ceil(Tb2)
T3=ceil(Tb3)
printf("\nbraking torque on drum\nWhen dimensions are measured from fig 170(b)\nFor clockwise rotation= %.f lb in\nFor counter clockwise rotation= %.f lb in\nWhen dimensions are measured from fig 171(a)\nFor clockwise rotation= %.f lb in\nFor counter clockwise rotation= %.f lb in",Tb,T1,T2,T3)