diff options
Diffstat (limited to '3886/CH3/EX3.14/Ex3_14.sce')
-rw-r--r-- | 3886/CH3/EX3.14/Ex3_14.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3886/CH3/EX3.14/Ex3_14.sce b/3886/CH3/EX3.14/Ex3_14.sce new file mode 100644 index 000000000..87699a2ea --- /dev/null +++ b/3886/CH3/EX3.14/Ex3_14.sce @@ -0,0 +1,10 @@ +//Tension in the cable and reaction at axles
+//Refer fig.3.25 (a)&(b)
+//assume T as tension in the rope parallel to track
+//applying equilibrium conditions
+T=60*sind(60) //kN
+//applying moment equilibrium condition about upper axle reaction point we get
+R1=(-T*600+60*800*sind(60)+60*600*cosd(60))/1200 //kN
+R2=60*cosd(60)-R1 //kN
+printf("Required values are:-\nT=%.3f kN\nR1=%.3f kN\nR2=%.2f kN",T,R1,R2)
+
|