diff options
Diffstat (limited to '3886/CH15/EX15.3/15_3.sce')
-rw-r--r-- | 3886/CH15/EX15.3/15_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3886/CH15/EX15.3/15_3.sce b/3886/CH15/EX15.3/15_3.sce new file mode 100644 index 000000000..477278c0e --- /dev/null +++ b/3886/CH15/EX15.3/15_3.sce @@ -0,0 +1,13 @@ +//Motorist travelling
+//refer fig. 15.5
+u=(70*1000)/(60*60) //m/sec
+v=0
+s=50 //m
+//Using equation of linear motion
+a=-(19.44^2)/(2*50) //m/sec^2
+//again
+t=19.44/3.78 //sec
+//Applying equilibrium equationswe get
+mu=(3.78)/(9.81)
+printf("\nt=%.2f sec\nmu=%.3f ",t,mu)
+
|