Open In Colab   Open in Kaggle

Tutorial 2: Energy Balance#

Week 1, Day 5, Introduction to Climate Modeling

Content creators: Jenna Pearson and Brian E. J. Rose

Content reviewers: Mujeeb Abdulfatai, Nkongho Ayuketang Arreyndip, Jeffrey N. A. Aryee, Dionessa Biton, Younkap Nina Duplex, Will Gregory, Paul Heubel, Zahra Khodakaramimaghsoud, Peter Ohue, Abel Shibu, Derick Temfack, Yunlong Xu, Peizhen Yang, Chi Zhang, Ohad Zivan

Content editors: Brodie Pearson, Abigail Bodner, Ohad Zivan, Chi Zhang

Production editors: Wesley Banfield, Jenna Pearson, Konstantine Tsafatinos, Chi Zhang, Ohad Zivan

Our 2024 Sponsors: CMIP, NFDI4Earth

Tutorial Objectives#

Estimated timing of tutorial: 30 minutes

In this tutorial, you will learn about the components that define energy balance, including insolation and albedo.

By the end of this tutorial you will be able to:

  • Calculate the albedo of Earth based on observations.

  • Define and find the equilibrium temperature under the assumption of energy balance.

  • Understand the relationship between transmissivity and equilibrium temperature.

This tutorial is based on content from The Climate Laboratory by Brian E. J. Rose.

Setup#

# imports
import numpy as np  # used for algebra and array operations
import matplotlib.pyplot as plt  # used for plotting

Figure settings#

Hide code cell source
# @title Figure settings
import ipywidgets as widgets  # interactive display

%config InlineBackend.figure_format = 'retina'
plt.style.use(
    "https://raw.githubusercontent.com/neuromatch/climate-course-content/main/cma.mplstyle"
)

Video 1: Energy Balance#

Section 1: A Radiating Sun#

Section 1.1: Incoming Solar Radiation (Insolation) and Albedo (\(\alpha\))#

Just as Earth emits radiation, so does the sun. Radiation from the sun is referred to as solar or shortwave radiation. We will denote the incoming solar radiation, or insolation, as \(Q\).

From the ‘All Sky’ Energy budget shown below, the insolation is observed to be \(Q = 340 \text{ W m}^{-2}\).

Note that ‘All Sky’ refers to fluxes that include the effects of clouds. Compare the ‘All Sky’ figure to the ‘Clear Sky’ figure below, to see how the fluxes differ when measured only over regions that are cloud-free.

Some of this radiation is reflected back to space (for example off of ice and snow or clouds). We will denote the reflected flux back to space as \(F_{\text{ref}}\).

From the ‘All Sky’ energy budget below, this reflected flux is \(F_{\text{ref}} = 100 \text{ W m}^{-2}\).

Global Mean Energy Budget Figure 7.2 | Schematic representation of the global mean energy budget of the Earth (upper panel), and its equivalent without considerations of cloud effects (lower panel). Numbers indicate best estimates for the magnitudes of the globally averaged energy balance components in \(\text{ W m}^{-2}\) together with their uncertainty ranges in parentheses (5–95% confidence range), representing climate conditions at the beginning of the 21st century. Note that the cloud-free energy budget shown in the lower panel is not the one that Earth would achieve in equilibrium when no clouds could form. It rather represents the global mean fluxes as determined solely by removing the clouds but otherwise retaining the entire atmospheric structure. This enables the quantification of the effects of clouds on the Earth energy budget and corresponds to the way clear-sky fluxes are calculated in climate models. Thus, the cloud-free energy budget is not closed and therefore the sensible and latent heat fluxes are not quantified in the lower panel. Figure adapted from Wild et al. (2015, 2019). (Credit: IPCC AR6 Report)

The fraction of reflected radiation relative to the insolation is called the planetary albedo or just albedo (\(\mathbf{\alpha}\))

(8)#\[\begin{align} \alpha = \frac{F_{\text{ref}}}{Q} \end{align}\]

Albedo is a unitless number between 0 and 1. We can use this formula to find the albedo of Earth.

# define the observed insolation based on observations from the IPCC AR6 Figure 7.2
Q = 340  # W m^-2

# define the observed reflected radiation based on observations from the IPCC AR6 Figure 7.2
F_ref = 100  # W m^-2

# plug into equation
alpha = F_ref / Q  # unitless number between 0 and 1

# display answer
print("Albedo: ", alpha)
Albedo:  0.29411764705882354

Questions 1.1: Climate Connection#

  1. Keeping insolation (\(Q\)) constant, what does a low albedo imply? What about a high albedo?

  2. There are two components to albedo, the reflected radiation in the numerator and the insolation in the denomenator. Do you think one or both of these have changed over Earth’s history?

Click for solution

Section 1.2: Absorbed Shortwave Radiation (ASR)#

The absorbed shortwave radiation (ASR) is the amount of insolation that is not reflected, and actually makes it to Earth’s surface. Thus,

(9)#\[\begin{align} ASR = Q-F_{\text{ref}} = (1-\alpha)Q \end{align}\]

From observations, we can estimate the absorbed shortwave radiation.

# plug into equation
ASR = (1 - alpha) * Q

# display answer
print("Absorbed Shortwave Radiation: ", ASR, " W m^-2")
Absorbed Shortwave Radiation:  239.99999999999997  W m^-2

Questions 1.2: Climate Connection#

  1. Compare the value of ASR to the observed OLR of \(239 \text{ W m}^{-2}\). Is it more or less? What do you think this means?

  2. Does this model take into account any effects of gases in that atmosphere on the solar radiation that makes it to Earth’s surface? Are there any greenhouse gases you think are important and should be included in more complex models?

Click for solution

Section 2: Energy Balance#

Section 2.1: Equilibrium Temperature#

Energy Balance is achieved when radiation absorbed by Earth’s surface (ASR) is equal to longwave radiation going out to space (OLR). That is

(10)#\[\begin{align} ASR = OLR \end{align}\]

By substituting into the equations from previous sections, we can find the surface temperature of Earth needed to maintain this balance. This is called the equilibrium temperature ( \(\mathbf{T_{\text{eq}}}\) ).

Recall \(OLR = \tau\sigma T^4\) and \(ASR = (1-\alpha)Q\). The equilibrium temperature is the temperature the system would have if the energy balance was perfectly reached. Assuming energy balance, we will call the emission temperature denoted previously the equilibrium temperature (\(T_{\text{eq}}\)) instead. Thus,

(11)#\[\begin{align} (1-\alpha)Q = ASR = OLR = \tau\sigma T_{\text{eq}}^4 \end{align}\]

Solving for \(T_{\text{eq}}\) we find

(12)#\[\begin{align} T_{\text{eq}} = \sqrt[4]{\frac{(1-\alpha)Q}{\tau\sigma}} \end{align}\]

Let’s calculate what this should be for Earth using observations:

# define the Stefan-Boltzmann Constant, noting we are using 'e' for scientific notation
sigma = 5.67e-8  # W m^-2 K^-4

# define transmissivity (calculated previously from observations in tutorial 1)
tau = 0.6127  # unitless number between 0 and 1

# plug into equation
T_eq = (((1 - alpha) * Q) / (tau * sigma)) ** (1 / 4)

# display answer
print("Equilibrium Temperature: ", T_eq, "K or", T_eq - 273, "°C")
Equilibrium Temperature:  288.300287595812 K or 15.300287595811994 °C

Section 3: Climate Change Scenario#

Section 3.1: Increasing Greenhouse Gas Concentrations#

Assume due to the increasing presence of greenhouse gases in the the atmosphere, that \(\tau\) decreases to \(0.57\).

We can then use our climate model and python to find the new equilibrium temperature.

# define transmissivity (assupmtion in this case)
tau_2 = 0.57  # unitless number between 0 and 1

# plug into equation
T_eq_2 = (((1 - alpha) * Q) / (tau_2 * sigma)) ** (1 / 4)

# display answer
print("New Equilibrium Temperature: ", T_eq_2, "K or", T_eq_2 - 273, "°C")
New Equilibrium Temperature:  293.5542225759401 K or 20.554222575940116 °C

Questions 3.1: Climate Connection#

  1. Does a reduction in the transmissivity, \(\tau\), imply a decrease or increase in OLR?

  2. How does the new equilibrium temperature compare to that calculated previously? Why do you think this is?

Click for solution

Coding Exercises 3.1#

  1. Plot the equilibrium temperature as a function of \(\tau\), for \(\tau\) ranging from zero to one.

# define the observed insolation based on observations from the IPCC AR6 Figure 7.2
Q = ...

# define the observed reflected radiation based on observations from the IPCC AR6 Figure 7.2
F_ref = ...

# define albedo
alpha = ...

# define the Stefan-Boltzmann Constant, noting we are using 'e' for scientific notation
sigma = ...


# define a function that returns the equilibrium temperature and takes argument tau
def get_eqT(tau):
    return ...


# define tau as an array extending from 0 to 1 with spacing interval 0.01
tau = ...

# use list comprehension to obtain the equilibrium temperature as a function of tau
eqT = ...

fig, ax = plt.subplots()
# Plot tau vs. eqT
_ = ...
ax.set_xlabel(...)
ax.set_ylabel(...)
Text(0, 0.5, 'Ellipsis')
../../../_images/9a4483121075d24984f54b2b5a03a31cdc848be0de17c4b622b6a13935566103.png

Click for solution

Example output:

Solution hint

Summary#

In this tutorial, you explored the fundamentals of Earth’s energy balance. You learned how to calculate Earth’s albedo \(\mathbf{\alpha}\) and how absorbed shortwave radiation contributes to energy balance. You also discovered the concept of equilibrium temperature and it’s relationship to energy balance. The tutorial also highlighted the impact of increasing greenhouse gases on the equilibrium temperature.

Resources#

Useful links: