Open In Colab   Open in Kaggle

Intro#

Overview#

Today you will be introduced to climate models, which are one of the primary tools of climate science. There are numerous types of climate models, each with their distinct complexity, utility, and limitations. In today’s tutorials, you will engage with a hierarchy of climate models with differing levels of complexity. You will begin by creating a simple climate model to predict Earth’s global mean surface temperature based on incoming and outgoing radiation. In later tutorials, you will extend this model to include more complexity through the addition of physics (albedo; [de]glaciation; convection) and dimensions (vertical structure of the atmosphere; latitudinal insolation variations). At the end of the day you will access, preprocess, and plot sea surface temperature in a highly complex climate model, TaiESM1, which is an Earth System Model (ESM) from the most recent Coupled Model Intercomparison Project, CMIP6.

Note that three tutorials contain solely Bonus content, that serves experienced participants and for later investigation of 0- and 1-dimensional models after the course.

Day Learning Objectives#

  • Understand, code, and analyze radiation models of varying physical and mathematical complexity.

  • Explore how changes in Earth’s atmosphere and surface properties affect Earth’s energy balance and surface temperature.

  • Access CMIP6 Earth system model data from cloud catalogs, and manipulate it by regridding and calculating global average properties.

Install and import feedback gadget#

Hide code cell source
# @title Install and import feedback gadget

!pip3 install vibecheck datatops --quiet

from vibecheck import DatatopsContentReviewContainer
def content_review(notebook_section: str):
    return DatatopsContentReviewContainer(
        "",  # No text prompt
        notebook_section,
        {
            "url": "https://pmyvdlilci.execute-api.us-east-1.amazonaws.com/klab",
            "name": "comptools_4clim",
            "user_key": "l5jpxuee",
        },
    ).render()


feedback_prefix = "W1D5_Intro"

Video 1: Climate Modeling#

Submit your feedback#

Hide code cell source
# @title Submit your feedback
content_review(f"{feedback_prefix}_Climate_Modeling_Video")

Slides#

Submit your feedback#

Hide code cell source
# @title Submit your feedback
content_review(f"{feedback_prefix}_Climate_Modeling_Slides")