Contents
Heat Transfer Home Work
clear, clc, home
fprintf('The date and time: %s \n', datestr(now))
The date and time: 08-Apr-2009 19:16:24
Part b
Ts = 523;
T_inf = 300;
Tf = (Ts+T_inf)/2;
L = 0.15;
Sr = 10;
Er = 100;
rho = 0.8497;
mu = 234.63e-7;
kf = 34.57e-3;
Pr = 0.689;
heat removal rate per unit width vs. air velocity
v = [Sr:0.0001:Er];
R = rho.*(v.*1000/3600).*L./(mu);
Nu = 0.037.*R.^(4/5).*Pr.^(1/3);
h = Nu.*kf./(L);
q_per_w = h.*(Ts-T_inf)*2.*L;
plot(v, q_per_w), xlabel('Free Stream Air Velocity, (km/h)'), ...
ylabel('Heat Removal Rate Per Unit Width (W/m)'), ...
title('Heat Removal vs. Air Velocity')