Skip to content
Snippets Groups Projects
Commit 47f7224f authored by Armin Damon Riess's avatar Armin Damon Riess
Browse files

corrected leapfrog algorithm

parent 4748d28f
No related branches found
No related tags found
No related merge requests found
......@@ -159,10 +159,10 @@ void nBodySim::doTimeStep(double dt) {
for (unsigned i=0; i < nParticles_; ++i) {
for (unsigned j=0; j < 3; ++j) {
// TODO
tree_->drift(dt/2);
tree_->kick(dt/2);
tree_->drift(dt);
tree_->update();
tree_->kick(dt);
tree_->drift(dt/2);
tree_->kick(dt/2);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment