diff options
Diffstat (limited to '3814/CH8/EX8.5/Ex8_5.sce')
-rw-r--r-- | 3814/CH8/EX8.5/Ex8_5.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3814/CH8/EX8.5/Ex8_5.sce b/3814/CH8/EX8.5/Ex8_5.sce new file mode 100644 index 000000000..20eaab5ab --- /dev/null +++ b/3814/CH8/EX8.5/Ex8_5.sce @@ -0,0 +1,17 @@ +// determine discharge and head with two identail
+clc
+f=0.025
+l=70
+D=0.3
+k=2.5
+g=9.8
+m=((f*l/D)+k)/(2*g*(((%pi*D*D)/4)^2))
+disp(m)
+mprintf('\n H1 =15 +%d Q^2',m)
+b=5.35
+a=112.8
+c=7.9
+Q=(1/(2*a))*(b+sqrt((b^2)+(4*a*c)))
+mprintf('\n Q= %f m3/s',Q)
+H1=15+85*Q^2
+mprintf('\n H1 = %f m',H1)
|