diff options
Diffstat (limited to '629/CH13/EX13.8/example13_8.sce')
-rw-r--r-- | 629/CH13/EX13.8/example13_8.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/629/CH13/EX13.8/example13_8.sce b/629/CH13/EX13.8/example13_8.sce new file mode 100644 index 000000000..86af6e81b --- /dev/null +++ b/629/CH13/EX13.8/example13_8.sce @@ -0,0 +1,8 @@ +clear
+clc
+//Example 13.8 FLOW RATE FOR A TRIANGULAR WEIR
+H=0.43; //head on weir[m]
+g=9.81; //[m/s^2]
+//Discharge
+Q=0.179*sqrt(2*g*(H^5)) //[m^3/s]
+printf("\n The flow of water over the weir = %.3f m^3/s.\n",Q)
\ No newline at end of file |