-
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
On TTVs with rebound #551
Comments
PSA: The bisection method used in the REBOUND example is a bit crude. I'm currently working with a summer student to hopefully come up with a slightly more elegant way to do this. (But there's nothing wrong with it.) The numbers that you have chose seem to be reasonable for your case.
Having zero eccentricity is a very special case when it comes to orbital elements. They way orbital elements are implemented in REBOUND ensures that they are "smooth" when the eccentricity goes to zero. So the omega will matter even in that case. Are you sure the planets are in a MMR? The period ratio is an integer ratio, but the eccentricities are zero and one planet is much more massive than the other. I suspect the plot that you made is the correct TTV signal. Maybe you're already doing this, but I'd start with trying to reproduce a well known TTV system. (If that's what you're doing, can you share which system this is?) |
Thank you for your reply @hannorein, good to know the numbers I used were ok. "Are you sure the planets are in a MMR? The period ratio is an integer ratio, but the eccentricities are zero and one planet is much more massive than the other." One more question/comment: REBOUND does not seem to care about stellar-to-planet ratio when transits occur, you check roughly when the planet crosses the y-axis. This puts an uncertainty in the TTVs computed with REBOUND which would be in the same level of the transit duration, right? Is there a way to go around it or would you guys implement that? Perhaps asking for these (approximated) radius and then checking for the central time within the regime of |y| < Rstar ? |
Hello @hannorein and @douglasalvesastro12 , I have a question about the number of transit points N. Does this number has a connection with the period of the planet that we study? Thank you |
Hi Dimitriou,
n is usually used to represent the transit number which relates to the
planet period and central transits as Tn = T0 + n*P, this way you can get
the central time of your transits (assuming zero uncertainty in the first
mid transit and planet period P)
Cheers
…On Tue, Jun 27, 2023, 12:28 Dimitriou Eleftherios ***@***.***> wrote:
Hello @hannorein <https://github.com/hannorein> and @douglasalvesastro12
<https://github.com/douglasalvesastro12> ,
I have a question about the number of transit points N. Does this number
has a connection with the period of the planet that we study?
Thank you
—
Reply to this email directly, view it on GitHub
<#551 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AI5VVSSZOBFUHKB65K6SDEDXNK7XVANCNFSM4654MYTQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Thank you @douglasalvesastro12 |
Hello @hannorein thank you for making rebound available to us, it's an amazing code!
As an exercise for a larger project I was trying to make some TTVs following the python examples and I can't reach conclusive results. Hopefully you can help me with the following:
ex1: For a 3 body system, M0 = 1 Msolar, m1 = 1e-3 Ms(~Jupiter) at P1 = 12 days and m2 = 3*1e-6 Ms (~Earth) at P2 =16 days, we would have a roughly sinusoidal TTV shape with amplitude ~4min. Both planets are in a coplanar orbit with zero eccentricities.
What I get is something completely different (image attached below).
Questions:
(0) Why I am not getting the sinusoidal shape with amp. ~ 4min?
(1) What are reasonable numbers for these lines: System integration sim.integrate(sim.t+1e-4), finding the central time while t_new-t_old>1e-7 and getting out of central time sim.integrate(sim.t+1e-3). I used 1e-4, 1e-7 and 1e-3 which is in years and represents respectively ~<1% of period, left as is and ~3% of period. These numbers if not chosen correctly seems to heavily influence both the shape and amplitudes of TTVs.
(1) I noticed that changing omega (argument of pericenter) the TTV shapes change. Should it not be the same, specially for circular orbits? Circular orbits don't have apogeo/perigeo hence omega is not actually defined for circular orbits. (right?). However, even for the case of 1 planet in inner circular orbits and an outside perturber in a non-circular orbits, omega should not make a huge difference in the TTV shape of the inner because in the long term there will be a precession of omega in a somewhat periodic manner.
The snippet I used from your examples
The text was updated successfully, but these errors were encountered: