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 --- 405/CH8/EX8.1/8_1.sce | 33 ++++++++++ 405/CH8/EX8.10/8_10.sce | 40 ++++++++++++ 405/CH8/EX8.11/8_11.sce | 76 ++++++++++++++++++++++ 405/CH8/EX8.12/8_12.sce | 43 ++++++++++++ 405/CH8/EX8.13/8_13.sce | 27 ++++++++ 405/CH8/EX8.14/8_14.sce | 76 ++++++++++++++++++++++ 405/CH8/EX8.15/8_15.sce | 75 +++++++++++++++++++++ 405/CH8/EX8.16/8_16.sce | 100 ++++++++++++++++++++++++++++ 405/CH8/EX8.17/8_17.sce | 117 +++++++++++++++++++++++++++++++++ 405/CH8/EX8.18/8_18.sce | 170 ++++++++++++++++++++++++++++++++++++++++++++++++ 405/CH8/EX8.19/8_19.sce | 72 ++++++++++++++++++++ 405/CH8/EX8.2/8_2.sce | 28 ++++++++ 405/CH8/EX8.20/8_20.sce | 36 ++++++++++ 405/CH8/EX8.21/8_21.sce | 35 ++++++++++ 405/CH8/EX8.23/8_23.sce | 17 +++++ 405/CH8/EX8.3/8_3.sce | 45 +++++++++++++ 405/CH8/EX8.4/8_4.sce | 58 +++++++++++++++++ 405/CH8/EX8.5/8_5.sce | 38 +++++++++++ 405/CH8/EX8.6/8_6.sce | 65 ++++++++++++++++++ 405/CH8/EX8.7/8_7.sce | 52 +++++++++++++++ 405/CH8/EX8.8/8_8.sce | 38 +++++++++++ 405/CH8/EX8.9/8_9.sce | 45 +++++++++++++ 22 files changed, 1286 insertions(+) create mode 100755 405/CH8/EX8.1/8_1.sce create mode 100755 405/CH8/EX8.10/8_10.sce create mode 100755 405/CH8/EX8.11/8_11.sce create mode 100755 405/CH8/EX8.12/8_12.sce create mode 100755 405/CH8/EX8.13/8_13.sce create mode 100755 405/CH8/EX8.14/8_14.sce create mode 100755 405/CH8/EX8.15/8_15.sce create mode 100755 405/CH8/EX8.16/8_16.sce create mode 100755 405/CH8/EX8.17/8_17.sce create mode 100755 405/CH8/EX8.18/8_18.sce create mode 100755 405/CH8/EX8.19/8_19.sce create mode 100755 405/CH8/EX8.2/8_2.sce create mode 100755 405/CH8/EX8.20/8_20.sce create mode 100755 405/CH8/EX8.21/8_21.sce create mode 100755 405/CH8/EX8.23/8_23.sce create mode 100755 405/CH8/EX8.3/8_3.sce create mode 100755 405/CH8/EX8.4/8_4.sce create mode 100755 405/CH8/EX8.5/8_5.sce create mode 100755 405/CH8/EX8.6/8_6.sce create mode 100755 405/CH8/EX8.7/8_7.sce create mode 100755 405/CH8/EX8.8/8_8.sce create mode 100755 405/CH8/EX8.9/8_9.sce (limited to '405/CH8') diff --git a/405/CH8/EX8.1/8_1.sce b/405/CH8/EX8.1/8_1.sce new file mode 100755 index 000000000..ea50f6ba7 --- /dev/null +++ b/405/CH8/EX8.1/8_1.sce @@ -0,0 +1,33 @@ +clear; +clc; +printf("\t\t\tExample Number 8.1\n\n\n"); +// transmission and absorption in a gas plate +// Example 8.1 (page no.-381) +// solution + +T = 2000+273;// [K] furnace temperature +L = 0.3;// [m] side length of glass plate +t1 = 0.5;// transmissivity of glass between lambda1 to lambda2 +lambda1 = 0.2;// [micro m] +lambda2 = 3.5;// [micro m] +E1 = 0.3;// emissivity of glass upto lambda2 +E2 = 0.9;// emissivity of glass above lambda2 +t2 = 0;// transmissivity of glass except in the range of lambda1 to lambda2 +sigma = 5.669*10^(-8);// [W/square meter K^(4)] +A = L^(2);// [square meter] area of glass plate +// calculating constants to use table 8-1(page no.-379-380) +K1 = lambda1*T;// [micro m K] +K2 = lambda2*T;// [micro m K] +// from table 8-1 +Eb_0_lam1_by_sigmaT4 = 0; +Eb_0_lam2_by_sigmaT4 = 0.85443; +Eb = sigma*T^(4);// [W/square meter] +// total incident radiation is +// for 0.2 micro m to 3.5 micro m +TIR = Eb*(Eb_0_lam2_by_sigmaT4-Eb_0_lam1_by_sigmaT4)*A;// [W] +TRT = t1*TIR;// [W] +RA1 = E1*TIR;// [W] for 00 & dEb2<5) then + J1 = S(1);// [W/square meter] + J2R = S(2);// [W/square meter] + J2L = S(3);// [W/square meter] + Eb2 = S(4);// [W/square meter] + T2new = T2;// [K] + end +end +// the total heat flux lost by surface 1 is +q1_by_A1 = h*(T1-Tinf)+(Eb1-J1)*E1/(1-E1);// [W/square meter] +// for a 0.5 by 0.5 m surface the heat lost is thus +q1 = q1_by_A1*l*b;// [W] +printf("\n\n the heat lost by plate is %f W",q1); diff --git a/405/CH8/EX8.2/8_2.sce b/405/CH8/EX8.2/8_2.sce new file mode 100755 index 000000000..5a0a6e272 --- /dev/null +++ b/405/CH8/EX8.2/8_2.sce @@ -0,0 +1,28 @@ +clear; +clc; +printf("\t\t\tExample Number 8.2\n\n\n"); +// heat transfer between black surfaces +// Example 8.2 (page no.-389-390) +// solution + +L = 1;// [m] length of black plate +W = 0.5;// [m] width of black plate +T1 = 1000+273;// [K] first plate temperature +T2 = 500+273;// [K] second plate temperature +sigma = 5.669*10^(-8);// [W/square meter K^(4)] +// the ratios for use with figure 8-12(page no.-386) are +Y_by_D = W/W; +X_by_D = L/W; +// so that +F12 = 0.285;// radiation shape factor +// the heat transfer is calculated from +q = sigma*L*W*F12*(T1^(4)-T2^(4)); +printf("net radiant heat exchange between the two plates is %f kW",q/1000); + + + + + + + + diff --git a/405/CH8/EX8.20/8_20.sce b/405/CH8/EX8.20/8_20.sce new file mode 100755 index 000000000..fc869f50f --- /dev/null +++ b/405/CH8/EX8.20/8_20.sce @@ -0,0 +1,36 @@ +clear; +clc; +printf("\t\t\tExample Number 8.20\n\n\n"); +// solar-environment equilibrium temperatures +// Example 8.20 (page no.-454) +// solution + +q_by_A_sun = 700;// [W/m^(2)] solar flux +T_surr = 25+273;// [K] surrounding temperature +sigma = 5.669*10^(-8);// [W/square meter K^(4)] +// at radiation equilibrium the netenergy absorbed from sun must equal the long-wavelength radiation exchange with the surroundings,or +// (q_by_A_sun)*alpha_sun = alpha_low_temp*sigma*(T^4-T_surr^4) (a) + +// case (a) for white paint + +// for white paint we obtain from table 8-4 +alpha_sun = 0.12; +alpha_low_temp = 0.9; +// so that equation (a) becomes +T = [(q_by_A_sun)*alpha_sun/(alpha_low_temp*sigma)+T_surr^(4)]^(1/4);// [K] +printf("radiation equilibrium temperature for the plate exposed to solar flux if the surface is coated with white paint is %f degree celsius",T-273); + +// case (b) for flat black lacquer we obtain + +alpha_sun = 0.96; +alpha_low_temp = 0.95; +// so that equation (a) becomes +T = [(q_by_A_sun)*alpha_sun/(alpha_low_temp*sigma)+T_surr^(4)]^(1/4);// [K] +printf("\n\nradiation equilibrium temperature for the plate exposed to solar flux if the surface is coated with flat black lacquer is %f degree celsius",T-273); + + + + + + + diff --git a/405/CH8/EX8.21/8_21.sce b/405/CH8/EX8.21/8_21.sce new file mode 100755 index 000000000..47994474b --- /dev/null +++ b/405/CH8/EX8.21/8_21.sce @@ -0,0 +1,35 @@ +clear; +clc; +printf("\t\t\tExample Number 8.21\n\n\n"); +// influence of convection on solar equilibrium temperature +// Example 8.21 (page no.-455) +// solution + +T_surr = 25+273;// [K] surrounding temperature +sigma = 5.669*10^(-8);// [W/square meter K^(4)] +h = 10;// [W/square meter] heat transfer coefficient +// in this case the solar energy absorbed must equal the sum of the radiation and convection transfers to the surroundings +// (q_by_A_sun)*alpha_sun = alpha_low_temp*sigma*(T^4-T_surr^4)+h*(T-T_surr) (a) +q_by_A_sun = 700;// [W/m^(2)] solar flux + +// for the white paint, using the same surface properties as in example 8-20 gives + +alpha_sun = 0.12; +alpha_low_temp = 0.9; +// so that equation (a) becomes +deff('[y] = f(T)','y = (q_by_A_sun)*alpha_sun-alpha_low_temp*sigma*(T^4-T_surr^4)-h*(T-T_surr)'); +T = fsolve(1,f); +printf("the radiation-convection equillibrium temperatures for case (a) is %f degree celsius",T-273); + +//for flat black lacquer we obtain + +alpha_sun = 0.96; +alpha_low_temp = 0.95; +// so that equation (a) becomes +deff('[y] = f2(T1)','y = (q_by_A_sun)*alpha_sun - alpha_low_temp*sigma*(T1^4-T_surr^4)-h*(T1-T_surr)'); +T1 = fsolve(1,f2); +printf("\n\n the radiation-convection equillibrium temperatures for case (b) is %f degree celsius",T1-273); +printf("\n\n where case (a) surface is coated with white paint"); +printf("\n\n case (b) surface is coated with flat black lacquer"); + + diff --git a/405/CH8/EX8.23/8_23.sce b/405/CH8/EX8.23/8_23.sce new file mode 100755 index 000000000..b31ec3922 --- /dev/null +++ b/405/CH8/EX8.23/8_23.sce @@ -0,0 +1,17 @@ +clear; +clc; +printf("\t\t\tExample Number 8.23\n\n\n"); +// temperature measurement error caused by radiation +// Example 8.23 (page no.-460) +// solution + +E = 0.9;// emissivity of mercury-in-glass thermometer +Tt = 20+273;// [K] temperature indicated by thermometer +Ts = 5+273;// [K] temperature of walls +sigma = 5.669*10^(-8);// [W/square meter K^(4)] +h = 8.3;// [W/square meter] heat transfer coefficient for thermometer +// we employ equation(8-113) for the solution: h*(Tinf-Tt) = sigma*E*(Tt^4-Ts^4) +// inserting the values in above equation +Tinf = sigma*E*(Tt^4-Ts^4)/h+Tt;// [K] +printf("the true air temperature is %f degree celsius",Tinf-273); + diff --git a/405/CH8/EX8.3/8_3.sce b/405/CH8/EX8.3/8_3.sce new file mode 100755 index 000000000..1c318d868 --- /dev/null +++ b/405/CH8/EX8.3/8_3.sce @@ -0,0 +1,45 @@ +clear; +clc; +printf("\t\t\tExample Number 8.3\n\n\n"); +// shape-factor algebra for open ends of cylinder +// Example 8.3 (page no.-395) +// solution + +d1 = 0.1;// [m] diameter of first cylinder +d2 = 0.2;// [m] diameter of second cylinder +L = 0.2;// [m] length of cylinder +// we use the nomenclature of figure 8-15(page no.-388) for this problem and designate the open ends as surfaces 3 and 4. +// we have +L_by_r2 = L/(d2/2); +r1_by_r2 = 0.5; +// so from figure 8-15 or table 8-2(page no.-389) we obtain +F21 = 0.4126; +F22 = 0.3286; +// using the reciprocity relation (equation 8-18) we have +F12 = (d2/d1)*F21; +// for surface 2 we have F12+F22+F23+F24 = 1.0 +// and from symmetry F23 = F24 so that +F23 = (1-F21-F22)/2; +F24 = F23; +// using reciprocity again, +A2 = %pi*d2*L;// [m^2] +A3 = %pi*(d2^2-d1^2)/4;// [m^2] +F32 = A2*F23/A3; +// we observe that F11 = F33 = F44 = 0 and for surface 3 F31+F32+F34 = 1.0 +// so, if F31 can be determined, we can calculate the desired quantity F34. for surface 1 F12+F13+F14 = 1.0 +// and from symmetry F13 = F14 so that +F13 = (1-F12)/2; +F14 = F13; +// using reciprocity gives +A1 = %pi*d1*L;// [square meter] +F31 = (A1/A3)*F13; +// then +F34 = 1-F31-F32; +printf("shape factor between the open ends of the cylinder is %f ",F34); + + + + + + + diff --git a/405/CH8/EX8.4/8_4.sce b/405/CH8/EX8.4/8_4.sce new file mode 100755 index 000000000..622b551d6 --- /dev/null +++ b/405/CH8/EX8.4/8_4.sce @@ -0,0 +1,58 @@ +clear; +clc; +printf("\t\t\tExample Number 8.4\n\n\n"); +// shape-factor algebra for truncated cone +// Example 8.4 (page no.-396) +// solution + +d1 = 0.1;// [m] diameter of top of cone +d2 = 0.2;// [m] diameter of bottom of cone +L = 0.1;// [m] height of cone +// we employ figure 8-16(page no.-390) for solution of this problem and take the nomenclature as shown, designating the top as surface 2, +// the bottom as surface 1, and the side as surface 3. thus the desired quantities are F23 and F33. we have +Z = L/(d2/2); +Y = (d1/2)/L; +// thus from figure 8-16(page no.-390) +F12 = 0.12; +// from reciprcity(equatin 8-18) +A1 = %pi*d2^(2)/4;// [square meter] +A2 = %pi*d1^(2)/4;// [square meter] +F21 = A1*F12/A2; +//and +F22 = 0; +// so that +F23 = 1-F21; +// for surface 3 F31+F32+F33 = 1, so we must find F31 and F32 in order to evaluate F33. since F11 = 0 we have +F13 = 1-F12; +// and from reciprocity +A3 = %pi*((d1+d2)/2)*[(d1/2-d2/2)^(2)+L^(2)]^(1/2);// [square meter] +// so from above equation +F31 = A1*F13/A3; +// a similar procedure is applies with surface 2 so that +F32 = A2*F23/A3; +// finally from above equation +F33 = 1-F32-F31; +printf("shape factor between the top surface and the side is %f ",F23); +printf("\nshape factor between the side and itself is %f ",F33); + + + + + + + + + + + + + + + + + + + + + + diff --git a/405/CH8/EX8.5/8_5.sce b/405/CH8/EX8.5/8_5.sce new file mode 100755 index 000000000..db472ddd8 --- /dev/null +++ b/405/CH8/EX8.5/8_5.sce @@ -0,0 +1,38 @@ +clear; +clc; +printf("\t\t\tExample Number 8.5\n\n\n"); +// shape-factor algebra for cylindrical reflactor +// Example 8.5 (page no.-397-398) +// solution + +d = 0.6;// [m] diameter of long half-circular cylinder +L = 0.2;// [m] length of square rod +// we have given figure example 8-5(page no.-397) for solution of this problem and take the nomenclature as shown, +// from symmetry we have +F21 = 0.5; +F23 = F21; +// in general, F11+F12+F13 = 1. to aid in the analysis we create the fictious surface 4 shown in figure example 8-5 as dashed line. +// for this surface +F41 = 1.0; +// now, all radiation leaving surface 1 will arrive either at 2 or at 3. likewise,this radiation will arrive at the imaginary surface 4, so that F41 = F12+F13 say eqn a +// from reciprocity +A1 = %pi*d/2;// [square meter] +A4 = L+2*sqrt(0.1^(2)+L^(2));// [square meter] +A2 = 4*L;// [square meter] +// so that +F14 = A4*F41/A1;// say eqn b +// we also have from reciprocity +F12 = A2*F21/A1;// say eqn c +// combining a,b,c, gives +F13 = F14-F12; +// finally +F11 = 1-F12-F13; +printf("value of F12 is %f ",F12); +printf("\nvalue of F13 is %f ",F13); +printf("\nvalue of F11 is %f ",F11); + + + + + + \ No newline at end of file diff --git a/405/CH8/EX8.6/8_6.sce b/405/CH8/EX8.6/8_6.sce new file mode 100755 index 000000000..b28e5242c --- /dev/null +++ b/405/CH8/EX8.6/8_6.sce @@ -0,0 +1,65 @@ +clear; +clc; +printf("\t\t\tExample Number 8.6\n\n\n"); +// hot plates enclosed by a room +// Example 8.6 (page no.-402-404) +// solution + +w = 0.5;// [m] width of plate +L = 1;// [m] length of plate +t = 0.5;// [m] seperation between two plates +sigma = 5.669*10^(-8);// [W/square meter K^(4)] +// this is a three-body problem, the two plates and the room, so the radiation network is shown in figure(8-27) page no.-401. +// from the data of the problem +T1 = 1000+273;// [K] temperature of first plate +T2 = 500+273;// [K] temperature of second plate +T3 = 27+273;// [K] temperature of walls of plates +A1 = w*L;// [square meter] area of plate +A2 = A1;// [square meter] area of plate +E1 = 0.2;// emissivity of plate 1 +E2 = 0.5;// emissivity of plate 2 +// because the area of the room A3 is very large, the resistance (1-E3)/(E3*A3) may be taken as zero and we obtain Eb3 = J3. +// the shape factor F12 was given in example 8-2: +F12 = 0.285; +F21 = F12; +F13 = 1-F12; +F23 = 1-F21; +// the resistance in the network are calculated as +R1 = (1-E1)/(E1*A1); +R2 = (1-E2)/(E2*A2); +R3 = 1/(A1*F12); +R4 = 1/(A1*F13); +R5 = 1/(A2*F23); +// taking the resistance (1-E3)/(E3*A3) as zero, we have the network (as shown in figure example 8-6(page no.-403)). +// to calculate the heat flows at each surface we must determine the radiosities J1 and J2. the network is solved by setting the sum of the heat currents entering nodes J1 and J2 to zero + +// node J1: +// (Eb1-J1)/R1+(J2-J1)/R3+(Eb3-J1)/R4 = 0 (a) + +// node J2: +// (J1-J2)/R3+(Eb3-J2)/R5+(Eb2-J2)/R2 = 0 (b) + +// now +Eb1 = sigma*T1^(4);// [W/square meter] +Eb2 = sigma*T2^(4);// [W/square meter] +Eb3 = sigma*T3^(4);// [W/square meter] +J3 = Eb3;// [W/square meter] +// inserting the values of Eb1,Eb2, and Eb3 into equations (a) and (b), we have two equations and two unknowns J1 and J2 that may be solved simultaneously to give +// on simplifying we get J1 = (J2-R3*[(Eb3-J2)/R5+(Eb2-J2)/R2]) +// putting this value in equation (a) and solve for J2 +deff('[y] = f3(J2)','y = (Eb1-(J2-R3*[(Eb3-J2)/R5+(Eb2-J2)/R2]))/R1+(J2-(J2-R3*[(Eb3-J2)/R5+(Eb2-J2)/R2]))/R3+(Eb3-(J2-R3*[(Eb3-J2)/R5+(Eb2-J2)/R2]))/R4'); +J2 = fsolve(1,f3);// [W/square meter] +J1 = (J2-R3*[(Eb3-J2)/R5+(Eb2-J2)/R2]);// [W/square meter] +// the total heat lost by plate 1 is +q1 = (Eb1-J1)/[(1-E1)/(E1*A1)];// [W] +// and the heat lost by plate 2 is +q2 = (Eb2-J2)/[(1-E2)/(E2*A2)];// [W] +// the total heat received by the room is +q3 = [(J1-J3)/(1/(A1*F13))]+[(J2-J3)/(1/(A2*F23))];// [W] +printf("the net heat transfer for plate 1 is %f kW",q1/1000) +printf("\n\n the net heat transfer for plate 2 is %f kW",q2/1000) +printf("\n\n the net heat transfer to the room is %f kW",q3/1000) + + + + diff --git a/405/CH8/EX8.7/8_7.sce b/405/CH8/EX8.7/8_7.sce new file mode 100755 index 000000000..a8c69eca9 --- /dev/null +++ b/405/CH8/EX8.7/8_7.sce @@ -0,0 +1,52 @@ +clear; +clc; +printf("\t\t\tExample Number 8.7\n\n\n"); +// surface in radiant balance +// Example 8.7 (page no.-404-405) +// solution + +w = 0.5;// [m] width of plate +L = 0.5;// [m] length of plate +sigma = 5.669*10^(-8);// [W/square meter K^(4)] +// from the data of the problem +T1 = 1000;// [K] temperature of first surface +T2 = 27+273;// [K] temperature of room +A1 = w*L;// [square meter] area of rectangle +A2 = A1;// [square meter] area of rectangle +E1 = 0.6;// emissivity of surface 1 +// although this problems involves two surfaces which exchange heat and one which is insulated or re-radiating, equation (8-41) may not be used for the calculation because one of the heat-exchanging surfaces(the room) is not convex. The radiation network is shown in figure example 8-7(page no.-404) where surface 3 is the room and surface 2 is the insulated surface. note that J3 = Eb3 because the room is large and (1-E3)/(E3*A3) approaches zero.Because surface 2 is insulated it has zero heat transfer and J2 = Eb2. J2 "floats" in the network and is determined from the overall radiant balance. +// from figure 8-14(page no.-387) the shape factors are +F12 = 0.2; +F21 = F12; +// because +F11 = 0; +F22 = 0; +F13 = 1-F12; +F23 = F13; +// the resistances are +R1 = (1-E1)/(E1*A1); +R2 = 1/(A1*F13); +R3 = 1/(A2*F23); +R4 = 1/(A1*F12); +// we also have +Eb1 = sigma*T1^(4);// [W/square meter] +Eb3 = sigma*T2^(4);// [W/square meter] +J3 = Eb3;// [W/square meter] +// the overall circuit is a series parallel arrangement and the heat transfer is +R_equiv = R1+(1/[(1/R2)+1/(R3+R4)]); +q = (Eb1-Eb3)/R_equiv;// [W] +// this heat transfer can also be written as q = (Eb1-J1)/((1-E1)/(E1*A1)) +// inserting the values +J1 = Eb1-q*((1-E1)/(E1*A1));// [W/square meter] +// the value of J2 is determined from proportioning the resistances between J1 and J3, so that +// (J1-J2)/R4 = (J1-J3)/(R4+R2) +J2 = J1-((J1-J3)/(R4+R2))*R4;// [W/square meter] +Eb2 = J2;// [W/square meter] +// finally, we obtain the temperature of the insulated surface as +T2 = (Eb2/sigma)^(1/4);// [K] +printf("temperature of the insulated surface is %f K",T2); +printf("\n\n heat lost by the surface at 1000K is %f kW",q/1000); + + + + diff --git a/405/CH8/EX8.8/8_8.sce b/405/CH8/EX8.8/8_8.sce new file mode 100755 index 000000000..6f9544872 --- /dev/null +++ b/405/CH8/EX8.8/8_8.sce @@ -0,0 +1,38 @@ +clear; +clc; +printf("\t\t\tExample Number 8.8\n\n\n"); +// open hemisphere in large room +// Example 8.8 (page no.-406-408) +// solution + +d = 0.3;// [m] diameter of hemisphere +T1 = 500+273;// [degree celsius] temperature of hemisphere +T2 = 30+273;// [degree celsius] temperature of enclosure +E = 0.4;// surface emissivity of hemisphere +sigma = 5.669*10^(-8);// [W/square meter K^(4)] constant +// the object is completely surrounded by a large enclosure but the inside surface of the sphere is not convex. +// in the given figure example 8-8(page no.-407) we take the inside of the sphere as surface 1 and the enclosure as surface 2. +// we also create an imaginary surface 3 covering the opening. +// then the heat transfer is given by +Eb1 = sigma*T1^(4);// [W/square meter] +Eb2 = sigma*T2^(4);// [W/square meter] +A1 = 2*%pi*(d/2)^(2);// [square meter] area of surface 1 +// calculating the surface resistance +R1 = (1-E)/(E*A1); +// since A2 tends to 0 so R2 also tends to 0 +R2 = 0; +// now at this point we recognize that all of the radiation leaving surface 1 which will eventually arrive at enclosure 2 will also hit the imaginary surface 3(F12 = F13). we also recognize that A1*F13 = A3*F31. but +F31 = 1.0; +A3 = %pi*(d/2)^(2);// [square meter] +F13 = (A3/A1)*F31; +F12 = F13; +// then calculating space resistance +R3 = 1/(A1*F12); +// we can claculate heat transfer by inserting the quantities in equation (8-40): +q = (Eb1-Eb2)/(R1+R2+R3);// [W] +printf("net radiant exchange is %f W",q); + + + + + diff --git a/405/CH8/EX8.9/8_9.sce b/405/CH8/EX8.9/8_9.sce new file mode 100755 index 000000000..9ba635333 --- /dev/null +++ b/405/CH8/EX8.9/8_9.sce @@ -0,0 +1,45 @@ +clear; +clc; +printf("\t\t\tExample Number 8.9\n\n\n"); +// effective emissivity of finned surface +// Example 8.9 (page no.-409-410) +// solution + +// for unit depth in the z-dimension we have +A1 = 10;// [square meter] +A2 = 5;// [square meter] +A3 = 60;// [square meter] +// the apparent emissivity of the open cavity area A1 is given by equation(8-47) as +// Ea1 = E*A3/[A1+E*(A3-A1)] +// for constant surface emissivity the emitted energy from the total area A1+A2 is +// e1 = Ea1*A1+E*A2*Eb +// and the energy emitted per unit area for that total area is +// e_t = [(Ea1*A1+E*A2)/(A1+A2)]*Eb +// the coefficient of Eb is the effective emissivity, E_eff of the combination of the surface and open cavity. inserting +// above equations gives the following values + +// for E = 0.2 + +E = 0.2; +Ea1 = E*A3/[A1+E*(A3-A1)]; +E_eff = [(Ea1*A1+E*A2)/(A1+A2)]; +printf("For emissivity of 0.2 the value of effective emissivity is %f ",E_eff); + +// for E = 0.5 + +E = 0.5; +Ea1 = E*A3/[A1+E*(A3-A1)]; +E_eff = [(Ea1*A1+E*A2)/(A1+A2)]; +printf("\n\n For emissivity of 0.5 the value of effective emissivity is %f ",E_eff); + +// for E = 0.8 + +E = 0.8; +Ea1 = E*A3/[A1+E*(A3-A1)]; +E_eff = [(Ea1*A1+E*A2)/(A1+A2)]; +printf("\n\n For emissivity of 0.8 the value of effective emissivity is %f ",E_eff); + + + + + -- cgit