summaryrefslogtreecommitdiff
path: root/1466/CH10/EX10.2/10_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1466/CH10/EX10.2/10_2.sce')
-rwxr-xr-x1466/CH10/EX10.2/10_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1466/CH10/EX10.2/10_2.sce b/1466/CH10/EX10.2/10_2.sce
new file mode 100755
index 000000000..0a860cc1c
--- /dev/null
+++ b/1466/CH10/EX10.2/10_2.sce
@@ -0,0 +1,15 @@
+
+clc
+//initialisation of variables
+clear
+d= 3 //ft
+r= 200
+Q= 3500 //gal/min
+k= 100
+d1= 1.9 //ft
+
+//CALCULATIONS
+D= d-(Q/(k*r))-d1
+
+//RESULTS
+printf (' Required depth= %.3f ft',D)