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 /896/CH17/EX17.3/3.sce | |
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 '896/CH17/EX17.3/3.sce')
-rwxr-xr-x | 896/CH17/EX17.3/3.sce | 18 |
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 |