Numerical Methods (Runge-Kutta) - Part 2

We're learning when and how to use more advanced explicit numerical methods.

Keywords: C, numerical methods, math, physical simulations

By Carmen Cincotti  

I would like to continue studying numerical methods because I believe that having a very strong understanding of the topic will make learning future subjects (like physics) easier. I mean, it’s all math at the end of the day.

The goal for this week is to understand the ‘most used’ method - Runge Kutta of order 4 (RK4). As such, we will learn about a couple new methods, in order to really get a feel for why certain methods estimate solutions better than others (without diving too much into the math). Finally, we will code each one in C and run some tests to see how each performs.

The midpoint method, or Runge Kutta order 2 (RK2)

Recall that for the following examples, we are interested in Cauchys problems, where we use a differential equation with an initial condition:

y(t)=f(t,y(t))y(t0)=y0tt0,Ty'(t) = f(t, y(t)) \\ y(t_0) = y_0 \\ t \in {t_0, T} \\

where t0, T, and y0 are given.

The midpont method, or RK2, is a good example to understand how we can derive a more precise method (compared to Euler’s method) with just a little more complexity. We’ll see why this is the case in a future lesson (spoiler: it’s due to higher order error terms, and thus smaller Taylor Series truncation errors).

The equation for this method is:

y(t0+h)=y(t0)+k2hy(t_0 + h) = y(t_0) + k_2h

where, k2 is:

k2=f(t0+h2,y(t0+h2)) k_2 = f(t_0 + \frac{h}{2}, y(t_0 + \frac{h}{2}))

k2 is the slope at t=t0+h2t = t*0 + \frac{h}{2}… hence the name “midpoint” method. If we compare Euler’s method and this method, it seems that Euler’s method uses the slope at _t0* while the midpoint method uses the slope at t0+h2 t_0 + \frac{h}{2}.

However, a question arises:

How do we find the slope at time t=t0+h2 t = t_0 + \frac{h}{2}?

The steps are as follows:

  1. Find the slope k1 with the Euler method at t0.
  2. Use k1 to estimate the solution to the function y(t0+h2)y(t_0 + \frac{h}{2}).
  3. Find the new slope k2 with the Euler method at t=t0+h2t = t_0 + \frac{h}{2}.
  4. Go back to the beginning (where t = t0), and use k2 with Euler’s method to estimate the function y(t0 + h).

I suggest that you look at this part of this link because it has helpful graphics as well as derivations to better see these steps in action. This link also has more in depth calculations.

Runge Kutta 4th Order (RK4)

This method considered as - and I quote the author of the book Numerical Recipes in C:

Runge-Kutta is what you use when: (i) you don’t know any better, or (ii) you have an intransigent problem where Bulirsch-Stoer is failing, or (iii) you have a trivial problem where computational efficiency is of no concern. Runge-Kutta succeeds virtually always.

As we will see, the following equation is quite wordy… but with a little intuition it’s quite easy to understand it. This time, we take four slope estimations at each time step to better estimate the approximation of the trajectory of the curve. This method is the most accurate among the methods we have discussed in this series so far.

The equation is the following:

y(t0+h)=y(t0)+k1+2k2+2k3+k46h y(t_0 + h) = y(t_0) + \frac{k_1 + 2k_2 + 2k_3 + k_4}{6}h

where k1,k2,k3,k4k1, k2, k3, k4 are slopes calculated at different points. They are calculated as follows:

k1=f(y(t0),t0)k2=f(y(t0)+k1h2,t0+h2)k3=f(y(t0)+k2h2,t0+h2)k4=f(y(t0)+k3h,t0+h)k_1 = f({y}({t_0}),{t_0}) \\ k_2 = f\left( {{y}({t_0}) + {k_1}{h \over 2},{t_0} + {h \over 2}} \right) \\ k_3 = f\left( {{y}({t_0}) + {k_2}{h \over 2},{t_0} + {h \over 2}} \right) \\ k_4 = f\left( {{y}({t_0}) + {k_3}h,{t_0} + h} \right)

Again, please take a look at this link on RK4 in order to gain a better understanding ..but if you understood the midpoint method, I imagine these equations didn’t seem so foreign.

C Implementation and a comparison between methods:

I wrote a C program that can help us see the behavior and the result for each method. I chose the differential equation and our initial condition:

y(t)=f(t,y(t))=dy/dty(0)=1t[0,2]y'(t) = f(t, y(t)) = dy / dt \\ y(0) = 1 \\ t \in [0, 2] \\

which corresponds to the analytique solution: et

The program writes data to files that we can use with gnuplot with the command plot 'midpoint.txt' w l, 'euler.txt' w l, 'rk4.txt' w l.

Using a small time step h (here I chose 0.025), the three methods are almost equal:

Method h tf yf
Euler 0.025 2.0 7.210
Midpoint 0.025 2.0 7.388
RK4 0.025 2.0 7.389
Analytic (et) 2.0 7.389

'Plot with step size 0.025'

What’s interesting is when we reduce the step size from 0.025 to 1.0, we get the following estimations:

Method h tf yf
Euler 1.0 2.0 4.0
Midpoint 1.0 2.0 6.25
RK4 1.0 2.0 7.34
Analytic (et) 2.0 7.389

'Plot with step size 1.0'

Comparing the three methods we’ve talked about so far, it’s clear that even though the RK4 method takes four times as many steps to estimate a solution at each timestep Δt or h, it can take much larger timesteps to get close to the real value, which may make it way more efficient when compared to other lower order methods!

Next time

I was thinking that I would talk about errors (Taylor series truncation error, global error, local error, etc). However, for the sake of moving on, I think there are plenty of resources online that do a good job explaining them. In any case, if I find a reason explain it in a future subject, I will!

Let’s go to particle dynamics!

Resources


Comments for Numerical Methods (Runge-Kutta) - Part 2



Written by Carmen Cincotti, computer graphics enthusiast, language learner, and improv actor currently living in San Francisco, CA.  Follow @CarmenCincotti

Contribute

Interested in contributing to Carmen's Graphics Blog? Click here for details!