diff options
Diffstat (limited to '405/CH7')
-rwxr-xr-x | 405/CH7/EX7.1/7_1.sce | 56 | ||||
-rwxr-xr-x | 405/CH7/EX7.10/7_10.sce | 31 | ||||
-rwxr-xr-x | 405/CH7/EX7.11/7_11.sce | 36 | ||||
-rwxr-xr-x | 405/CH7/EX7.12/7_12.sce | 35 | ||||
-rwxr-xr-x | 405/CH7/EX7.13/7_13.sce | 39 | ||||
-rwxr-xr-x | 405/CH7/EX7.2/7_2.sce | 36 | ||||
-rwxr-xr-x | 405/CH7/EX7.3/7_3.sce | 28 | ||||
-rwxr-xr-x | 405/CH7/EX7.4/7_4.sce | 32 | ||||
-rwxr-xr-x | 405/CH7/EX7.5/7_5.sce | 28 | ||||
-rwxr-xr-x | 405/CH7/EX7.6/7_6.sce | 30 | ||||
-rwxr-xr-x | 405/CH7/EX7.7/7_7.sce | 29 | ||||
-rwxr-xr-x | 405/CH7/EX7.8/7_8.sce | 42 | ||||
-rwxr-xr-x | 405/CH7/EX7.9/7_9.sce | 31 |
13 files changed, 453 insertions, 0 deletions
diff --git a/405/CH7/EX7.1/7_1.sce b/405/CH7/EX7.1/7_1.sce new file mode 100755 index 000000000..8fbee0108 --- /dev/null +++ b/405/CH7/EX7.1/7_1.sce @@ -0,0 +1,56 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.1\n\n\n");
+// constant heat flux from vertical plate
+// Example 7.1 (page no.-330-331)
+// solution
+
+q_w = 800;// [W/square meter] radiant energy flux
+H = 3.5;// [m] height of metal plate surface
+W = 2;// [m] width of metal plate
+Ta = 30;// [degree celsius] surrounding air temperature
+// we treat this problem as one with constant heat flux on the surface since we do not know the surface temperature, we must make an estimate for determining Tf and the air properties.
+// an approximate value of h for free convection problems is
+h = 10;// [W/square meter degree celsius]
+dT = q_w/h;// [degree celsius]
+// then
+Tf = (dT/2)+Ta;// [degree celsius] approximately
+// at Tf the properties of air are
+v = 2.005*10^(-5);// [square meter/s]
+k = 0.0295;// [W/m degree celsius]
+Pr = 0.7;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+// from equation (7-30), with
+x = 3.5;// [m]
+g = 9.8;// [square meter/s] acceleration due to gravity
+Gr_x = (g*Beta*q_w*x^(4))/(k*v^(2));
+// we may therefore use equation (7-32) to evaluate h_x
+h_x = (k*0.17*(Gr_x*Pr)^(1/4))/x;// [W/square meter degree celsius]
+// in the turbulent heat transfer governed by equation (7-32), we note that
+// Nu_x = h*x/k ~ (Gr_x)^(1/4) ~ x
+// or h_x doest noy vary with x, and we may take this as the average value. the value of h
+h = 5.41;// [W/square meter degree celsius]
+// is less than the approximate value we used to estimate Tf, recalculating dT, we obtain
+dT1 = q_w/h_x;// [degree celsius]
+// our new film temperature would be
+Tf1 = Ta+dT1/2;// [degree celsius]
+// at Tf the properties of air are
+v1 = 2.354*10^(-5);// [square meter/s]
+k1 = 0.0320;// [W/m degree celsius]
+Pr1 = 0.695;// prandtl number
+Beta1 = 1/(Tf1+273);// [K^(-1)]
+// then
+Gr_x1 = (g*Beta1*q_w*x^(4))/(k1*v1^(2));
+// and h_x is caalculated from
+h_x1 = (k1*0.17*(Gr_x1*Pr1)^(1/4))/x;// [W/square meter degree celsius]
+// our new temperature difference is calculated as
+dT2 = q_w/h_x1;// [degree celsius]
+// the average wall temperature is therefore
+T_w_avg = dT2+Ta;// [degree celsius]
+printf("the average wall temperature is therefore %f degree celsius",T_w_avg);
+
+
+
+
+
+
diff --git a/405/CH7/EX7.10/7_10.sce b/405/CH7/EX7.10/7_10.sce new file mode 100755 index 000000000..66ba1e547 --- /dev/null +++ b/405/CH7/EX7.10/7_10.sce @@ -0,0 +1,31 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.10\n\n\n");
+// heat transfer across water layer
+// Example 7.10 (page no.-346-347)
+// solution
+
+L = 0.5;// [m] length of square plate
+d = 0.01;// [m] seperation between square plates
+T1 = 100;// [degree F] temperature of lower plate
+T2 = 80;// [degree F] temperature of upper plate
+// we evaluate properties at mean temperature of 90 degree F and obtain, for water
+k = 0.623;// [W/m degree celsus]
+// and the following term is particularly useful in obtaining the product GrPr
+// g*Beta*rho^(2)*Cp/(mu*k) = 2.48*10^(10) [1/m^(3) degree celsius]
+// the Grashof-prandtl number product is now evaluated using the plate spacing of 0.01 m as the characterstic dimension
+K = 2.48*10^(10);// [1/m^(3) degree celsius]
+Gr_into_Pr = K*(T1-T2)*(5/9)*d^(3);
+// now, using equation 7-64 and consulting table 7-3(page no.-344) we obtain
+C = 0.13;
+n = 0.3;
+m = 0;
+// therefore, equation (7-64) becomes
+Ke_by_K = C*Gr_into_Pr^(n);
+// the effectve thermal conductivity is thus
+ke = k*Ke_by_K;// [W/m degree celsius]
+// and the heat transfer is
+A = L^(2);// [square meter] area of plate
+q = ke*A*(T1-T2)*(5/9)/d;// [W]
+printf("heat lost by the lower plate is %f W",q);
+
diff --git a/405/CH7/EX7.11/7_11.sce b/405/CH7/EX7.11/7_11.sce new file mode 100755 index 000000000..67d09cc49 --- /dev/null +++ b/405/CH7/EX7.11/7_11.sce @@ -0,0 +1,36 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.11 \n\n\n");
+// reduction of convection in ar gap
+// Example 7.11 (page no.-347)
+// solution
+
+Tm = 300;// [K] mean temperature of air
+dT = 20;// [degree celsius] temperature difference
+R = 287;// [] universal gas constant
+g = 9.81;// [m/s^(2)] acceleration due to gravity
+p_atm = 101325;// [Pa] atmospheric pressure
+// consulting table 7-13(page no.-344), we find that for gases, a value Grdel_into_Pr<2000 is necessary to reduce the system to one of pure conduction.
+// at 300 K the properties of air are
+k = 0.02624;// [W/m degree celsius]
+Pr = 0.7;// prandtl no.
+mu = 1.846*10^(-5);// [Kg/m s]
+Beta = 1/300;
+// we have
+Grdel_into_Pr = 2000;
+
+// Part A for spacing of 1cm
+
+del = 0.01;// [m] spacing between plate
+p = sqrt((Grdel_into_Pr*((R*Tm)^(2))*mu^(2))/(g*Beta*dT*del^(3)*Pr));// [Pa]
+// or vacuum
+vacuum = p_atm-p;// [Pa]
+printf("vacuum necessary for glass spacings of 1 cm is %f Pa",vacuum);
+
+// Part B for spacing of 2cm
+
+del1 = 0.02;// [m] spacing between plate
+p1 = sqrt(Grdel_into_Pr*(R*Tm)^(2)*mu^(2)/(g*Beta*dT*del1^(3)*Pr));// [Pa]
+// or vacuum
+vacuum1 = p_atm-p1;// [Pa]
+printf("\n\n vacuum necessary for glass spacings of 2 cm is %f Pa",vacuum1);
\ No newline at end of file diff --git a/405/CH7/EX7.12/7_12.sce b/405/CH7/EX7.12/7_12.sce new file mode 100755 index 000000000..f377b3c22 --- /dev/null +++ b/405/CH7/EX7.12/7_12.sce @@ -0,0 +1,35 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.12\n\n\n");
+// heat transfer across evacuated space
+// Example 7.12 (page no.-351-352)
+// solution
+
+E = 0.06;// emmisvity of polished aluminium plate
+d = 0.025;// [m] seperation between plates
+p = 101325*10^(-6);// [Pa] pressure of air between plates
+T1 = 100;// [degree celsius] temperature of plate 1
+T2 = 30;// [degree celsius] temperature of plate 2
+// we first calculate the mean free path to determine if low-density effects to be important.
+// evaluating properties at the mean air temperature of 65 degree celsius, we have
+lambda = (2.27*10^(-5)*((T1+T2)/2+273))/(p);// [m]
+// since the plate spacing is only 2.5 cm, we should expect low-density effects to be important.
+// evaluating properties at the mean temperature of 65 degree celsius, we have
+k = 0.0291;// [W/m degree celsius]
+Gamma = 1.40;
+Pr = 0.7;
+alpha = 0.9;// from table 7-4(page no.-350)
+// combining equations (7-75)with the central temperature gradient relation gives
+// inserting the appropriate properties gives
+deff('y = f(dT)','y = dT-((2-alpha)/alpha)*(2*Gamma/(Gamma+1))*(lambda/Pr)*((T1-T2-2*dT)/d)');
+dT = fsolve(1,f);
+// the conduction heat transfer is thus
+q_by_A = k*((T1-T2-2*dT)/d);// [W/square meter]
+printf("conduction heat transfer through the air gap is %f W/square meter",q_by_A);
+// at normal atmospheric pressure the conduction would be
+q_by_A1 = k*((T1-T2)/d);// [W/square meter]
+// the radiation heat transfer is calculated with equation (8-42), taking E1=E2=0.06 for polished aluminium:
+sigma = 5.669*10^(-8);// []
+q_by_A_rad = sigma*(((T1+273)^(4)-(T2+273)^(4))/((2/E)-1));// [W/square meter]
+printf("\n\n thus, at the low density condition the radiation heat transfer is almost %f times as large as the conduction",q_by_A_rad/q_by_A);
+
diff --git a/405/CH7/EX7.13/7_13.sce b/405/CH7/EX7.13/7_13.sce new file mode 100755 index 000000000..cc72a8792 --- /dev/null +++ b/405/CH7/EX7.13/7_13.sce @@ -0,0 +1,39 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.13\n\n\n");
+// combined free and forced convection with air
+// Example 7.12 (page no.-353-355)
+// solution
+
+p = 101325;// [Pa] pressure of air
+Ta = 27;// [degree celsius] temperature of air
+d = 0.025;// [m] diameter of tube
+u = 0.3;// [m/s] velocity of air
+Tw = 140;// [degree celcius] temperature of tube wall
+L = 0.4;// [m] length of tube
+R = 287;// [] universal gas constant
+// the properties of air are evaluated at the film temperature:
+Tf = (Tw+Ta)/2;// [degree celcius]
+// the properties of interest are thus
+kf = 0.0305;// [W/m degree celcius]
+Pr = 0.695;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+g = 9.8;// [square meter/s] acceleration due to gravity
+mu_f = 2.102*10^(-5);// [Kg/m s]
+mu_w = 2.337*10^(-5);// [Kg/m s]
+rho_f = p/(R*(Tf+273));// [Kg/cubic meter]
+// let us take the bulk temperature as 27 degree celsius for evaluating mu_b;then
+mu_b = 1.8462*10^(-5);// [Kg/m s]
+// the significant parameters are calculated as
+Re_f = rho_f*u*d/mu_f;
+Gr = rho_f^(2)*g*Beta*(Tw-Ta)*d^(3)/mu_f^(2);
+Z = Gr*Pr*d/L;// constant
+// according to figure(7-14)(page no.-354), the mixed convection flow regime is encountered. thus we must use equation(7-77).
+// The graetz number is calculated as
+Gz = Re_f*Pr*d/L;
+// and the numerical calculation for equation(7-77) becomes
+Nu = 1.75*(mu_b/mu_w)^(0.14)*[Gz+0.012*(Gz*Gr^(1/3))^(4/3)]^(1/3);
+// the average heat transfer coefficient is calculated as
+h_bar = Nu*kf/d;// [W/square meter degree celsius]
+printf("heat transfer coefficient is %f W/square meter degree celsius",h_bar);
+
diff --git a/405/CH7/EX7.2/7_2.sce b/405/CH7/EX7.2/7_2.sce new file mode 100755 index 000000000..7d31ff399 --- /dev/null +++ b/405/CH7/EX7.2/7_2.sce @@ -0,0 +1,36 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.2\n\n\n");
+// heat transfer from isothermal vertical plate
+// Example 7.2 (page no.-332)
+// solution
+
+H = 4;// [m] height of vertical plate
+Tp = 60;// [degree celsius] plate temperature
+Ta = 10;// [degree celsius] atmospheric temperature
+// we first determine the film temperature as
+Tf = (Tp+Ta)/2;// [degree celsius]
+// the properties of interest are thus
+v = 16.5*10^(-6);// [square meter/s]
+k = 0.02685;// [W/m degree celsius]
+Pr = 0.7;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+g = 9.8;// [square meter/s] acceleration due to gravity
+// and
+Gr_into_Pr = (g*Beta*(Tp-Ta)*H^(3)*Pr)/(v^(2));
+// we then may use equation (7-29) to obtain
+Nu_bar_root = 0.825+(0.387*(Gr_into_Pr)^(1/6))/(1+(0.492/Pr)^(9/16))^(8/27);
+Nu_bar = (Nu_bar_root)^(2);
+// the heat transfer coefficient is
+h_bar = Nu_bar*k/H;// [W/square meter degree celsius]
+// the heat transfer is
+A = H*10;// [square meter] for 10 m wide plate
+q = h_bar*A*(Tp-Ta);// [W]
+// as an alternative, we could employ the simpler relation
+Nu = 0.1*(Gr_into_Pr)^(1/3);
+printf("heat transfer if the plate is 10 m wide is %f W",q);
+
+
+
+
+
diff --git a/405/CH7/EX7.3/7_3.sce b/405/CH7/EX7.3/7_3.sce new file mode 100755 index 000000000..2f4cc1694 --- /dev/null +++ b/405/CH7/EX7.3/7_3.sce @@ -0,0 +1,28 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.3\n\n\n");
+// heat transfer from horizontal tube in water
+// Example 7.3 (page no.-333)
+// solution
+
+d = 0.02;// [m] diameter of heater
+Ts = 38;// [degree celsius] surface temperature of heater
+Tw = 27;// [degree celsius] water temperature
+// the film temperature is
+Tf = (Ts+Tw)/2;// [degree celsius]
+// from appendix A the properties of water are
+k = 0.630;// [W/m degree celsius] thermal conductivity
+// and the following term is particularly useful in obtaining the product GrPr product when it is multiplied by d^(3)*DT
+// g*Beta*rho^(2)*Cp/(mu*k) = 2.48*10^(10) [1/m^(3) degree celsius]
+K = 2.48*10^(10);// [1/m^(3) degree celsius]
+Gr_into_Pr = K*(Ts-Tw)*d^(3);
+// using table 7-1 (page number -328), we get
+C = 0.53;
+m = 1/4;
+// so that
+Nu = C*(Gr_into_Pr)^(1/4);
+h = Nu*k/d;// [W/square meter degree celsius] convection heat transfer coefficient
+// the heat transfer is thus
+q_by_L = h*%pi*d*(Ts-Tw);// [W/m]
+printf("free-convection heat loss per unit length of heater is %f W/m",q_by_L);
+
diff --git a/405/CH7/EX7.4/7_4.sce b/405/CH7/EX7.4/7_4.sce new file mode 100755 index 000000000..bd86eb4d3 --- /dev/null +++ b/405/CH7/EX7.4/7_4.sce @@ -0,0 +1,32 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.4\n\n\n");
+// heat transfer from fine wire in air
+// Example 7.4 (page no.-333-334)
+// solution
+
+d = 0.00002;// [m] diameter of wire
+L = 0.5;// [m] length of wire whose temperature is maintained
+Ts = 54;// [degree celsius] surface temperature of wire
+Pa = 101325;// [Pa] pressure of air
+Ta = 0;// [degree celsius] temperature of air
+// we first determine the film temperature as
+Tf = (Ts+Ta)/2;// [degree celsius]
+// the properties of interest are thus
+v = 15.69*10^(-6);// [square meter/s]
+k = 0.02624;// [W/m degree celsius]
+Pr = 0.708;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+g = 9.8;// [square meter/s] acceleration due to gravity
+// and
+Gr_into_Pr = (g*Beta*(Ts-Ta)*d^(3)*Pr)/(v^(2));
+// from table 7-1 we find
+C = 0.675;
+m = 0.058;
+// so that
+Nu_bar = C*(Gr_into_Pr)^(m);
+h_bar = Nu_bar*k/d;// [W/square meter degree celsius]
+// the heat required is
+A = %pi*d*L;// [square meter] surface area of wire
+q = h_bar*A*(Ts-Ta);// [W]
+printf("electric power necessary to maintain the the wire temperature if the length is 0.5 m is %f W",q);
diff --git a/405/CH7/EX7.5/7_5.sce b/405/CH7/EX7.5/7_5.sce new file mode 100755 index 000000000..a904942c7 --- /dev/null +++ b/405/CH7/EX7.5/7_5.sce @@ -0,0 +1,28 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.5\n\n\n");
+// heated horizontal pipe in air
+// Example 7.5 (page no.-334-335)
+// solution
+
+d = 0.3048;// [m] diameter of pipe
+Ts = 250;// [degree celsius] surface temperature of pipe
+Ta = 15;// [degree celsius] temperature of air
+// we first determine the Grashof-prandtl number product and then select the appropriate constants from table 7-1(page no.-328) for use with equation (7-25)
+// the properties of air are evaluated at the film temperature:
+Tf = (Ts+Ta)/2;// [degree celsius]
+// the properties of interest are thus
+v = 26.54*10^(-6);// [square meter/s]
+k = 0.03406;// [W/m degree celsius]
+Pr = 0.687;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+g = 9.8;// [square meter/s] acceleration due to gravity
+Gr_d_into_Pr = g*Beta*(Ts-Ta)*d^(3)*Pr/(v^(2));
+// from table 7-1
+C = 0.53;
+m = 1/4;
+Nu_d = C*(Gr_d_into_Pr)^(m);
+h = Nu_d*k/d;// [W/square meter degree celsius]
+// the heat transfer per unit length is then calculated from
+q_by_L = h*%pi*d*(Ts-Ta);// [W/m]
+printf("free-convection heat loss per unit length is %f kW/m",q_by_L/1000);
diff --git a/405/CH7/EX7.6/7_6.sce b/405/CH7/EX7.6/7_6.sce new file mode 100755 index 000000000..7bade4d65 --- /dev/null +++ b/405/CH7/EX7.6/7_6.sce @@ -0,0 +1,30 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.6\n\n\n");
+// cube cooling in air
+// Example 7.6 (page no.-336)
+// solution
+
+L = 0.2;// [m] side length of cube
+Ts = 60;// [degree celsius] surface temperature of cube
+Ta = 10;// [degree celsius] air temperature
+// this is an irregular solid so we use the information in the last entry of table 7-1(page no.-328) in the absence of a specific correlation for this geometry.
+// the properties were evaluated as
+v = 17.47*10^(-6);// [square meter/s]
+k = 0.02685;// [W/m degree celsius]
+Pr = 0.70;// prandtl number
+Beta = 3.25*10^(-3);// [K^(-1)]
+g = 9.8;// [square meter/s] acceleration due to gravity
+// the characteristic length is the distance a particle travels in the boundary layer, which is L/2 along the bottom plus L along the side plus L/2 on the top or
+Gr_into_Pr = (g*Beta*(Ts-Ta)*(2*L)^(3)*Pr)/(v^(2));
+// from the last entry in table 7-1 we find
+C = 0.52;
+n = 1/4;
+// so that
+Nu = C*(Gr_into_Pr)^(n);
+h_bar = Nu*k/(2*L);// [W/square meter degree celsius]
+// the cube has six sides so the area is
+A = 6*L^(2);// [square meter]
+// the heat required is
+q = h_bar*A*(Ts-Ta);// [W]
+printf("heat transfer is %f W",q);
diff --git a/405/CH7/EX7.7/7_7.sce b/405/CH7/EX7.7/7_7.sce new file mode 100755 index 000000000..34016d7aa --- /dev/null +++ b/405/CH7/EX7.7/7_7.sce @@ -0,0 +1,29 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.7\n\n\n");
+// calculation with simplified relations
+// Example 7.7 (page no.-338-339)
+// solution
+
+// this example is calculation of heat transfer with simplified relations for example (7.5) so we use the data of example 7.5
+
+d = 0.3048;// [m] diameter of pipe
+Ts = 250;// [degree celsius] surface temperature of pipe
+Ta = 15;// [degree celsius] temperature of air
+// we first determine the Grashof-prandtl number product and then select the appropriate constants from table 7-1(page no.-328) for use with equation (7-25)
+// the properties of air are evaluated at the film temperature:
+Tf = (Ts+Ta)/2;// [degree celsius]
+// the properties of interest are thus
+v = 26.54*10^(-6);// [square meter/s]
+k = 0.03406;// [W/m degree celsius]
+Pr = 0.687;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+g = 9.8;// [square meter/s] acceleration due to gravity
+// in example (7.5) we found that a rather large pipe with a substantial temperature difference between the surface and air still had a GrPr product of 1.57*10^(8)<10^(9), so laminar equation is selected from table 7-2(page no.-339). the heat transfer coefficient is given by
+h = 1.32*((Ts-Ta)/d)^(1/4);// [W/square meter degree celsius]
+// the heat transfer is then
+q_by_L = h*%pi*d*(Ts-Ta);// [W/m]
+printf("heat transfer is %f kW/m",q_by_L/1000);
+
+
+
diff --git a/405/CH7/EX7.8/7_8.sce b/405/CH7/EX7.8/7_8.sce new file mode 100755 index 000000000..235af8e82 --- /dev/null +++ b/405/CH7/EX7.8/7_8.sce @@ -0,0 +1,42 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.8\n\n\n");
+// heat transfer across vertical air gap
+// Example 7.8 (page no.-345)
+// solution
+
+L = 0.5;// [m] side length vertical square plate
+d = 0.015;// [m] distance between plates
+p = 101325;// [Pa] pressure of air
+R = 287;// [] universal gas constant
+T1 = 100;// [degree celsius] temperature of first plate
+T2 = 40;// [degree celsius] temperature of second plate
+E = 0.2;// emissivity of both surfaces
+// the properties of air is evaluated at the mean temperature
+Tf = (T1+T2)/2;// [degree celsius]
+rho = p/(R*(Tf+273));// [Kg/m^(3)] density
+k = 0.0295;// [W/m degree celsius]
+Pr = 0.70;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+mu = 2.043*10^(-5);// [Kg/m s] viscosity
+g = 9.8;// [square meter/s] acceleration due to gravity
+// the Grashof-prandtl number product is now calculated as
+Gr_into_Pr = (g*rho^(2)*Beta*(T1-T2)*(d)^(3)*Pr)/(mu^(2));
+// we may now use equation (7-64) to calculate the effective thermal conductivity, with
+L = 0.5;// [m]
+del = 0.015;// [m]
+// and the constants taken from table 7-3(page no.-344):
+Ke_by_K = 0.197*(Gr_into_Pr)^(1/4)*(L/del)^(-1/9);
+// the heat transfer may now be calculated with equation (7-54). the area is
+A = L^(2);// [square meter]
+q = Ke_by_K*k*A*(T1-T2)/del;// [W]
+ // the radiation flux is calculated with equation(7-67), taking
+T1 = 373;// [K]
+T2 = 313;// [K]
+E1 = E;
+E2 = E;
+sigma = 5.669*10^(-8);// [W/square meter K^(4)]
+q_A = sigma*(T1^(4)-T2^(4))/((1/E1)+(1/E2)-1);// [W/square meter]
+q_rad = A*q_A;// [W]
+printf("free-convection heat transfer across the air space is %f W",q);
+printf("\n\nradiation heat transfer across the air space is %f W",q_rad);
diff --git a/405/CH7/EX7.9/7_9.sce b/405/CH7/EX7.9/7_9.sce new file mode 100755 index 000000000..91ae3db74 --- /dev/null +++ b/405/CH7/EX7.9/7_9.sce @@ -0,0 +1,31 @@ +clear;
+clc;
+printf("\t\t\tExample Number 7.9\n\n\n");
+// heat transfer across horizontal air gap
+// Example 7.9 (page no.-346)
+// solution
+
+a = 0.2;// [m] side length of plate
+d = 0.01;// [m] seperation between two plates
+p = 101325;// [Pa] pressure of air
+R = 287;// [] universal gas constant
+T1 = 100;// [degree celsius] temperature of first plate
+T2 = 40;// [degree celsius] temperature of second plate
+// the properties are the same as given in example(7.8)
+Tf = (T1+T2)/2;// [degree celsius]
+rho = p/(R*(Tf+273));// [Kg/m^(3)] density
+k = 0.0295;// [W/m degree celsius]
+Pr = 0.70;// prandtl number
+Beta = 1/(Tf+273);// [K^(-1)]
+mu = 2.043*10^(-5);// [Kg/m s] viscosity
+g = 9.8;// [square meter/s] acceleration due to gravity
+// the GrPr product is evaluated on the basis of the separating distance, so we have
+Gr_into_Pr = (g*rho^(2)*Beta*(T1-T2)*(d)^(3)*Pr)/(mu^(2));
+// consulting table 7-3(page no.-344) we find
+C = 0.059;
+n = 0.4;
+m = 0;
+Ke_by_K = C*(Gr_into_Pr)^(n)*(a/d)^(m);
+A = a^(2);// [square meter] area of plate
+q = Ke_by_K*k*A*(T1-T2)/d;// [W]
+printf("heat transfer across the air space is %f W",q);
\ No newline at end of file |