summaryrefslogtreecommitdiff
path: root/2066/CH4/EX4.16
diff options
context:
space:
mode:
Diffstat (limited to '2066/CH4/EX4.16')
-rwxr-xr-x2066/CH4/EX4.16/4_16.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2066/CH4/EX4.16/4_16.sce b/2066/CH4/EX4.16/4_16.sce
new file mode 100755
index 000000000..802c8ca54
--- /dev/null
+++ b/2066/CH4/EX4.16/4_16.sce
@@ -0,0 +1,17 @@
+clc
+clear
+//Initialization of variables
+q=240 //ft^3/sec/ft
+v1=60 //ft/s
+gam=62.4
+rho=1.94 //slug/ft^3
+g=32.2 //ft/s^2
+//calculations
+y1=q/v1
+v2=8.6 //ft/s
+y2=28 //ft
+hl= (y1+ v1^2 /(2*g)) - (y2+ v2^2 /(2*g))
+hpp=hl*q*gam/550
+//results
+printf("Downstream depth = %.1f ft",y2)
+printf("\n Horsepower dissipation = %d hp per foot width",hpp)