blob: 033ee5920b64a6f5a9b39c7fd5ba3ae0f40a2cf0 (
plain)
1
2
3
4
5
6
|
//Finding forces developed in wires
//applying Lami's theorem
T1=150*sind(90+60)/sind(45+30) //N
T2=150*sind(180-45)/sind(45+30) //N
printf("The forces in the wires are:-\nT1=%.1f N \nT2=%.1f N",T1,T2)
|