You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 6$\begingroup$ I would add to this that Geometric Numerical Integration is a great reference on symplectic methods if you want to read more. $\endgroup$Daniel Shapero– Daniel Shapero2022-11-20 17:59:24 +00:00Commented Nov 20, 2022 at 17:59
- 1$\begingroup$ Also note that there are no symplectic explicit methods: scicomp.stackexchange.com/questions/32728/… - so if you symplecticity is important for you, you will have to switch to implicit methods. $\endgroup$Daniel– Daniel2022-11-21 07:27:59 +00:00Commented Nov 21, 2022 at 7:27
- 1$\begingroup$ An incorrect implementation would also have bad energy conservation properties... though it's certainly true that RK4 does suffer from these problems (maybe not to this degree). Proper convergence testing is much better at identifying whether the problem is really the implementation or something more fundamental with the chosen discretization. $\endgroup$helloworld922– helloworld9222022-11-21 08:16:15 +00:00Commented Nov 21, 2022 at 8:16
- 3$\begingroup$ @Daniel luckily N-body falls into the category of problems you can implement some explicit symplectic integrators. Though even without the symplectic property standard RK methods can have energy conservation on the order of 1e-12, which while not perfect or to floating point precision is usually good enough for modest time ranges. $\endgroup$helloworld922– helloworld9222022-11-21 08:20:46 +00:00Commented Nov 21, 2022 at 8:20
- 2$\begingroup$ @helloworld922 : Symplectic methods require a fixed step size to have their advantageous properties. And that also only as long as they stay far away from the singular points of the vector field. In contrast, to get good performance from RK methods they need to be variable-step, the step sizes adapted to an error tolerance. Then the conserved quantities will also be correct to this level, possibly a little bit better. $\endgroup$Lutz Lehmann– Lutz Lehmann2022-11-21 09:22:49 +00:00Commented Nov 21, 2022 at 9:22
| Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
- MathJax equations
$\sin^2 \theta$
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. finite-element), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you