I'm trying to develop a physics simulation and I want to implement a fourth-order symplectic integration method. The problem is that I must be getting the math wrong, since my simulation is not working at all when using the symplectic integrator (as compared to a fourth-order Runge-Kutta integrator that works reasonably well for the simulation). I've been googling this forever and all I can find are scientific articles on the subject. I tried to adapt the method used in the articles, but am having no luck. I want to know if anyone has source code for a simulation that makes use of symplectic integrators, preferably to simulate a gravitational field but any symplectic integrator would do. What language the source is in doesn't matter too much, but I would appreciate a language using C-style syntax. Thanks!

link|improve this question

50% accept rate
Basically, I just want to integrate an N-body problem. I suppose the parameters then are the bodies' positions, momenta, and masses. – George Sep 9 '10 at 20:26
I went under the assumption that general n-body problems cannot be solved symbolically, that it's the reason why numerical integrators (such as RK4 and symplectic integrators) are used. If you mean setting up the problem with the appropriate differential equations, don't worry about it. It took me a while to get the RK4 integrator working as well, but it has more to do with my ability to transfer mathematical equations to code (ie. it's possible to be able to do it, but also not be able to write code to do it). – George Sep 9 '10 at 20:49
I blush. I read you question all to quickly and simply saw "symbolic" where you wrote "symplectic". My apologies, but all my comments (now deleted as to the wrong point) were based on this misapprehension. – dmckee Sep 9 '10 at 20:52
Oh, ok, no worries then. The problem I'm having is just getting a symplectic integrator to code. I'm getting nowhere with my attempts so I just wanted to see how other people do it. – George Sep 9 '10 at 20:54
feedback

1 Answer

up vote 2 down vote accepted

As you asked for source code: From HERE you can download MATLAB and FORTRAN code for symplectic methods for Hamiltonian systems and symmetric methods for reversible problems. And a lot of other methods for dealing with diff equations too.

And in THIS paper you can find the description of the algorithms.

HTH!

link|improve this answer
Thanks, that definitely helps! What I needed was having the equations in papers described in code, and the link you provided does that. – George Sep 10 '10 at 18:18
1  
@George As you saw, source code examples for symplectic algorithms are scarce on the web. When you are done, consider posting your code somewhere to help others in need. – belisarius Sep 10 '10 at 18:24
I can definitely appreciate how scare examples are. Although a large number of papers are written on symplectic algorithms used to solve various problems, it seems that those same scientists don't put the code for their algorithms on the web. I will post a link later if I can get a working symplectic algorithm. – George Sep 10 '10 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.