Section 14.4: Direct Radiation Between Black Bodies in vacuo at Different Temperatures

A CENG 402 Project by Mehul Tejani, 2001


What is a black body?
Any time a solid is heated, it emits radiation from the surface known as thermal radiation. The radiation may be caused by a number of quantum factors, or the different methods that excited molecules or atoms return to a lower energy level. Just as a solid surface can emit radiation, it is also possible for the surface to absorb radiation emitted by another surface. All "real bodies" will absorb a variable amount of the incident radiation, and that variation depends on frequency. Theoretically, a "gray body" will absorb a fixed fraction of the incident radiation regardless of frequency. If the fraction is 1, or all the incident radiation is being absorbed, the solid is know as a "black body." This section deals with the energy transfer between two such black bodies.


Figure 1: Radiation between two black bodies (taken from BSL, p.439)


> restart;

Lambert's Law:

> q[b,theta]:=q[b]/Pi*cos(theta);

[Maple Math]

> q[b]:=sigma*T^4;

[Maple Math]

> q[b,theta];

[Maple Math]

Now consider the diagram shown in figure 1. In order to find the energy transferred between the two, a line r12 was created between the two surfaces. The angles theta1 and theta2 are the angles between r12 and the normal lines to the surfaces. Phi1 and Phi2 are measures of the rotation in the third dimension. Lambert's law applied to this case gives the following as the energy radiated by body 1 in a given amount of time:

> E:=sigma*T[1]^4/Pi*cos(theta[1])*dA[1]*sin(theta[1])*d(theta[1])*d(phi[1]);

[Maple Math]

Also as shown in the diagram, not all of the energy radiating from body 1 will be received by body 2. In order to account for this, the following is the ratio of the area of dA2 projected on a plane perpendicular to r12 to the area formed by the intersection of the solid angle sin(theta1)*d(theta1)*d(phi1) with a sphere of radius r12 with a center at dA1.

> ratio:=dA[2]*cos(theta[2])/(r[12]^2*sin(theta[1])*d(theta[1])*d(phi[1]));

[Maple Math]

By multiplying these two expressions, we get the differential for the total energy transferred from 1 to 2.

> dQ[12]:=E*ratio;

[Maple Math]

The same method can be applied for the reverse direction, but it can easily be seen that the only difference will be in the Temperature term.

> dQ[21]:=subs(T[1]=T[2],dQ[12]);

[Maple Math]

The net rate of energy transfer, then, is just the difference in energy transfers.

> dQ:=dQ[12]-dQ[21];

[Maple Math]
[Maple Math]

> simplify(dQ);

[Maple Math]

Next we integrate both sides to get the total heat transfer (but first we have to divide dQ by dA1*dA2 since Maple's "int" program requires the variables of integration to be entered separately):

> Q:=int(int(dQ/(dA[1]*dA[2]), A[1]), A[2]);

[Maple Math]
[Maple Math]
[Maple Math]

> simplify(Q);

[Maple Math]

BSL simplifies this further with the introduction of functions F12 and F21, where:

> F[12]:=1/(Pi*A[1])*int(int(cos(theta[1])*cos(theta[2])/r[12]^2, A[1]), A[2]);

[Maple Math]

> F[21]:=1/(Pi*A[2])*int(int(cos(theta[1])*cos(theta[2])/r[12]^2, A[1]), A[2]);

[Maple Math]

By placing F12 into the equation given by BSL, we see that it is the same as the one given for Q above

> A[1]*F[12]*sigma*(T[1]^4-T[2]^4);

[Maple Math]

The reason for adding the view factor F12 is because it is the actual portion of radiation emitted by A1 that is absorbed by A2. Calculating view factors, though, is difficult. Hottel and company calculated some view factors, and is results for the radiation between rectangles in perpendicular planes can be found in BSL, p. 441.

>

What we have done so far dealt with just two surfaces. Now we will expand that to a set of surfaces that makes a complete enclosure (like the inside of a box). It is easy to generalize the equation for Q by using the view factor.

> Q[is]:=sigma*A[i]*sum(F[ij]*(T[i]^4-T[j]^4), j=1...n);

[Maple Math]

> eq:=sum(F[ij], j=1...n)=1; This is true because in a closed space, all the radiation that leaves a surface must be absorbed by some surface.

[Maple Math]

It would look like this:

> sum(F[ij], j=1...n):=1;

[Maple Math]

Rearranging, we could say:

> n:=1/F[ij];

[Maple Math]

we can see then that the n*Fij, which equals 1, would drop out of the equation above. The final answer would look similar to this (except that there is no need to change n to 1/Fij in the sum):

> Q[is];

[Maple Math]

Which matches eqn. 14.4-13 from BSL.