summaryrefslogtreecommitdiff
path: root/1052/CH25/EX25.6/256.sce
diff options
context:
space:
mode:
Diffstat (limited to '1052/CH25/EX25.6/256.sce')
-rwxr-xr-x1052/CH25/EX25.6/256.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1052/CH25/EX25.6/256.sce b/1052/CH25/EX25.6/256.sce
new file mode 100755
index 000000000..a49edcb87
--- /dev/null
+++ b/1052/CH25/EX25.6/256.sce
@@ -0,0 +1,10 @@
+clc;
+//Example 25.6
+//page no 375
+printf("Example 25.6 page no 375\n\n");
+//refer to example 25.5
+d_p=0.0833//diameter of particles,ft
+e=0.4//bed porosity
+D_h=2/3*(e/(1-e))*d_p//hydraulic diameter
+r_h=D_h/4//hydrulic radius
+printf("\n hydraulic diameter D_h=%f ft\n hydrulic radius r_h=%f ft",D_h,r_h);