In [0]:
import numpy as np

Problem 4.20: What fraction of the flux of energy emitted by the sun does the Earth intercept? and

Problem 4.21: Show that for small perturbations in the Earth’s radiation balance is

$$\frac{\delta T_E}{T_E} = \frac{1}{4} \frac{\delta F_E}{F_E}$$

where TE is the Earth’s equivalent blackbody temperature and FE is the flux density of radiation emitted from the top of its atmosphere.

Problem 4.23: Estimate the flux density of the radiation emitted from the solar photosphere using two different approaches: (a) starting with the intensity ($2.00 \times 10^7\ W\ m^{-2} sr^{-1}$) and making use of the results in Exercise 4.3 and (b) making use of the relationship derived in the previous exercise. (c) Estimate the output of the sun in watts.

The question is asking us to show that the solar flux at the top of the earth's atmosphere can be calculated in two ways:

$$F= I \Delta \omega$$

where $I$ is the radiance from the sun's surface (in $W/m^2/sr$) and $\Delta \omega$ is the solid angle subtended by the sun as seen from the earth

or $$F=\frac{power}{area}$$

where power is the Watts coming from the sun's surface and area is the area of the sphere with the radius of the earth-sun distance.

We know from problem 4.2 that $\Delta \omega$ for the sun is $6.84 \times 10^{-5}$ sr so $I \Delta \omega$= $2 \times 10^ 7 \times 6.84 \times 10^{-5}$ = 1368 $W/m^2$


In [0]:
2.e7*6.84e-5

We also know that the sun is an isotropic blackbody so

$F=\pi I$ at the sun's surface:


In [0]:
np.pi*2.e7  #W/m^2

We need to multiply this by the Sun's area to get the total Watts then divide this by the area at earth orbit to get the flux at earth. That is, we need to multiply by:

$$\left ( \frac{4\pi (7 \times 10^8)^2}{4 \pi( 1.5 \times 10^{11})^2} \right )$$

In [0]:
np.pi*2.e7*(7.e8)**2./(1.5e11**2.) #W/m^2

Prove Kirchoff's law for a gas

Do the budget for the gas in-between walls A and B. If it has $(abs) \ne \epsilon$, then it is absorbing $(abs) \sigma T^4$ from wall A and $(abs) \sigma T^4$ from Wall B while emitting $2 \epsilon \sigma T^4$ in either direction back at the walls (arrows E1 and E2). If $2 (abs) \sigma T^4 \ne 2 \epsilon \sigma T^4$, then the gas would have to either heat or cool. Since it is at the same temperature as the walls and no work has been done, this violates the 2nd law.


In [0]: