To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 20 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1

A simple spatial model of atmosphere-ocean climate dynamics

👀 Reading hidden code
183 μs

Recall the zero-dimensional energy balance model of Earth's climate from Lecture ??:

\begin{align} \text{\color{brown}{change in heat content}} = &\;\quad \text{\color{orange}{absorbed solar radiation}} \newline & - \text{\color{blue}{thermal cooling to space}} \end{align}

or

\begin{gather} \color{brown}{C \frac{dT}{dt}} \; \color{black}{=} \; \color{orange}{\frac{(1 - α)S}{4}} \; \color{black}{-} \; \color{blue}{(A + BT)} \end{gather}

where T(t) was only a function of temperature and the equation was thus an Ordinary Differential Equation (ODE).

In this notebook, we will expand the model to the spatial dimensions x (longitude, or West-East) and y (latitude, or South-North), and will allow ocean currents to transport heat from one grid cell (Ti,j) to a neighboring grid cell (Ti±1,j or Ti,j±1).

\begin{align} \text{\color{brown}{change in heat content}} = &\;\quad \text{\color{orange}{absorbed solar radiation}} \newline & - \text{\color{blue}{thermal cooling to space}} \newline & - \text{\color{purple}{heat export by ocean currents}} \end{align}

👀 Reading hidden code
md"""
Recall the zero-dimensional energy balance model of Earth's climate from Lecture **??**:

\begin{align}
\text{\color{brown}{change in heat content}} = &\;\quad \text{\color{orange}{absorbed solar radiation}} \newline
& - \text{\color{blue}{thermal cooling to space}}
\end{align}

or

\begin{gather}
\color{brown}{C \frac{dT}{dt}}
\; \color{black}{=} \; \color{orange}{\frac{(1 - α)S}{4}}
\; \color{black}{-} \; \color{blue}{(A + BT)}
\end{gather}

where $T(t)$ was only a function of temperature and the equation was thus an **Ordinary Differential Equation (ODE)**.

In this notebook, we will expand the model to the spatial dimensions $\mathbf{x}$ (longitude, or West-East) and $\mathbf{y}$ (latitude, or South-North), and will allow ocean currents to transport heat from one grid cell ($T_{i,j}$) to a neighboring grid cell ($T_{i \pm 1,\, j}$ or $T_{i,\, j \pm 1}$).
599 μs

Adding spatial dimensions to our energy balance model

For simplicity, we will start by adding spatial dimensions to our energy balance model without any other additional complexities, such as the transport of heat from one location to another.

👀 Reading hidden code
249 μs

We want to solve the equation

\begin{gather} \color{brown}{C \frac{\partial T}{\partial t}} \; \color{black}{=} \; \color{orange}{\frac{(1 - α)S}{4}} \; \color{black}{-} \; \color{blue}{(A + BT)} \end{gather}

where we now allow T=T(x,y,t) to be a function of x (longitude), y (latitude), and t (time).

The discretized form of this equation,

Ti,j,n+1=Ti,j,n+Δt[1C((1α(Ti,j,n))S4(A+BTi,j,n))]

shows that the future temperature Ti,j,n+1 in the (i,j) cell only requires knowledge of the present temperature Ti,j,n that same cell.

Thus, the discretized two-dimensional problems simple amounts to solving the zero-dimensional energy balance model in each cell of the grid.

👀 Reading hidden code
490 μs

👀 Reading hidden code
66.9 μs

Adding oceanic heat transport

👀 Reading hidden code
184 μs

Consider the temperature T(x,y,t) evolution equation

Tt=x(uTκTx)y(vTκTy)+(1α)S4C(AC+BCT)

md"""
Consider the temperature $T(x,y,t)$ evolution equation

$\frac{\partial T}{\partial t} = - \frac{\partial}{\partial x}\left( uT - \kappa \frac{\partial T}{\partial x} \right) - \frac{\partial}{\partial y}\left( vT - \kappa \frac{\partial T}{\partial y} \right) + \frac{(1 - α)S}{4C} - \left(\frac{A}{C} + \frac{B}{C}T \right)$
"""
👀 Reading hidden code
227 μs
Velocity field of a typical subtropic ocean gyre

TO DO: Code up analytical solution from Vallis or Pedloskly textbook

md"""
##### Velocity field of a typical subtropic ocean gyre

TO DO: Code up analytical solution from Vallis or Pedloskly textbook
"""
👀 Reading hidden code
252 μs
# Quiver plots of velocity field (u,v)
👀 Reading hidden code
15.2 μs
Building intuition about heat transport
md"""
##### Building intuition about heat transport
"""
👀 Reading hidden code
198 μs
# Heat maps of heat transport in x and y

# Heat maps of heat convergence in x and y

# Heat map of buoyuancy flux magnitude & visualization of divergence (?)
👀 Reading hidden code
17.1 μs
Adding a latitudinal dependence to the solar insolation

TO DO: Add a simple formula for the latitudinal dependence of insolation (in W/m2/m ?)

👀 Reading hidden code
264 μs

👀 Reading hidden code
68.0 μs