summaryrefslogtreecommitdiff
path: root/3886/CH13/EX13.2/13_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH13/EX13.2/13_2.sce')
-rw-r--r--3886/CH13/EX13.2/13_2.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3886/CH13/EX13.2/13_2.sce b/3886/CH13/EX13.2/13_2.sce
new file mode 100644
index 000000000..bee681c1a
--- /dev/null
+++ b/3886/CH13/EX13.2/13_2.sce
@@ -0,0 +1,10 @@
+//Person jumping over ditch
+//refer fig. 13.4
+h=2 //m
+Range=3 //m
+//let t be the time of flight and u the minimum horizontal velocity required
+//consider vertical motion
+t=sqrt((2*2)/(9.81)) //sec
+//consider horizontal motion of uniform velocity
+u=3/0.6386 //m/sec
+printf("Person should jump with u=%.2f m/sec",u)