Assignment 02: effect of clouds on the planetary energy balance#

In this exercise you are going to compute the effect of clouds on the planetary energy balance, with the help of a simple 1-column model of the atmosphere.

# These are the modules we need
import numpy as np
import matplotlib.pyplot as plt

We define some constants:

s_0 = 1367  # Solar constant (W m-2)
sigma = 5.670e-8  # Stefan–Boltzmann constant
t_s = 288  # Average temperature of the Earth's surface (K)
t_clr = 261  # Radiation temperature of a clear sky atmosphere (K)
gamma = -6.5  # Lapse-rate in the atmoshpere (K km-1)
surface_albedo = 0.12  # Albedo of the surface of the Earth

Effect of low clouds on the EB#

To isolate the effect of clouds, we assume a very simple representation of the atmosphere as a simple column, free of other clouds. The Temperature of the cloud would then be:

\(T_{Cloud} = T_{Surface} + \gamma \, z \),

with \(z\) the cloud altitude (km) and \(\gamma\) the lapse-rate.

Q: compute the temperature (K) of a cloud at z = 5km, assuming a constant lapse rate and an average surface temperature of 288K:

# Your answer here

Now assume that the cloud absorbs all the IR radiation emited by the surface (a reasonable approximation), while emmitting IR directly back to space according to its own temperature. So the total energy change of the climate system in the longwave (LW) spectrum would be:

\(\Delta E_{LW} = LW_{ClrSky}\uparrow - LW_{Cloud}\uparrow\)

So, according to Stefan-Boltzmann:

\(\Delta E_{LW} = \sigma T_{ClrSky}^4 - \sigma T_{Cloud}^4\)

Where \(T_{ClrSky}\) is the radiation temperature of a clear sky atmosphere (here assumed to be 261 K).

Q: compute the approximate “average” altitude at which the clear sky atmosphere emits at 261 K (from the standard lapse rate). This will give the approximate minimum altitude at which the equation above is valid.

# Your answer here

Q: compute the effect of a low cloud on the LW energy balance of the climate system. Is the cloud a LW energy loss or an energy gain for the system?

# Your answer here

Now consider the shortwave effects of the cloud if it has an albedo of 0.5. The net difference for the climate system is simply the increased loss in solar energy because of an increased reflection:

\(\Delta E_{SW} = - S_0 / 4 \cdot (\alpha _{Cloud} - \alpha _{Earth} ) \)

Q: compute the effect of a low cloud on the shortwave (SW) energy balance of the climate system. Is the cloud a SW energy loss or an energy gain for the system?

# Your answer here

Finally, the net energy difference for the climate system is:

\(\Delta E_{TOT} = \Delta E_{SW} + \Delta E_{LW}\)

Q: compute the effect of a low cloud on the total (SW + LW) energy balance of the climate system. Is the low cloud a total energy loss or an energy gain for the system?

# Your answer here

Effect of high clouds on the EB#

Q: repeat the calculations above to compute the effect of a high cloud (z = 12km, albedo unchanged) on the total energy balance of the climate system. Is the high cloud a total energy loss or an energy gain for the system?

# Your answer here

And now automate things a little bit#

Q: repeat the calculations above for the whole range of altitudes between 4 and 12 km (see the previous lesson for how to do this). Plot the curve.

# Your answer here

Q: repeat the calculations above, for three values of the cloud albedo: 0.3, 0.5, 0.7. Plot the three curves on the same plot and add a legend to the plots (see the “Getting started” notebook for guidance).

# Your answer here

Q: discuss the features of the plot, and the conditions necessary for a cloud to be an energy gain or an energy loss for the climate system. Now search for typical values of cloud albedos depending on their type, and come back to your plot for comparison.

If you complicate things a bit by noticing that high clouds have a low albedo and low clouds a high albedo while thick clouds have a high albedo but also a high cloud top you can imagine that the system becomes extremely sensitive.

The processes governing cloud albedo are extremely complex. The uncertainty about changes in the clouds frequency, altitude, and albedo are one of the highest uncertainty in the climate models.

More info on Skeptikal Science’s page on the topic (basic and intermediate)