summaryrefslogtreecommitdiff
path: root/3647/CH1/EX1.1/Ex1_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3647/CH1/EX1.1/Ex1_1.sce')
-rw-r--r--3647/CH1/EX1.1/Ex1_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3647/CH1/EX1.1/Ex1_1.sce b/3647/CH1/EX1.1/Ex1_1.sce
new file mode 100644
index 000000000..e1e33ef9b
--- /dev/null
+++ b/3647/CH1/EX1.1/Ex1_1.sce
@@ -0,0 +1,15 @@
+//Velocity calculation
+clc
+//initialisation of variables
+t=20//ft
+t1=30//ft
+v=1320//ft/s
+p=25//sec
+q=15//ft/s
+v1=v/t//ft/s
+v2=v/t1//ft/s
+T=(v2-v1)/p//ft/s^2
+V=v2-q*-T//ft/s
+V1=-V^2/(2*T)//ft/s
+//RESULTS
+printf('the velocity time is=% f ft/s',V1)