diff options
Diffstat (limited to '3886/CH20/EX20.3/20_3.sce')
-rw-r--r-- | 3886/CH20/EX20.3/20_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3886/CH20/EX20.3/20_3.sce b/3886/CH20/EX20.3/20_3.sce new file mode 100644 index 000000000..dd394d594 --- /dev/null +++ b/3886/CH20/EX20.3/20_3.sce @@ -0,0 +1,14 @@ +//Wheel rotating about fixed axis
+//Initial velocity
+omega0=2.0944 //rad/sec
+t=70 //sec
+//Angular displacement
+theta=100*%pi //radian
+//Using kinematic equation
+alpha=0.06839 //rad/sec^2
+//Angular velocity at the end of 70 seconds interval
+omega=2.0944+0.06839*70 //rad/sec
+//Let the time required for the velocity to reach 100 rpm be t
+t=(((200*%pi)/(60))-(2.0944))*((1)/(0.06839)) //sec
+printf("\nomega=%.3f rad/sec\nt=%.3f sec",omega,t)
+
|