blob: 5dc08eb40b095831be06baeeb174ec04c8545e56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--> //Determine reactions at contact
--> //Refer fig.2.16(b)
--> //applying Lami's Theorem
--> R1=400*sind(180-45)/sind(60+45) //N
R1 =
292.82032
--> R2=400*sind(180-60)/sind(60+45) //N
R2 =
358.63019
--> printf("The reactions developed are:-\nR1=%.1f N \nR2=%.1f N",R1,R2)
The reactions developed are:-
R1=292.8 N
R2=358.6 N
|