annotate +time/+rk4/rungekutta_4.m @ 103:bc5db54f9efd
feature/arclen-param
fzero_vec, integral_vec and spline are now local functions in Curve. Renamed arcLengthStretch to arcLengthParametrization. Removed plot_derivative. Added some comments and extra lines + removed unneccesary lines. arcLength is now a method and not static. Constructor does not accept difference operator anymore.
author |
Martin Almquist <martin.almquist@it.uu.se> |
date |
Mon, 07 Dec 2015 17:24:28 +0100 |
parents |
48b6fb693025 |
children |
|
rev |
line source |
0
|
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_4(v, t , k, F)
|
|
5 k1 = F(v ,t );
|
|
6 k2 = F(v+0.5*k*k1,t+0.5*k);
|
|
7 k3 = F(v+0.5*k*k2,t+0.5*k);
|
|
8 k4 = F(v+ k*k3,t+ k);
|
|
9 v = v + (1/6)*(k1+2*(k2+k3)+k4)*k;
|
|
10 end |