PROBLEM 5.113 (Cont.)
loss 4 , 8 , 12 , 16 , 19 , 21 , 22 ,
11
8 ( )( )( )( )( )( ) ( )
22
o oooooo o
qhxTTTTTTTTTTTT TT
∞∞∞∞∞∞ ∞
=∆ −+−+−+−+−+−+ −
The results for the different times are shown below.
COMMENTS: (1) Note that the steady–state condition is reached by t = 50 hours; this can be seen
by comparing the distributions for t = 50 and 100 hours. Within 10 hours, the flue is within a few
degrees of the steady–state condition and the heat loss rate is within 10% of the steady–state value. (2)
The IHT code for performing the numerical solution is shown in its entirety below. Use has been
made of symmetry in writing the FDEs. The tabulated results above were obtained by copying from
the IHT Browser and pasting the desired columns into EXCEL.
// From Tools|Finite–difference equations|Two-dimensional|Transient
// Interior surface nodes, 01, 05, 09, 13
/* Node 01: plane surface node, s–orientation; e, w, n labeled 05, 05, 02 . */
// Interior nodes, 02, 03, 06, 07, 10, 11, 14, 15, 18, 20
/* Node 02: interior node; e, w, n, s labeled 06, 06, 03, 01. */
rho * cp * der(T02,t) = fd_2d_int(T02,T06,T06,T03,T01,k,qdot,deltax,deltay)
rho * cp * der(T20,t) = fd_2d_int(T20,T21,T18,T21,T18,k,qdot,deltax,deltay)
// Exterior surface nodes, 04, 08, 12, 16, 19, 21, 22
/* Node 04: plane surface node, n–orientation; e, w, s labeled 08, 08, 03. */
// Rate of heat loss from nodes 04, 08, 12, 16, 19, 21, 22
qloss = 8*ho*deltax*((0.5*T04+T08+T12+T16+T19+T21+0.5*T22)–6*Tinfo)
// Input variables
deltax = 0.050
deltay = 0.050
Tinfi = 350