diff options
Diffstat (limited to '1052/CH13/EX13.2')
-rwxr-xr-x | 1052/CH13/EX13.2/132.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1052/CH13/EX13.2/132.sce b/1052/CH13/EX13.2/132.sce new file mode 100755 index 000000000..b8d524eb9 --- /dev/null +++ b/1052/CH13/EX13.2/132.sce @@ -0,0 +1,11 @@ +clc;
+//Example 13.2
+//page no 137
+printf(" Example 13.2 page no 137\n\n");
+//refer to part a of example 1
+//appplying Hagen-Poiseuille equation
+meu=6.72e-4//viscosity of water
+v=0.13//velocity of water
+D=2.067/12//diameter of pipe
+P_l=32*meu*v/(D^2)
+printf("\n pressure drop per unit length P_l=%f psf/ft",P_l);
|