{ "cells": [ { "cell_type": "markdown", "id": "aaf7c461-93f9-48b8-a5ac-e6fe9c57e918", "metadata": { "tags": [] }, "source": [ "# Plotting $\\frac{\\mathrm{d}p_s}{\\mathrm{d}t}$ from ICON's log file" ] }, { "cell_type": "markdown", "id": "fed5a0e6-4786-4357-b037-fbee4d29ec7c", "metadata": {}, "source": [ "Load the necessary Python modules" ] }, { "cell_type": "code", "execution_count": null, "id": "8812373c-4adb-487c-a465-2ce2a27de2e6", "metadata": {}, "outputs": [], "source": [ "import getpass\n", "import re\n", "import datetime\n", "import matplotlib.pyplot as plt\n", "import matplotlib.dates as mdates" ] }, { "cell_type": "markdown", "id": "406bf39a-a0f8-4075-8c26-50677c28f0bf", "metadata": {}, "source": [ "Extract $\\frac{\\mathrm{d}p_s}{\\mathrm{d}t}$ information from the log file:" ] }, { "cell_type": "code", "execution_count": null, "id": "12465eb9-6ba7-4b6b-bd5c-1ddb8edb533e", "metadata": {}, "outputs": [], "source": [ "user = getpass.getuser()" ] }, { "cell_type": "markdown", "id": "991adae2-d8ac-4370-8dad-c02c0c14115e", "metadata": {}, "source": [ "