Skip to article frontmatterSkip to article content

Assignment: Feedbacks in the Radiative-Convective Model

University at Albany (SUNY)

This notebook is part of The Climate Laboratory by Brian E. J. Rose, University at Albany.

Learning goals

Students completing this assignment will gain the following skills and concepts:

  • Familiarity with setting up and running a single-column Radiative-Convective Model using climlab

  • Familiarity with plotting and interpreting vertical air temperature data on meteorological Skew-T charts

  • Use of climlab to perform controlled parameter-sensitivity experiments

  • Understanding of the lapse rate feedback concept

  • Calculation of radiative forcing and climate feedback parameters

Question 1: the basic RCM without feedback

Here you look at the effects of doubling CO2_2 in the single-column Radiative-Convective model.

This exercise just repeats what we did in the lecture notes. You want to ensure that you can reproduce the same results before doing the rest of the assigment, because you will need these results below.

Following the lecture notes on climate sensitivity, do the following:

  • set up a single-column radiative-convective model with specific humidity taken from the CESM control simulation

  • Run this control model out to equilibrium

  • Using a clone of the control model, double the atmospheric CO2_2 and calculate the atmosphere-adjusted radiative forcing ΔR\Delta R.

  • Using another model clone with doubled CO2_2, timestep the model out to equilibrium. For this calculation, do not modify the specific humidity as we are assuming that there is no change in the water vapor distribution as the climate warms.

  • Calculate the no-feedback Equilibrium Climate Sensitivity (ECS). Recall that this is a number in Kelvin.

  • Also calculate the no-feedback climate response parameter λ0\lambda_0 in W m2^{-2} K1^{-1}.

Verify and show that you get the same results as we did in the lecture notes.

Question 2: water vapor feedback in the RCM

This question also just repeats things we did in the lecture notes. Again, you want to ensure that you can reproduce the same results before starting the new questions below.

Following the lecture notes on climate sensitivity, do the following:

  • Calculate the relative humidity profile in the reference RCM

  • Make a new clone of the model with doubled CO2_2

  • Using a for loop, timestep the model out to equilibrium. At each timestep, implement the water vapor feedback by doing the following:

    • Calculate the current value of saturation specific humidity using the current air temperatures.

    • Modify the specific humidity so that the relative humidity remains constant.

  • Calculate the Equilibrium Climate Sensitivity (ECS) for this version of the model.

Verify and show that you get the same ECS for this version of the model including a water vapor feedback as we did in the lecture notes.

Question 3: combined lapse rate and water vapor feedback in the RCM

Now you are going to do something new, but the process will be very similar to what you did in Question 2.

Instructions

A typical, expected feature of global warming is that the upper troposphere warms more than the surface. (Later we will see that this does occur in the CESM simulations).

This feature is not represented in our standard radiative-convective model, which is forced to a single prescribed lapse rate due to our convective adjustment.

Here you will suppose that other physical processes modify this lapse rate as the climate warms.

Repeat the RCM global warming calculation, but implement two different feedbacks:

  • a water vapor feedback using fixed relative humidity (i.e., what you did in Question 2)

  • a lapse rate feedback using this formula:

Γ=6.5 K km1(0.3 km1)ΔTs\Gamma = 6.5 \text{ K} \text{ km}^{-1} - (0.3 \text{ km}^{-1}) \Delta T_s

where 6.5 K km1^{-1} is the critical lapse rate you used in your control model, and ΔTs\Delta T_s is the current value of the surface warming relative to the control in units of K.

So, for example if the model has warmed by 1 K at the surface, then our parameterization says that the critical lapse rate should be 6.50.3×1=6.26.5 - 0.3 \times 1 = 6.2 K km1^{-1}.

Follow the example in the lecture notes where we implemented the fixed relative humidity. Remember that we needed to adjust the specific_humidity field of our radiation process at every timestep. Here we still need to do that, but in addition, we also need to change the attribute

adj_lapse_rate

of the convection process at each timestep.

For example, if you have a model called mymodel that contains a ConvectiveAdjustment process called Convection, here is some code that you would need inside your for loop at every timestep:

mymodel.subprocess['Convection'].adj_lapse_rate = newvalue

where newvalue is a number in K / km.

As in Question 2, you will need to write a for loop where, at every timestep, you not only set the required specific humidity, but you also calculate the appropriate current value for Γ\Gamma using the current surface warming, and set the adj_lapse_rate parameter using this value as shown above.

Specific questions:

  1. Make a nice skew-T plot that shows three temperature profiles:

    • RCM control

    • RCM, equilibrium after doubling CO2_2 without feedback

    • RCM, equilibrium after doubling CO2_2 with combined water vapor and lapse rate feedback

  2. Based on your plot, where in the column do you find the greatest warming?

  3. Calculate the ECS of the new version of the model with combined water vapor and lapse rate feedback

  4. Is this sensitivity larger or smaller than the “no feedback” ECS? Is it larger or smaller than the ECS with water vapor feedback alone (which we calculated in the lecture notes, and you verified in Question 2)?

  5. Calculate the combined feedback parameter for (water vapor plus lapse rate).

  6. Compare this result to the IPCC figure with feedback results from comprehensive models in our lecture notes (labeled “WV+LR”). Do you find a similar number?

  7. Would you describe the lapse rate feedback as positive or negative? Explain why.


Credits

This notebook is part of The Climate Laboratory, an open-source textbook developed and maintained by Brian E. J. Rose, University at Albany.

It is licensed for free and open consumption under the Creative Commons Attribution 4.0 International (CC BY 4.0) license.

Development of these notes and the climlab software is partially supported by the National Science Foundation under award AGS-1455071 to Brian Rose. Any opinions, findings, conclusions or recommendations expressed here are mine and do not necessarily reflect the views of the National Science Foundation.