summaryrefslogtreecommitdiff
path: root/1703/CH7/EX7.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1703/CH7/EX7.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1703/CH7/EX7.7')
-rwxr-xr-x1703/CH7/EX7.7/7_7.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1703/CH7/EX7.7/7_7.sce b/1703/CH7/EX7.7/7_7.sce
new file mode 100755
index 000000000..847c3c7f2
--- /dev/null
+++ b/1703/CH7/EX7.7/7_7.sce
@@ -0,0 +1,14 @@
+clc
+//initialisation of variables
+clear
+h1= 3 //ft
+h2= 4 //ft
+r= 0.95 //m^-1
+k= 27.65 //sec
+Cd= 0.95
+//CALCULATIONS
+T= k*(log(r*sqrt(h2)-1)+(r*sqrt(h2)-1))-k*(log(r*sqrt(h1)-1)+(r*sqrt(h1)-1))
+h= ((h2-h1)/Cd)^2
+//RESULTS
+printf ('Time = %.2f sec',T)
+printf ('\n Increase in water level = %.2f ft',h)