See the Cookbook Contributor's Guide for step-by-step instructions on how to create your new Cookbook and get it hosted on the Pythia Cookbook Gallery!
This Project Pythia Cookbook is a step-by-step guide for how to calculate components of the moist static energy and ocean heat content budgets.
This cookbook will help you understand the mathematical derivation of thermodynamic budgets, common simplifications of certain terms and how to include boundary conditions. It will also demonstrate how to calculate each term from real data and what the mathematical equations look like from a coding perspective.
This cookbook is broken into two main sections:
Walkthrough example showing the mathematical derviation of each term and how to calculate this from real data. The moist static energy budget is comprised of horizontal advection, vertical advection, surface fluxes and radiative terms.
Walkthrough example showing the mathematical derviation of each term and how to calculate this from real data. The ocean heat content budget is comprised of horizontal advection, vertical advection, horizontal diffusion, vertical diffusion, surface fluxes and radiative terms.
You can either run the notebook using Binder or on your local machine.
The simplest way to interact with a Jupyter Notebook is through
Binder, which enables the execution of a
Jupyter Book in the cloud. The details of how this works are not
important for now. All you need to know is how to launch a Pythia
Cookbooks chapter via Binder. Simply navigate your mouse to
the top right corner of the book chapter you are viewing and click
on the rocket ship icon, (see figure below), and be sure to select
“launch Binder”. After a moment you should be presented with a
notebook that you can interact with. I.e. you’ll be able to execute
and even change the example programs. You’ll see that the code cells
have no output at first, until you execute them by pressing
{kbd}Shift+{kbd}Enter. Complete details on how to interact with
a live Jupyter notebook are described in Getting Started with
Jupyter.
Note, not all Cookbook chapters are executable. If you do not see the rocket ship icon, such as on this page, you are not viewing an executable book chapter.
If you are interested in running this material locally on your computer, you will need to follow this workflow:
-
Clone the
https://github.com/ProjectPythia/thermodynamic-budgetsrepository:git clone https://github.com/ProjectPythia/thermodynamic-budgets.git
-
Move into the
thermodynamic-budgetsdirectorycd thermodynamic-budgets -
Create and activate your conda environment from the
environment.ymlfileconda env create -f environment.yml conda activate thermodynamic-budgets
-
Move into the
notebooksdirectory and start up Jupyterlabcd notebooks/ jupyter lab