Assignment 11 - Numerical Simulation#
Note
Submit your assignment as a single PDF, including plots and source code (if any). We expect academic honesty. Collaboration is encouraged, but must be declared. Any use of AI must be declared along with any other sources used.
This is not an exam. Do your best and show that you put in effort and the assignment will be approved.
The objectives of this assignment are:
To understand how explicit Runge-Kutta (ERK) methods work, and to be able to implement them.
To understand important concepts of ERK methods, such as accuracy and stability, and the related concepts of local and global error, as well as stability functions.
The theory used here can be found in the Lecture Notes by Sebastien Gros.
Problem 1 - Accuracy and stability of ERKs#
In this task we will make simulations using the explicit Euler scheme, and two other explicit Runge-Kutta schemes of order 2 and 4, respectively.
The Butcher tables of these three schemes are:
We will use these methods to simulate the classic test system:
where \(\lambda < 0\).
Tasks
Implement the 3 ERK schemes for a generic scalar ODE \(\dot{x} = f(t, x)\). Test the implemented codes for \(\lambda = -2\) in the time interval \([0, 2]\), and compare with the analytical solution. Choose a time-step \(\Delta t = 0.4\) and the initial condition \(x(0) = 1\). Comment on the results.
For what value of \(\lambda < 0\) will the different schemes become unstable?
Problem 2 - IRK schemes#
Here we will consider the Lorenz system
with initial condition \(x(0) = 1\), \(y(0) = 1\), \(z(0) = 1\).
Tasks
The Gauss-Legendre collocation method is an IRK scheme with \(s = 2\) stages and of order \(2s = 4\), which has the Butcher table:
(87)#\[\begin{split}\text{IRK4:} \quad &\begin{array}{c|cccc} \frac12 - \frac{\sqrt{3}}6 & \frac14 & \frac14 - \frac{\sqrt{3}}6 \\ \frac12 + \frac{\sqrt{3}}6 & \frac14 + \frac{\sqrt{3}}6 & \frac14 \\ \hline & \frac12 & \frac12 \end{array}\end{split}\]Simulate the system (86) with this method, using time interval \([0, 2]\), \(N = 200\) simulation points. You will need to program your own implicit RK-routine for this task. Have a look at the numerical methods webpage for some tips on where to start, especially the Implicit Euler example.
Add a code screen shot and a plot of the result to your answer.
If we were to use the IRK4 method on the system \(\dot{x} = \lambda x\), for what value of \(\lambda < 0\) will the IRK4 scheme become unstable?
Assume that the collocation points \(\tau_1 = \frac13\), \(\tau_2 = \frac23\) are used to construct a Gauss-Legendre collocation method, what is the corresponding Butcher table?