ME 651 Advanced Heat Conduction
M.M. Yovanovich
CONDEQ2.MWS
Derivation of Conduction Equations in Circular Cylinder Coordinates.
The solid has volumetric heat sources which are the result
of a variety of processes such as chemical, electrical, nuclear,
biological, mechanical, etc.
All thermophysical properties are constant.
Obtain the following special cases from the general
three-dimensional equation:
1) Two-dimensional transient without heat sources: T(r,z,t) and P = 0;
2) One-dimensional transient with heat sources: T(r, t) and P > 0;
3) Two-dimensional, steady-state with sources: T(r,z) and P > 0;
4) Two-dimensional, steady-state without sources: T(r,z) and P = 0;
5) One-dimensional, steady-state with heat sources: T(r) and P > 0;
6) One-dimensional, steady-state without heat souces: T(r) and P = 0.
> restart:
Conduction rates into differential control volume through the faces located at .
> Q[r]:= -k*dA[r]*diff(T(r,theta,z,t),r);
> Q[theta]:= -k*dA[theta]*diff(T(r,theta,z,t),theta)/r;
> Q[z]:= -k*dA[z]*diff(T(r,theta,z,t),z);
Conduction rates out of the control volume through surfaces at . Take the first two terms of the Taylor series expansion
> Q[r + dr]:= Q[r] + diff(Q[r], r)*dr;
> Q[theta + d*theta]:= Q[theta] + diff(Q[theta], theta)*d*theta;
> Q[z + dz]:= Q[z] + diff(Q[z], z)*dz;
Define the differential areas and the differential volume .
> dV:= dr*r*d*theta*dz;
> dA[r]:= r*d*theta*dz;
> dA[theta]:= dr*dz;
> dA[z]:= r*d*theta*dr;
Net heat conduction rate into the differential control volume through the six faces.
> Q[cond_net]:= Q[r]-Q[r+dr] + Q[theta] - Q[theta + d*theta] + Q[z] - Q[z+dz]:
Heat generation rate within the differential control volume due to distributed volumetric heat sources. Volumetric heat source is with units .
> Q[gen]:= P*dV;
Rate of energy storage within the differential control volume .
>
Q[storage]:=
rho*c[p]*diff(T(r,theta,z,t), t)*dV;
Energy balance over the differential control volume to obtain the general three-dimensional conduction equation. Divide by the product to simplify.
>
eq:=
expand((Q[cond_net] + Q[gen] =
Q[storage])/(k*dV));
Introduce the thermal diffusivity into the equation.
>
eq:= subs(rho = k/alpha/c[p], eq);
The three-dimensional conduction equation has four conduction terms, the source term and the storage term. The four conduction terms consist of two terms for the -coordinate, and one each for the and -coordinates.
This partial differential equation is second-order in space and first order in time.
It therefore requires one initial condition and six boundary
conditions to obtain its solution.
The above general equation can be used to obtain special cases.
A few special cases will be obtained below.
1) Two-dimensional transient without heat sources: and .
>
DiffusionEq_2D:=
expand(
subs(T(r,theta,z,t) = T(r,z,t), P = 0, eq));
2) One-dimensional transient with heat sources: and .
>
DiffusionPoissonEq_1D:=
expand(
subs(T(r,theta,z,t) = T(r, t), eq));
3) Two-dimensional, steady-state with sources: and .
>
DiffusionPoissonEq_2D:=
expand(
subs(T(x,theta,z,t) = T(r,z), eq));
4) Two-dimensional, steady-state without sources: and .
>
LaplaceEq_2D:=
expand(
subs(T(r,theta,z,t) = T(r,z), P = 0, eq));
5) One-dimensional, steady-state with heat sources: and .
>
PoissonEq_1D:=
expand(
subs(T(r,theta,z,t) = T(r), eq));
6) One-dimensional, steady-state without heat souces: and .
>
LaplaceEq_1D:=
expand(
subs(T(r,theta,z,t) = T(r), P = 0, eq));
This a small sample of the different types of conduction equations which are formulated in circular cylinder coordinates.