Brian E. J. Rose, University at Albany
This document is part of a collection of material for the graduate course ATM 623: Climate Modeling. At some point this content may be merged into The Climate Laboratory book.
Instructions¶
- In a local copy of this notebook (on the JupyterHub or your own device) add your answers in additional cells.
- Complete the required problems below.
- Remember to set your cell types to
Markdown
for text, andCode
for Python code! - Feel free to include comments in your code to explain your method as necessary.
- Remember to actually answer the questions. Written answers are required (not just code and figures!)
- Submit your solutions in a single Jupyter notebook that contains your text, your code, and your figures.
- Make sure that your notebook runs cleanly without errors:
- Save your notebook
- From the
Kernel
menu, selectRestart & Run All
- Did the notebook run from start to finish without error and produce the expected output?
- If yes, save again and submit your notebook file
- If no, fix the errors and try again.
- Save your notebook as
[your last name].ipynb
, e.g. my notebook should be calledRose.ipynb
. This makes it easier for me when I collect all your answers - Submit your notebook by email no later than Monday February 17 2025.
Problem 1: The global energy budget in the CESM control simulation¶
Using the CESM pre-industrial control simulation, compute the global, time average of each of the following quantities, and compare them to the observed values from the Trenberth and Fasullo (2012) figure in the Climate Laboratory book:
- Solar Radiation budget:
- Incoming Solar Radiation, or Insolation
- Reflected Solar Radiation at the top of atmosphere
- Solar Radiation Reflected by Surface
- Solar Radiation Absorbed by Surface
- Solar Radiation Refelected by Clouds and Atmosphere (you can calculate this as the difference between the reflected radiation at the top of atmosphere and reflected radiation at the surface)
- Total Absorbed Solar Radiation (ASR) at the top of atmosphere
- Solar Radiation Absorbed by Atmosphere (you can calculate this as the residual of your budget, i.e. what’s left over after accounting for all other absorption and reflection)
- Longwave Radiation budget:
- Outgoing Longwave Radiation
- Upward emission from the surface
- Downwelling radiation at the surface
- Other surface fluxes:
- “Thermals”, or sensible heat flux. You will find this in the field called
SHFLX
in your dataset. - “Evapotranspiration”, or latent heat flux. You will find this in the field called
LHFLX
in your dataset.
- “Thermals”, or sensible heat flux. You will find this in the field called
Note we will look more carefully at atmospheric absorption and emission processes later. You do not need to try to calculate terms such as “Emitted by Atmosphere” or “Atmospheric Window”
Make sure to read through this “Hints and Guidance” document for better orientation on working with the CESM data.
Based on your results above, answer the following questions:
- Is the CESM control simulation at (or near) energy balance?
- Do you think this simulation is near equilibrium?
- Summarize in your own words what you think are the most important similarities and differences of the global energy budgets in the CESM simulation and the observations.
Problem 2: Transient energy budgets in the CESM¶
Part A¶
Following the examples in the lecture notes, open the four CESM simulations (fully coupled and slab ocean versions with and without CO2 forcing).
Calculate timeseries of global mean ASR and OLR and store each of these as a new variable. Recall that ASR is called FSNT
in the CESM output, and OLR is called FLNT
.
Plot a timeseries of (ASR - OLR), the net downward energy flux at the top of the model, along with a 12 month rolling mean, analogous to the plot of global mean surface air temperature in the lecture notes.
Note that the rolling mean is important here because, just like with surface air temperature, there is a large seasonal cycle which makes it harder to see evidence of the climate change signal we wish to focus on.
Part B¶
Calculate and show the time-average ASR and time-average OLR over the final 10 or 20 years of each simulation. Following the lecture notes, use the 20-year slice for the fully coupled simulations, and the 10-year slice for the slab ocean simulations.
Part C¶
Based on your plots and numerical results from Parts 1 and 2, answer these questions:
- Are the two control simulations (fully coupled and slab ocean) near energy balance?
- In the fully coupled CO2 ramp simulation, does the energy imbalance (ASR-OLR) increase or decrease with time? What is the imbalance at the end of the 80 year simulation?
- Answer the same questions for the slab ocean abrupt 2xCO2 simulation.
- Explain in words why the timeseries of ASR-OLR look very different in the fully coupled simulation (1%/year CO2 ramp) versus the slab ocean simulation (abrupt 2xCO2). Think about both the different radiative forcings and the different ocean heat capacities.
Part D¶
Does the global average ASR increase or decrease because of CO2-driven warming in the CESM?
Would you describe this as a positive or negative feedback?
Part E¶
In the previous question you looked at the global average change in ASR. Now I want you to look at how different parts of the world contribute to this change.
Make a map of the change in ASR due to the CO2 forcing. Use the average over the last 20 years of the coupled CO2 ramp simulation, comparing against the average over the last 20 years of the control simulation.
Part F¶
Repeat part 5, but this time instead of the change in ASR, look at the just change in the clear-sky component of ASR. You can find this in the output field called FSNTC
.
The FSNTC
field shows shortwave absorption in the absence of clouds, so the change in FSNTC
shows how absorption and reflection of shortwave are affected by processes other than clouds.
Part G¶
Discussion:
- Do your two maps (change in ASR, change in clear-sky ASR) look the same?
- Offer some ideas about why the clear-sky map looks the way it does.
- Comment on anything interesting, unusual or surprising you found in the maps.
Problem 3: Land-ocean warming contrast¶
In this problem you will think about the spatial pattern of surface warming in the CESM simulations and its relationship to land and ocean distribution.
Part A¶
Make maps that show all regions of Earth’s surface that experience surface air temperature warming greater than the global average value. Make similar maps for both the slab ocean and fully coupled versions of the model. Show that these regions are almost almost entirely over land in the transient fully coupled simulation, but less so in the slab ocean simulation.
Part B¶
Make line plots of the zonal average surface air temperature change over land only and over ocean only.
Part C¶
Briefly discuss implications for this finding in the context of global warming mitigation targets (e.g. the Paris Agreement). No more than a paragraph please.
Problem 4: Hydrological cycle changes¶
In this problem, you will look at changes in precipitation and evaporation under global warming in the CESM simulations.
For each quantity, you will calculate and plot fractional changes normalized per unit global mean warming, e.g. for precipitation:
where represents total precipitation at each gridpoint, and is the global mean surface warming.
The reason why we often plot changes in hydrological quantities in this way is that many features are strongly governed by the Clausius-Clapeyron relation and do remain close to 6% / K. Normalizing by global warming can be an effective way to compare hydrological changes between models and scenarios that have different climate sensitivities.
Following similar procedures as in Problem 2 for applying time averages, make well-labeled maps of the normalized, fractional change in each of these quantities:
- Total precipitation (note that this is the sum of two terms:
PRECC + PRECL
, convective and large-scale precipitation). - Evaporation
- The net difference
Make this set of maps for both the slab ocean and fully coupled simulations.
Comment on any interesting or surprising results in your maps.