summaryrefslogtreecommitdiff
path: root/1466/CH4/EX4.3/4_3.SCE
diff options
context:
space:
mode:
Diffstat (limited to '1466/CH4/EX4.3/4_3.SCE')
-rwxr-xr-x1466/CH4/EX4.3/4_3.SCE14
1 files changed, 14 insertions, 0 deletions
diff --git a/1466/CH4/EX4.3/4_3.SCE b/1466/CH4/EX4.3/4_3.SCE
new file mode 100755
index 000000000..d71ee230c
--- /dev/null
+++ b/1466/CH4/EX4.3/4_3.SCE
@@ -0,0 +1,14 @@
+
+clc
+//initialisation of variables
+d= 0.62
+g= 32.2 //ft/sec^2
+b= 4 //ft
+H1= 4 //ft
+a= 1 //ft
+//CALCULATIONS
+D= (2/3)*sqrt(2*g)*d*b*((H1+a)^1.5-(H1)^1.5)
+D1= sqrt(2*g)*d*a*b*sqrt(H1+a)
+Dt= D+D1
+//RESULTS
+printf (' Quantity of water flowing thourght the pipe =%.1f ft^3/sec',Dt)