{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Laboratory 7: Solving partial differential equations using an explicit, finite difference method.\n", "\n", "Lin Yang & Susan Allen & Carmen Guo" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## List of Problems ##\n", "- [Problem 1](#Problem-One): Numerical solution on a staggered grid.\n", "- [Problem 2](#Problem-Two): Stability of the difference scheme\n", "- [Problem 3](#Problem-Three): Dispersion relation for grid 2\n", "- [Problem 4](#Problem-Four): Choosing most accurate grid\n", "- [Problem 5](#Problem-Five): Numerical solution for no y variation\n", "- [Problem 6](#Problem-Six): Stability on the 2-dimensional grids\n", "- [Problem 7](#Problem-Seven): Finite difference form of equations\n", "- [Problem 8](#Problem-Eight): Dispersion relation for D-grid\n", "- [Problem 9](#Problem-Nine): Accuracy of the approximation on various grids" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Objectives ##\n", "\n", "### Sections 4 through 7\n", "\n", "When you have completed these sections you will be able to:\n", "\n", "- find the dispersion relation for a set of differential equations\n", " (the “real” dispersion relation).\n", "\n", "- find the dispersion relation for a set of difference equations (the\n", " numerical dispersion relation).\n", "\n", "- describe a leap-frog scheme\n", "\n", "- construct a predictor-corrector method\n", "\n", "- use the given differential equations to determine unspecified\n", " boundary conditions as necessary\n", "\n", "- describe a staggered grid\n", "\n", "- state one reason why staggered grids are used\n", "\n", "- explain the physical principle behind the CFL condition\n", "\n", "- find the CFL condition for a linear, explicit, numerical scheme\n", "\n", "- state one criteria that should be considered when choosing a grid\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Readings\n", "\n", "These are the suggested readings for this lab. For more details about\n", "the books and papers, click on the reference link.\n", "\n", "- **Rotating Navier Stokes Equations**\n", "\n", " - [Pond and Pickard, 1983](#Ref:PondPickard), Chapters 3,4 and 6\n", "\n", "- **Shallow Water Equations**\n", "\n", " - [Gill, 1982](#Ref:Gill), Section 5.6 and 7.2 (not 7.2.1 etc)\n", "\n", "- **Poincaré Waves**\n", "\n", " - [Gill, 1982](#Ref:Gill), Section 7.3 to just after equation (7.3.8), section 8.2\n", " and 8.3\n", "\n", "- **Introduction to Numerical Solution of PDE’s**\n", "\n", " - [Press et al, 1992](#Ref:Pressetal), Section 17.0\n", "\n", "- **Waves**\n", "\n", " - [Cushman-Roision, 1994](#Ref:Cushman-Roisin), Appendix A" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "******************************\n", "context imported. Front of path:\n", "/Users/phil/repos/numeric\n", "back of path: /Users/phil/.ipython\n", "******************************\n", "\n", "through /Users/phil/repos/numeric/notebooks/lab7/context.py\n" ] } ], "source": [ "import context\n", "from IPython.display import Image\n", "import IPython.display as display\n", "# import plotting package and numerical python package for use in examples later\n", "import matplotlib.pyplot as plt\n", "# make the plots happen inline\n", "%matplotlib inline \n", "# import the numpy array handling library\n", "import numpy as np\n", "# import the quiz script\n", "from numlabs.lab7 import quiz7 as quiz\n", "# import the pde solver for a simple 1-d tank of water with a drop of rain\n", "from numlabs.lab7 import rain\n", "# import the dispersion code plotter\n", "from numlabs.lab7 import accuracy2d\n", "# import the 2-dimensional drop solver\n", "from numlabs.lab7 import interactive1\n", "# import the 2-dimensional dispersion relation plotter\n", "from numlabs.lab7 import dispersion_2d" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Physical Example, Poincaré Waves\n", "\n", "One of the obvious examples of a physical phenomena governed by a\n", "partial differential equation is waves. Consider a shallow layer of\n", "water and the waves on the surface of that layer. If the depth of the\n", "water is much smaller than the wavelength of the waves, the velocity of\n", "the water will be the same throughout the depth. So then we can describe\n", "the state of the water by three variables: $u(x,y,t)$, the east-west\n", "velocity of the water, $v(x,y,t)$, the north-south velocity of the water\n", "and $h(x,y,t)$, the height the surface of the water is deflected. As\n", "specified, each of these variables are functions of the horizontal\n", "position, $(x,y)$ and time $t$ but, under the assumption of shallow\n", "water, not a function of $z$.\n", "\n", "In oceanographic and atmospheric problems, the effect of the earth’s\n", "rotation is often important. We will first introduce the governing\n", "equations including the Coriolis force ([Full Equations](#Full-Equations)). However,\n", "most of the numerical concepts can be considered without all the\n", "complications in these equations. We will also consider two simplier\n", "sets; one where we assume there is no variation of the variables in the\n", "y-direction ([No variation in y](#No-variation-in-y)) and one where, in addition, we assume\n", "that the Coriolis force is negligible ([Simple Equations](#Simple-Equations)).\n", "\n", "The solution of the equations including the Coriolis force are Poincaré\n", "waves whereas without the Coriolis force, the resulting waves are called\n", "shallow water gravity waves.\n", "\n", "The remainder of this section will present the equations and discuss the\n", "dispersion relation for the two simplier sets of equations. If your wave\n", "theory is rusty, consider reading Appendix A in [Cushman-Roisin, 1994](#Ref:Cushman-Roisin)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Introduce Full Equations \n", "[full-equations]:(#Introduce-Full-Equations)\n", "\n", "The linear shallow water equations on an f-plane over a flat bottom are\n", "