diff options
Diffstat (limited to '2066/CH7/EX7.7.c/7_7c.sce')
-rwxr-xr-x | 2066/CH7/EX7.7.c/7_7c.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2066/CH7/EX7.7.c/7_7c.sce b/2066/CH7/EX7.7.c/7_7c.sce new file mode 100755 index 000000000..6b894f00a --- /dev/null +++ b/2066/CH7/EX7.7.c/7_7c.sce @@ -0,0 +1,23 @@ +clc
+clear
+//Initialization of variables
+D=36 //in
+rho=0.00226 //slug/ft^3
+mu=3.88e-7 //lb-sec/ft^2
+umax=62.2 //ft/s
+V=54.5 //ft/s
+Nr=9.5e5
+r0=18 //in
+r=12 //in
+n=8.8
+k=0.4
+//calculations
+f=0.0032 + 0.221/(Nr^0.237)
+Vs=sqrt(f/8) *V
+delta1=D*5*sqrt(8) /(Nr*sqrt(f))
+y=delta1
+u2=Vs^2 *delta1/12 *rho/mu
+u1=62.2 *(delta1/18)^(1/n)
+//results
+printf("using equation 7-13, velocity = %.1f ft/s",u1)
+printf("\n using equation 7-30, velocity = %.1f ft/s",u2)
|