diff options
Diffstat (limited to '1466/CH4/EX4.11')
-rwxr-xr-x | 1466/CH4/EX4.11/4_11.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1466/CH4/EX4.11/4_11.sce b/1466/CH4/EX4.11/4_11.sce new file mode 100755 index 000000000..389b4fe55 --- /dev/null +++ b/1466/CH4/EX4.11/4_11.sce @@ -0,0 +1,15 @@ +
+clc
+//initialisation of variables
+A= 4 //in^2
+g= 32.2 //ft/sec^2
+c= 0.64
+H= 10 //ft
+Ha= 34 //ft
+//CALCULATIONS
+v= sqrt(H*2*g/(1+(1/c-1)^2))
+D= (A/144)*v
+vc= v/c
+Hc= H+Ha-(vc^2/(2*g))
+//RESULTS
+printf (' Pessure at the vvena contracta = %.1f ft',Hc)
|