Mercurial > repos > public > sbplib
view +time/+rk4/rungekutta_4.m @ 1227:02dfe3a56742 feature/poroelastic
Add Upwind ElasticAnisotropic schemes. Seem to work really well!
| author | Martin Almquist <malmquist@stanford.edu> |
|---|---|
| date | Sat, 16 Nov 2019 14:26:06 -0800 |
| parents | 48b6fb693025 |
| children |
line wrap: on
line source
% Takes one time step of size k using the rungekutta method % starting from v_0 and where the function F(v,t) gives the % time derivatives. function v = rungekutta_4(v, t , k, F) k1 = F(v ,t ); k2 = F(v+0.5*k*k1,t+0.5*k); k3 = F(v+0.5*k*k2,t+0.5*k); k4 = F(v+ k*k3,t+ k); v = v + (1/6)*(k1+2*(k2+k3)+k4)*k; end
