summaryrefslogtreecommitdiff
path: root/3886/CH6/EX6.6/6_6.sce
blob: 5abfc27d7f3fcb50e978c97d5794fcd3e74f2b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Finding the additional pulleys required
//if n is number of movable pulleys then
n=3
VR=2^n
eta=0.8
MA=eta*VR
P=6000/6.4  //N
//In second case
Effort=520  //N
//efficiency eta=0.80-n1*0.05
//n1=number of additional pulleys required=(n-3)
//thus
//W=P[0.8-(n-3)*0.05]*2^n
//by using trial and erroe method
nfinal=4
printf("Number of movable pulleys required=%.0f",nfinal)