blob: 3452ee8a956519cb860235d26e868a8ea0b7d7ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Least value of alpha and reactions developed
//refer fig. 5.16
//Using law of friction and equilibrium
//FA=0.25*NA
//FB=0.4*NB
//NA+0.4*NB=1100
//0.25*NA=NB
//Solving this we get
NA=1000 //N
FA=0.25*NA //N
NB=0.25*NA //N
FB=0.4*250 //N
//Taking moment about A
alpha=atand(3) //degree
printf("\nNA=%0.2f N\nFA=%0.2f N\nNB=%0.2f N\nFB=%0.2f N\nalpha=%0.2f degree",NA,FA,NB,FB,alpha)
|