summaryrefslogtreecommitdiff
path: root/896/CH17/EX17.3/3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /896/CH17/EX17.3/3.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 '896/CH17/EX17.3/3.sce')
-rwxr-xr-x896/CH17/EX17.3/3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/896/CH17/EX17.3/3.sce b/896/CH17/EX17.3/3.sce
new file mode 100755
index 000000000..4b0bb4f88
--- /dev/null
+++ b/896/CH17/EX17.3/3.sce
@@ -0,0 +1,18 @@
+clc
+//Example 17.3
+//Calculate the distance between the wall and edge of the laminar sublayer and buffer layer
+V=10//ft/s
+l=0.25//ft
+v=1.08*10^(-5)//ft^2/s
+R=V*l/v//dimentionless (reynold's number)
+f=0.0037//dimentionless (fanning friction factor)
+u1=V*(f/2)^0.5//ft/s
+u01=5//dimentionless
+y01=5//dimentionless
+r1=y01*v/u1//ft
+printf("the distance between the wall and edge of the laminar sublayer is %f ft\n",r1);
+//for buffer layer
+u02=12//dimentionless
+y02=26//dimentionless
+r2=y02*v/u1//ft
+printf("the distance between the wall and edge of the buffer layer is %f ft",r2); \ No newline at end of file