blob: c3f8a027f1971a9a41257e679b2efdaad5ed568b (
plain)
1
2
3
4
5
6
|
//Determine reactions at contact
//Refer fig.2.16(b)
//applying Lami's Theorem
R1=400*sind(180-45)/sind(60+45) //N
R2=400*sind(180-60)/sind(60+45) //N
printf("The reactions developed are:-\nR1=%.1f N \nR2=%.1f N",R1,R2)
|