Mercurial > repos > public > sbplib
view +time/+rk/rungekutta.m @ 1014:e547794a9407 feature/advectionRV
Add boot-strapping to RungeKuttaExteriorRV
- Higher order BDF approximations are successively used as increasing number of time levels are obtained.
| author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
|---|---|
| date | Thu, 06 Dec 2018 11:30:47 +0100 |
| parents | c6fcee3fcf1b |
| children |
line wrap: on
line source
% Takes one time step of size dt using the rungekutta method % starting from v_0 and where the function F(v,t) gives the % time derivatives. coeffs is a struct holding the RK coefficients % for the specific method. function v = rungekutta(v, t , dt, F, coeffs) % Compute the intermediate stages k k = zeros(length(v), coeffs.s); for i = 1:coeffs.s u = v; for j = 1:i-1 u = u + dt*coeffs.a(i,j)*k(:,j); end k(:,i) = F(u,t+coeffs.c(i)*dt); end % Compute the updated solution as a linear combination % of the intermediate stages. for i = 1:coeffs.s v = v + dt*coeffs.b(i)*k(:,i); end end
