PROBLEM 4.71 (Cont.)
COMMENTS: (1) The IHT Workspace for the 5×5 coarse node analysis with results follows.
// Finite–difference equations – energy balances
// First row – treating as interior nodes considering symmetry
T1 = 0.25 * ( Tc + T2 + T4 + T2 )
T2 = 0.25 * ( Tc + T3 + T5 + T1 )
T3 = 0.25 * ( Tc + T2 + T6 + T2 )
/* Second row – Node 4 treat as interior node; for others, use Tools: Finite–Difference Equations,
/* Third row – Node 7 treat as interior node; for others, use Tools: Finite–Difference Equations,
Two–Dimensional, Steady–State; be sure to delimit replicated q”a = 0 equations. */
T7 = 0.25 * (T4 + T8 + T9 + T8)
/* Node 8: plane surface node, e–orientation; w, n, s labeled 7, 5, 10. */
0.0 = fd_2d_psur_e(T8,T7,T5,T10,k,qdot,deltax,deltay,Tinf,h,q’‘a)
//q”a = 0 // Applied heat flux, W/m^2; zero flux shown
/* Fourth row – Node 9 treat as interior node; for others, use Tools: Finite–Difference Equations,
// Assigned variables
// For the FDE functions,
qdot = 0 // Volumetric generation, W/m^3
/* Heat rate per unit length, for two symmetrical elements about one microchannel, */
q’cv= 2 * (q’5 + q’6 + q’8 + q’10)
/* Thermal resistance between chip and fluid, per unit channel length, */
R’tcf = (Tc – Tinf) / q’cv // Thermal resistance, m.K/W
// Total power for a chip of 10mm x 10mm, Pchip (W),
q”c = q’cv / (wf + ws) // Heat flux on chip surface, W/m^2
Pchip = Achip * q”c // Power, W
Achip = 0.01 * 0.01 // Chip area, m^2