diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3862/CH2/EX2.32 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3862/CH2/EX2.32')
-rw-r--r-- | 3862/CH2/EX2.32/Ex2_32.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3862/CH2/EX2.32/Ex2_32.sce b/3862/CH2/EX2.32/Ex2_32.sce new file mode 100644 index 000000000..8abd82138 --- /dev/null +++ b/3862/CH2/EX2.32/Ex2_32.sce @@ -0,0 +1,22 @@ +clear +// + +//variable declaration + +//A cable car used for carrying materials in a hydroelectric project is at rest on a track formed at an angle of 30° with the vertical. The gross weight of the car and its load is 60 kN and its centroid is at a point 800 mm from the track half way between the axles. The car is held by a cable . The axles of the car are at a distance 1.2 m. Find the tension in the cables and reaction at each of the axles neglecting friction of the track. + +W=60.0 //gross weight of car,KN +theta=60.0*%pi/180.0 + + +T=W*sin(theta) +printf("\n T= %0.4f KN",T) + +//Taking moment equilibrium condition about upper axle point on track, we get + +R1=(-T*600.0+W*sin(theta)*800.0+W*cos(theta)*600.0)/1200.0 +printf("\n R1= %0.4f KN",R1) + +//Sum of forces normal to the plane = 0, gives +R2=W*cos(theta)-R1 +printf("\n R2= %0.4f KN",R2) |