comparison +time/+rk/rungekutta_4RV.m @ 846:c6fcee3fcf1b feature/burgers1d

Add generalized RungeKutta and RungeKuttaRV class which extracts its coefficients from a butcher tableau, specified on the scheme.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 20 Sep 2018 17:51:19 +0200
parents +time/+rk4/rungekutta_4RV.m@f63b99f0729d
children
comparison
equal deleted inserted replaced
845:1e057b0f2fed 846:c6fcee3fcf1b
1 % Takes one time step of size k using the rungekutta method
2 % starting from v_0 and where the function F(v,t) gives the
3 % time derivatives.
4 function v = rungekutta_4RV(v, t , k, F, RV)
5 k1 = F(v, t, RV.getViscosity());
6
7 RV.update(v+0.5*k*k1, v, 0.5*k);
8 k2 = F(v+0.5*k*k1, t+0.5*k, RV.getViscosity());
9
10 RV.update(v+0.5*k*k2, v, 0.5*k);
11 k3 = F(v+0.5*k*k2, t+0.5*k, RV.getViscosity());
12
13 RV.update(v+k*k3, v, k);
14 k4 = F(v+k*k3,t+k, RV.getViscosity());
15
16 RV.update(v + (1/6)*(k1+2*(k2+k3)+k4)*k, v, k);
17 v = v + (1/6)*(k1+2*(k2+k3)+k4)*k;
18 end