summaryrefslogtreecommitdiff
path: root/3648/CH3/EX3.7/Ex3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH3/EX3.7/Ex3_7.sce')
-rw-r--r--3648/CH3/EX3.7/Ex3_7.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH3/EX3.7/Ex3_7.sce b/3648/CH3/EX3.7/Ex3_7.sce
new file mode 100644
index 000000000..1b26b2fce
--- /dev/null
+++ b/3648/CH3/EX3.7/Ex3_7.sce
@@ -0,0 +1,9 @@
+//Example 3_7
+clc();
+clear;
+//To calculate the time taken to travel
+v0=16.7 //units in meters/sec
+a=1.5 //units in meters/sec^2
+x=70 //units in meters
+t=-((-v0)+sqrt(v0^2-(4*(a/2)*x)))/(2*(a/2)) //units in sec
+printf("Time taken to travel T=%.1f sec",t)