Mercurial > repos > public > sbplib
comparison +time/Rungekutta.m @ 850:4e5e53d6336c feature/burgers1d
Correct documentation of Rungekutta
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 21 Sep 2018 09:14:38 +0200 |
parents | 5b180c76578e |
children |
comparison
equal
deleted
inserted
replaced
849:5b180c76578e | 850:4e5e53d6336c |
---|---|
3 F % RHS of the ODE | 3 F % RHS of the ODE |
4 k % Time step | 4 k % Time step |
5 t % Time point | 5 t % Time point |
6 v % Solution vector | 6 v % Solution vector |
7 n % Time level | 7 n % Time level |
8 scheme % The coefficents used for the RK time integration | 8 scheme % The scheme used for the time stepping, e.g rk4, rk6 etc. |
9 end | 9 end |
10 | 10 |
11 | 11 |
12 methods | 12 methods |
13 % Timesteps v_t = F(v,t), using RK with specfied order from t = t0 with | 13 % Timesteps v_t = F(v,t), using RK with specfied order from t = t0 with |