diff options
Diffstat (limited to '1364/CH9/EX9.6.1/9_6_1.sce')
-rwxr-xr-x | 1364/CH9/EX9.6.1/9_6_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1364/CH9/EX9.6.1/9_6_1.sce b/1364/CH9/EX9.6.1/9_6_1.sce new file mode 100755 index 000000000..00341732f --- /dev/null +++ b/1364/CH9/EX9.6.1/9_6_1.sce @@ -0,0 +1,13 @@ +clc
+//initialisation of variables
+s= 0.8
+l= 1//ft
+r= 8
+//CALCULATIONS
+Hw= (s/r)^(2/3)*l
+Qw= 1.5*Hw^(2.5)
+R= (1/Hw)^2.5
+Q= Qw*R
+//RESULTS
+printf (' depth of water= %.3f ft',Hw)
+printf (' \n rate of flow of fluid= %.1f ft^3/sec',Q)
|