-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create comets from particles in mean motion resonance with an eccentric planet #792
Comments
Hi tastuber (what's your real name?), Your setup looks alright. But in general this can be a difficult simulation to get right.
|
(I guess you're Thomas.. sorry... didn't make the connection immediately) |
Yes, I am Thomas! Thank you, I will try out the TRACE algorithm. I would have guessed that collisions are extremely rare and would not change the results, which are of statistical nature anyway. There is another thing I do not consider at the moment: |
IAS15 is as accurate as one any integrator can get on a computer with double floating point precision. Therefore it is also as symplectic as any symplectic integrator. So no, this is not an issue. If physical collisions are rare, then, no, they should not be important. One of my students, @dangcpham has recently run similar simulations. As in his case, your planet and star are not affected by the 5000 particles. This can be uses to speed up these simulations. But this is not implemented in the default version of REBOUND. I'm chaining him in here in case he wants to elaborate. |
Do you have any suggestions about the time step? The results I am comparing mine with were computed using a fully symplectic integrator with an adaptive timestep. If a particle got closer to the planet/star than x Hill radii, the time step was reduced. |
Have you tested if you get different results using TRACE? The 5% timestep should be fine. And yes, you should be able to reach the same precision. You can always run the simulation with IAS15 to get the most accurate results. It'll be slower, but you can for example reduce the number of particles. |
Hi Thomas, This might be a lot so I'm also happy to meet on Zoom if you want to discuss this further!
|
Hi Dang,
I will run simulations with TRACE, IAS15, and MERCURIUS for comparison and report back with the results. |
6&7. In the case of rapid sublimation near periastron, the sublimation rate is actually relatively straightforward and you can roughly calculate how much is lost over one periastron passage (see Equations 3.6 and 3.7 in https://link.springer.com/book/10.1007/1-4020-3495-4). The 2-3 au number is fascinating. I'm currently finishing a comet chemical evolution paper myself and tracked it down. It turns out to be ~1 au for water ice, which is the majority of cometary volatiles. You can read a bit more about that in the 2005 book I linked earlier, or the original Delsemme chapter in this 1981 Comets book (https://archive.org/details/comets0000unse). Good luck! |
Do you recommend to change any TRACE settings from the default? |
I think the defaults should work fine. |
@tastuber , not that it's too relevant to the discussion, but SWIFT-RMVS works by switching the Hamiltonian splitting every so often, as does TRACE. And as we showed in appendix of Lu et al. (2024), this means neither TRACE nor RMVS are actually fully symplectic. And in practice, this can degrade your error over time (see, e.g., Fig. 7 here https://arxiv.org/pdf/2301.06253). But TRACE is nearly time-reversible, and as a result doesn't degrade in error. Probably not information you needed, but all to say I'd only expect improvements from using TRACE in your case. |
Thank you for the information! My TRACE and IAS15 simulations are still running. |
Environment
Physics
I want to simulate a planetary system with planetesimals in mean-motion resonance with an eccentric planet. The secular influence of the planet causes the eccentricity of the planetesimals oscillate. When the eccentricity is high, the orbits of the planetesimals cross the orbit of the planet and can get scattered onto cometary orbits during a close encounter.
Over the timescale of ~1Gyr I want to monitor cometary activity in such a system.
To begin with I want to reproduce the results from Faramaz et al. 2017 who investigated this problem numerically with the code SWIFT-RMS. That code is fully symplectic with an adaptive time step.
I chose a particular simulation to reproduce:
This distribution of planetesimals encloses the 5:2 mean motion resonance with the planet. It is not meant to reproduce a particular system, but to explore the above described mechanism to produce comets.
Goal
Investigate the production and lifetime of comets produced by the above described mechanism over the timescale of Gyrs.
Final measure:
Progress
Due to the nature of the problem with long integration times (~ Gyr) paired with the need to accurately compute close encounters I chose the hybrid integrator Mercurius.
Using the webinterface I checked that the simulations are set up as I expected.
Over a time of ~20Myr the planetesimals in the mean-motion resonance are excited up to eccentricities of ~0.8. From rough analytical estimations this should be correct.
I analyzed the simulation archive to detect active comets. To do that I assumed a particle to be a comet if its periastron is less than 3au.
The results I get are not like in Faramaz et al. 2017 where comets start to appear after ~500Myr (their Fig. 5).
When I use a integration timestep of 5% of the smallest orbital period, I get comets right after the planetesimals got excited, i.e., around ~20 - 25Myr. If I choose a timestep of 1% of the smallest orbital period I do not get any comets within 1Gyr.
Question
I think the scattering behavior of the planetesimals is strange. I can elaborate more on that if necessary.
But my first question is: did I set up the simulation correctly?
The text was updated successfully, but these errors were encountered: