{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Solving Ordinary Differential Equations with the Runge-Kutta Methods " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## List of Problems \n", "\n", "\n", "\n", "- [Problem midpoint](#problem_midpoint)\n", "\n", "- [Problem tableau](#problem_tableau)\n", "\n", "- [Problem Runge Kutta4](#problemrk4)\n", "\n", "- [Problem embedded](#problem_embedded)\n", "\n", "- [Problem coding A](#prob_a)\n", "\n", "- [Problem coding B](#prob_b)\n", "\n", "- [Problem coding C](#prob_c)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Assignment handin -- upload a single, fresh notebook that contains your answers\n", "\n", "* Assignment: A409 do Problems 2 (tableau), 3 (Runge Kutta4), 4 (embedded), Coding A and Coding B\n", "\n", "* Assignment: Grads do Problems 2 (tableau), 3 (Runge Kutta4), 4 (embedded), Coding A, Coding B and Coding C\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Objectives\n", "In this lab, you will explore Runge-Kutta methods for solving ordinary\n", "differential equations. The goal is to gain a better understanding of\n", "some of the more popular Runge-Kutta methods and the corresponding\n", "numerical code.\n", "\n", "Specifically you will be able to:\n", "\n", "- describe the mid-point method\n", "\n", "- construct a Runge-Kutta tableau from equations or equations from a\n", " tableau\n", "\n", "- describe how a Runge-Kutta method estimates truncation error\n", "\n", "- edit a working Octave code to use a different method or solve a\n", " different problem" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Readings\n", "\n", "\n", "There is no required reading for this lab, beyond the contents of the\n", "lab itself. However, if you would like additional background on any of\n", "the following topics, then refer to the sections indicated below.\n", "\n", "**Runge-Kutta Methods:**\n", "\n", " - Newman, Chapter 8\n", "\n", " - Press, et al. Section 16.1\n", "\n", " - Burden & Faires Section 5.4\n", " " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Introduction\n", "\n", "Ordinary differential equations (ODEs) arise in many physical\n", "situations. For example, there is the first-order Newton cooling\n", "equation discussed in , and perhaps the most famous equation of all, the\n", "second-order Newton’s Second Law of Mechanics $F=ma$ .\n", "\n", "In general, higher-order equations, such as Newton’s force equation, can\n", "be rewritten as a system of first-order equations . So the generic\n", "problem in ODEs is a set of N coupled first-order differential equations\n", "of the form, \n", "\n", "$$\n", " \\frac{d{\\bf y}}{dt} = f({\\bf y},t)\n", "$$ \n", " \n", "where ${\\bf y}$ is a vector of\n", "variables.\n", "\n", "For a complete specification of the solution, boundary conditions for\n", "the problem must be given. Typically, the problems are broken up into\n", "two classes:\n", "\n", "- **Initial Value Problem (IVP)**: the initial values of\n", " ${\\bf y}$ are specified.\n", "\n", "- **Boundary Value Problem (BVP)**: ${\\bf y}$ is\n", " specified at the initial and final times.\n", "\n", "For this lab, we are concerned with the IVP’s. BVP’s tend to be much\n", "more difficult to solve and involve techniques which will not be dealt\n", "with in this set of labs.\n", "\n", "Now as was pointed out in , in general, it will not be possible to find\n", "exact, analytic solutions to the ODE. However, it is possible to find an\n", "approximate solution with a finite difference scheme such as the forward\n", "Euler method . This is a simple first-order, one-step scheme which is\n", "easy to implement. However, this method is rarely used in practice as it\n", "is neither very stable nor accurate.\n", "\n", "The higher-order Taylor methods discussed in are one alternative but\n", "involve higher-order derivatives that must be calculated by hand or\n", "worked out numerically in a multi-step scheme. Like the forward Euler\n", "method, stability is a concern.\n", "\n", "The Runge-Kutta methods are higher-order, one-step schemes that makes\n", "use of information at different *stages* between the\n", "beginning and end of a step. They are more stable and accurate than the\n", "forward Euler method and are still relatively simple compared to schemes\n", "such as the multi-step predictor-corrector methods or the Bulirsch-Stoer\n", "method. Though they lack the accuracy and efficiency of these more\n", "sophisticated schemes, they are still powerful methods that almost\n", "always succeed for non-stiff IVPs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Runge-Kutta methods" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### The Midpoint Method: A Two-Stage Runge-Kutta Method \n", "\n", "The forward Euler method takes the solution at time $t_n$ and advances\n", "it to time $t_{n+1}$ using the value of the derivative $f(y_n,t_n)$ at\n", "time $t_n$ \n", "\n", "$$y_{n+1} = y_n + h f(y_n,t_n)$$ \n", "\n", "where $h \\equiv \\Delta t$." ] }, { "cell_type": "markdown", "metadata": { "title": "[markdown" }, "source": [ "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Figure euler: The forward Euler method is essentially a straight-line approximation\n", "to the solution, over the interval of one step, using the derivative at\n", "the starting point as the slope. \n", "\n", "The idea of the Runge-Kutta schemes is to take advantage of derivative\n", "information at the times between $t_n$ and $t_{n+1}$ to increase the\n", "order of accuracy.\n", "\n", "For example, in the midpoint method, the derivative at the initial time\n", "is used to approximate the derivative at the midpoint of the interval,\n", "$f(y_n+\\frac{1}{2}hf(y_n,t_n), t_n+\\frac{1}{2}h)$. The derivative at the\n", "midpoint is then used to advance the solution to the next step. The\n", "method can be written in two *stages* $k_i$,\n", "\n", "