diff options
Diffstat (limited to '3886/CH20/EX20.9')
-rw-r--r-- | 3886/CH20/EX20.9/20_9.sce | 10 | ||||
-rw-r--r-- | 3886/CH20/EX20.9/20_9.txt | 6 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3886/CH20/EX20.9/20_9.sce b/3886/CH20/EX20.9/20_9.sce new file mode 100644 index 000000000..a075f95f6 --- /dev/null +++ b/3886/CH20/EX20.9/20_9.sce @@ -0,0 +1,10 @@ +//Composite pulley
+//refer fig. 20.7 (a) and (b)
+//Let aA be acceleration of 4000 N block and aB that of 2000 N block,and alpha be the angular velocity of pulley, then
+//aA=0.5*alpha
+//aB=0.75*alpha
+//Writing dynamic equilibrium equation for the two blocks and from kinetic equation of pulley
+alpha=500/245.97 //rad/sec^2
+TA=4000*(1-(0.5*2.033)/(9.81)) //N
+TB=2000*(1+(0.75*2.033)/(9.81)) //N
+printf("\nalpha=%.3f rad/sec^2\nTA=%.3f N\nTB=%.3f N",alpha,TA,TB)
diff --git a/3886/CH20/EX20.9/20_9.txt b/3886/CH20/EX20.9/20_9.txt new file mode 100644 index 000000000..807d4fa4c --- /dev/null +++ b/3886/CH20/EX20.9/20_9.txt @@ -0,0 +1,6 @@ +
+--> exec('E:\My program EM\20. Rotation of rigid bodies\20.9.sce', -1)
+
+alpha=2.033 rad/sec^2
+TA=3585.525 N
+TB=2310.856 N
\ No newline at end of file |