summaryrefslogtreecommitdiff
path: root/914/CH6/EX6.2/ex6_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /914/CH6/EX6.2/ex6_2.sce
downloadScilab-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.2/ex6_2.sce')
-rwxr-xr-x914/CH6/EX6.2/ex6_2.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/914/CH6/EX6.2/ex6_2.sce b/914/CH6/EX6.2/ex6_2.sce
new file mode 100755
index 000000000..5369e747e
--- /dev/null
+++ b/914/CH6/EX6.2/ex6_2.sce
@@ -0,0 +1,11 @@
+clc;
+warning("off");
+printf("\n\n example6.2 - pg202");
+// given
+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=4.78; //[ft/sec] - free stream velocity
+Nre=5*10^5; // the lower limit for the transition reynolds number range is substituted
+x=(Nre*mu)/(p*u);
+disp(x,"x");
+printf("\nThus the transition could star at about %fft.The reynolds number at the upper end of the transition range is %e.The value of x at this location is ten times then the value obtained above i.e %fft",x,Nre*10,x*10); \ No newline at end of file