Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
1k views

Why is Verlet integration better than Euler integration?

Can someone explain me why Verlet integration is better than Euler integration? And why RK4 better than Verlet? I don't understand why it is a better method :/
2
votes
1answer
77 views

Why does the numeric error in my implementation of Runge-Kutta not decrease like N^a?

I'm trying to determine how many steps it takes for the Runge-Kutta Method ("RK4") to be within 0.01% of the exact solution of an ordinary differential equation. I'm comparing this to the Euler ...
1
vote
1answer
231 views

Matlab - take gradient of a matrix at any arbitrary point

I am trying to implement Runge-Kutta's 4th order integration method in matlab on a 2-d matrix (x, y). The matrix contains a height value (float) at each point. The idea is place a particle in the ...
0
votes
2answers
98 views

Runge Kutta in C for Lorenz equation

i'm trying to compute the Lorenz system using Runge Kutta method, but i can't find where my code have an error. When I run it, the system goes to a static point and i should obtain a butterfly (the ...
-1
votes
2answers
1k views

Runge-Kutta (RK4) for system of differential equations in Java

This quation is mostly a result of this thread: Differential Equations in Java. Basically, I've tried to follow Jason S. advise and to implement numerical solutions to differential equations via ...