ME 353 Heat Transfer 1

M.M. Yovanovich

CARTLAP1.MWS

____________________________________________

Thermal Resistance and Shape Factor of Plane Walls.

Derivation and solution of Laplace equation in a plane wall

of thermal conductivity k which is assumed to be constant.

Boundary conditions of the first kind: T(0) = T1 and

T(L) = T2 < T1.

Find the thermal resistance of this system defined as

R = (T1 - T2)/Q

and the shape factor defined by the relation

Q = k S (T1 - T2).

______________________________________________

> restart:

> Q[x]:= - k*A*diff(T(x), x);
#Conduction rate into control volume dV = Adx.

[Maple Math]

> Q[x + dx]:= Q[x] + diff(Q[x], x)*dx;
#Conduction rate out of control volume dV = Adx.

[Maple Math]

> eq:= (Q[x] - Q[x + dx])/(k*A*dx) = 0;

[Maple Math]

> sol:= dsolve(eq, T(x)); rhs(sol);

[Maple Math]

[Maple Math]

> bc1:=
subs(x = 0, rhs(sol)) = T1;
bc2:= subs(x = L, rhs(sol)) = T2;

[Maple Math]

[Maple Math]

> consts:=
solve({bc1, bc2}, {_C1, _C2});

[Maple Math]

> assign(consts);

> sol;

[Maple Math]

> Q:= - k*A*diff(rhs(sol), x);

[Maple Math]

Thermal resistance and shape factor of a plane wall.

> R:= simplify((T1 - T2)/Q);

[Maple Math]

> S:= simplify(Q/(k*(T1 - T2)));

[Maple Math]

Check the units of the thermal resistance and the shape factor.

> par_units:= {A = m^2, L = m, k = W/m/K};

[Maple Math]

> R_units:= subs(par_units, R);

[Maple Math]

> S_units:= subs(par_units, S);

[Maple Math]

>