summaryrefslogtreecommitdiff
path: root/1364/CH13/EX13.3.1/13_3_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1364/CH13/EX13.3.1/13_3_1.sce')
-rwxr-xr-x1364/CH13/EX13.3.1/13_3_1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1364/CH13/EX13.3.1/13_3_1.sce b/1364/CH13/EX13.3.1/13_3_1.sce
new file mode 100755
index 000000000..c297a8d76
--- /dev/null
+++ b/1364/CH13/EX13.3.1/13_3_1.sce
@@ -0,0 +1,14 @@
+clc
+//initialisation of variables
+C= 100 //ft^0.5/sec
+m= 2 //ft
+i= 0.0003
+y1= 2.6 //ft
+y2= 2.5 //ft
+//CALCULATIONS
+u= C*sqrt(m*i)
+f= u^2/(2*32.2)
+x= i/(1-f)
+x1= (y1-y2)/x
+//RESULTS
+printf (' Distance= %.f ft',x1)