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 --- 1394/CH9/EX9.4.2/Ex9_4_2.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 1394/CH9/EX9.4.2/Ex9_4_2.sce (limited to '1394/CH9/EX9.4.2') diff --git a/1394/CH9/EX9.4.2/Ex9_4_2.sce b/1394/CH9/EX9.4.2/Ex9_4_2.sce new file mode 100755 index 000000000..d5eb9250e --- /dev/null +++ b/1394/CH9/EX9.4.2/Ex9_4_2.sce @@ -0,0 +1,19 @@ + +clc +//initialization of variables +tn = 300000 // turbulence number +v0 = 10 // cm/sec +p = 1 // g/cc +mu = 0.01 // g/cm-sec +delta = 2.5 //cm +D = 1*10^-5 // cm^2/sec +//Calculations +x = tn*mu/(v0*p)// cm +delta = ((280/13)^(1/2))*x*((mu/(x*v0*p))^(1/2))//cm +deltac = ((D*p/mu)^(1/3))*delta//cm +k = (0.323*(D/x)*((x*v0*p/mu)^0.5)*((mu/(p*D))^(1/3)))*10^5// x*10^-5 cm/sec +//Results +printf("The distance at which turbulent flow starts is %.f cm",x) +printf("\nThe boundary layer for flow at this point is %.1f cm",delta) +printf("\nThe boundary layer for concentration at this point is %.2f cm",deltac) +printf("\nThe local m.t.c at the leading edge and at the position of transistion is %.1f x10^-5 cm/sec",k) -- cgit