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 --- 1373/CH8/EX8.3/Chapter8_Example3.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 1373/CH8/EX8.3/Chapter8_Example3.sce (limited to '1373/CH8/EX8.3') diff --git a/1373/CH8/EX8.3/Chapter8_Example3.sce b/1373/CH8/EX8.3/Chapter8_Example3.sce new file mode 100755 index 000000000..73e8b8a0d --- /dev/null +++ b/1373/CH8/EX8.3/Chapter8_Example3.sce @@ -0,0 +1,26 @@ +//Chapter-8, Example 8.3, Page 343 +//============================================================================= +clc +clear + +//INPUT DATA +L=0.609;//Height of the metal plate in m +Ts=161;//Temperature of the wall in degree C +Ta=93;//Temperature of air in degree C + +//CALCULATIONS +Tf=(Ts+Ta)/2;//Film temperature in degree C +k=0.0338;//Thermal conductivity in W/m.K +v1=(26.4*10^-6);//Kinematic viscosity in m^2/s +Pr=0.69;//Prantl number +b=0.0025;//Coefficient of thermal expansion in 1/K +a=(38.3*10^-6);//Thermal diffusivity in m^2/s +Ra=((9.81*b*L^3*(Ts-Ta))/(v1*a));//Rayleigh number +Nu=(0.68+((0.67*Ra^0.25)/(1+(0.492/Pr)^(9/16))^(4/9)));//Nussults number +h=(Nu*k)/L;//Heat transfer coefficient in W/m^2.K +Q=(h*L*(Ts-Ta));//Rate of heat transfer in W + +//OUTPUT +mprintf('Heat transfer coefficient is %3.3f W/m^2.K \nRate of heat transfer is %3.2f W',h,Q) + +//=================================END OF PROGRAM============================== -- cgit