You are on page 1of 3

/* The conduction heat rate through a plane wall of thickness L and cross-sectional area A: */

q''cd12in = k * (T1 - T2*L) // Heat flux, W/m^2


k= 1 // Thermal conductivity, W/m·K
L= 0 // Thickness, m
T1 = 200 // Temperature, K
T2 = 60 // Temperature, K

q''cd12out = k * (T1 - T2*L) // Heat flux, W/m^2


k= 1 // Thermal conductivity, W/m·K

L= 0.3 // Thickness, m
T1 = 200 // Temperature, K
T2 = 60 // Temperature, K

E= q''cd12in - q''cd12out
E= 200 – 182 = 18 W/m2
/* The convection heat rate from a plane surface of surface area As to a fluid at Tinf: */
h= q''cv / (Ts - Tinf) // Convection coefficient, W/m^2·K
q''cv= 182 // Heat flux, W/m^2
Ts = 142.7 // Surface temperature, °C
Tinf = 100 // Fluid temperature, °C

/* The conduction heat rate through a hollow sphere of inner and outer radii r1 and r2: */

/* The convection heat rate from a spherical surface of radius r to a fluid at Tinf: */

Ts= Tinf + q * Rtot


kpb = 35.3 // Thermal conductivity, W/m·K
kst= 15.1 // Thermal conductivity, W/m·K
r1 = 0.25 // Inner radius, m
r2 = 0.3 // Outer radius, m
r3 = 0.31 // Outer radius 2, m
h = 500 // Convection coefficient, W/m^2·K
Tinf = 283 // Fluid temperature, K
As = 4 * pi * r3^2 // Surface area, m^2
qg= 5*10^5 // Rate of generate heat, W/m^3
Vcasc= (4 * pi * r1^3)/3
q= qg * Vcasc
Rpb= (1/(4*pi*kpb))*((1/r1) - (1/r2))
Rst= (1/(4*pi*kst))*((1/r2) - (1/r3))
Rconv= 1/(As * h)
Rtot= Rpb + Rst + Rconv

Según las tablas, para que no se derrita el cascarón, la temperatura no debe exceder los 601 K, y
dado que el Ts es de 404.9 K, no hay problema alguno.

You might also like