diff options
Diffstat (limited to '1466/CH5/EX5.3/5_3.sce')
-rwxr-xr-x | 1466/CH5/EX5.3/5_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1466/CH5/EX5.3/5_3.sce b/1466/CH5/EX5.3/5_3.sce new file mode 100755 index 000000000..4fe270d4d --- /dev/null +++ b/1466/CH5/EX5.3/5_3.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+Q= 0.0055 //ft^3/sec
+h= 0.002 //ft
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+Cd= (Q/h)*15/(8*sqrt(2*g))
+//RESULTS
+printf (' Coefficiant of discharge = %.3f ',Cd)
|