You are on page 1of 5

Nombre: Raúl Ferruzola Navarro Paralelo: 1

Deber de convección forzada externa

/* The convection heat rate from a plane surface of surface area As to a fluid at Tinf: */
qcv = q''cv * As // Heat rate, W
q''cv = h * (Ts - Tinf) // Heat flux, W/m^2
As = 0.5 // surface area, m^2; unit area shown
L=1 // Lenght, m
Ts = 373 // Surface temperature, K
Tinf = 293 // Fluid temperature, K
h = (Nu1 * k) / L // Convection coefficient, W/m^2·K
u= 20 // Air velocity, m/s
v = 19.2 * 10^-6 // kinematic viscosity, m^2/s
k = 28.7 * 10^-3 // conductivity coefficient, W/m*k
Pr = 0.7 // Prandlt number
Re = (u * L) / v // Reynolds number
Nu1 = 0.037 * (Re^(4/5) - 871) * Pr^(1/3)
Nu2 = 0.037 * (Re^(4/5)) * Pr^(1/3)

/* The convection heat rate from a cylindrical surface of radius r and length L to a fluid at Tinf: */
r = 0.005 // Radius, m
Ts = 323 // Surface temperature, K
Tinf = 293 // Fluid temperature, K
u= 5 // Air, water and oil velocity, m/s

va = 16.69 * 10^-6 // Air kinematic viscosity, m^2/s


ka= 0.0269 // Air conductivity coefficient, W/m*K
Pra= 0.706 // Air Prandlt number
Rea= (u*2*r) / va // Air Reynolds number
Nua= 0.3 + ((0.62 * Rea^(1/2) * Pra^(1/3)) * (1 + (Rea / 282000)^(5/8))^(4/5) / (1 +
(0.4/Pra)^(2/3))^(1/4)) // Air Nusselt number
ha = (Nua * ka) / (2*r) // Air Convection coefficient, W/m^2·K
qcva = q''cva * 2 * pi * r // Air Heat rate, W/m
q''cva = ha * (Ts - Tinf) // Air Heat flux, W/m^2

vw= 7.29 * 10^-7 // Water kinematic viscosity, m^2/s


kw= 0.625 // Water conductivity coefficient, W/m*K
Prw= 4.85 // Water Prandlt number
Rew= (u*2*r) / vw // Water Reynolds number
Nuw= 0.3 + ((0.62 * Rew^(1/2) * Prw^(1/3)) * (1 + (Rew / 282000)^(5/8))^(4/5) / (1 +
(0.4/Prw)^(2/3))^(1/4)) // Water Nusselt number
hw = (Nuw * kw) / (2*r) // Water Convection coefficient, W/m^2·K
qcvw = q''cvw * 2 * pi * r // Water Heat rate, W/m
q''cvw = hw * (Ts - Tinf) // Water Heat flux, W/m^2

vo= 340 * 10^-6 // Oil kinematic viscosity, m^2/s


ko= 0.145 // Oil conductivity coefficient, W/m*K
Pro= 4000 // Oil Prandlt number
Reo= (u*2*r) / vo // Oil Reynolds number
Nuo= 0.3 + ((0.62 * Reo^(1/2) * Pro^(1/3)) * (1 + (Reo / 282000)^(5/8))^(4/5) / (1 +
(0.4/Pro)^(2/3))^(1/4)) // Oil Nusselt number
ho = (Nuo * ko) / (2*r) // Oil Convection coefficient, W/m^2·K
qcvo = q''cvo * 2 * pi * r // Oil Heat rate, W/m
q''cvo = ho * (Ts - Tinf) // Oil Heat flux, W/m^2
/* The convection heat rate from a cylindrical surface of radius r and length L to a fluid at Tinf: */
qcv = h * N * 2 * pi * r * ( ((Ts - Tinf) - dt) / ln ((Ts - Tinf) / dt)) // Heat rate, W/m
r = 0.005 // Radius, m
Ts = 300 // Surface temperature, K
Tinf = 700 // Fluid temperature, K
h = (Nu * k) / (2 * r) // Convection coefficient, W/m^2·K
umax= 10 // Maximum velocity, m/s
v= 68.1 * 10^-6 // Kinematic viscosity, m^2/s
k= 0.0524 // Tube Conductivity coefficient, W/m*K
rho= 0.498 // Air density, kg/m^3
cp= 1075 // Capacidad calorífica del aire, J/kg*K
St= 4*r // Separación entre tubos, m
N= 500 // Número de tubos
Re= (umax * 2 * r) / v // Reynolds number
Pr= 0.695 // Air Prandlt number
Prs= 0.707 // Tube Prandlt number
Nu= (0.27 * 0.97) * Re^(0.63) * Pr^(0.36) * (Pr / Prs)^(1/4) // Nusselt number
dt= -201.3 // K

You might also like