From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 896/CH17/EX17.3/3.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 896/CH17/EX17.3/3.sce (limited to '896/CH17/EX17.3/3.sce') 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 -- cgit