diff options
Diffstat (limited to '1466/CH4/EX4.8/4_8.sce')
-rwxr-xr-x | 1466/CH4/EX4.8/4_8.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1466/CH4/EX4.8/4_8.sce b/1466/CH4/EX4.8/4_8.sce new file mode 100755 index 000000000..8d5659e8f --- /dev/null +++ b/1466/CH4/EX4.8/4_8.sce @@ -0,0 +1,13 @@ +
+clc
+//initialisation of variables
+Q= 4 //ft^2/sec
+d= 6 //in
+D= 1 //ft
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+V= Q/((%pi/4)*(d/12)^2)
+V1= Q/((%pi/4)*D^2)
+L= (V-V1)^2/(2* g)
+//RESULTS
+printf (' Loss of head= %.2f ft',L)
|