diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /914/CH6/EX6.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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");
|