diff options
Diffstat (limited to '914/CH6/EX6.1')
-rwxr-xr-x | 914/CH6/EX6.1/ex6_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/914/CH6/EX6.1/ex6_1.sce b/914/CH6/EX6.1/ex6_1.sce new file mode 100755 index 000000000..11fa71046 --- /dev/null +++ b/914/CH6/EX6.1/ex6_1.sce @@ -0,0 +1,14 @@ +clc;
+warning("off");
+printf("\n\n example6.1 - pg200");
+// given
+q=50; //[gal/min] - volumetric flow rate
+d=2.067/12; //[ft] - diameter
+A=0.02330; //[ft^2] - flow area
+p=0.99568*62.43; //[lb/ft^3] - density of water at 86degF
+mu=0.8007*6.72*10^-4; //[lb/ft*sec] - viscosity of water at 86degF
+u=q/(60*7.48*A);
+// using the formula Nre=d*u*p/mu;
+Nre=(d*u*p)/mu;
+disp(Nre,"Nre=");
+printf("\n Hence the flow is turbulent.Note also that Nre is dimensionless");
|