Heat Transfer Lessons With Examples Solved By Matlab Rapidshare Added Patched

[ T(x) = T_1 - \frac(T_1 - T_2)L x ] [ q = -k \fracdTdx = k \fracT_1 - T_2L ]

k = 1.5; % thermal conductivity (W/mK) L = 0.1; % thickness (m) A = 10; % surface area (m^2) T1 = 20; % temperature 1 (°C) T2 = 0; % temperature 2 (°C) [ T(x) = T_1 - \frac(T_1 - T_2)L

% 1D Steady Conduction in a Plane Wall clear; clc; % thickness (m) A = 10

% Calculate convective heat transfer coefficient (W/m²°C) h = 0.023 * (k / L) * (u * L / 0.001) ^ 0.8; [ T(x) = T_1 - \frac(T_1 - T_2)L