Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Week 3 Exercises

Part 1

Consider a simple two-body system: a planet of mass MpM_p and radius RR, rotating at angular frequency Ω\Omega, orbited by a satellite of mass MsM_s on a Keplerian orbit with semi-major axis aa and eccentricity ee. Assume MsMpM_s\ll M_p.

  1. Write down the equation(s) required to compute the tidal deformation of the planet. Indicate where orbital eccentricity and planetary rotation enter the formulation.

  2. Implement an algorithm to animate the deformation of the planet’s surface over several orbital periods. Show the behavior of this system with the following parameters:

    a. e=0e=0 and Ω=0\Omega = 0

    b. e=0e=0 and Ω=n\Omega = n

    c. e=0.8e=0.8 and Ω=3n\Omega = 3n

  3. (extra) Implement rotational deformation, assume the rotation is sufficiently small so that the tidal and rotational deformation effects add linearly.

Part 2

Use Rebound to simulate a 2-planet system. Set up each planet with its mass and initial orbital parameters. You may want to change the units using sim.units = ('AU','yr','Msun')

  1. Try to replicate Fig.3-4 from this excerpt from the Exoplanets book using the initial conditions from the captions, and add a plot for the argument of periastron for each planet as well. You can read the text in the PDF file for some more explanation. Increase the simulation time. What do you find and how can you explain that? (extra: animate the change in orbits)

  2. Experiment with the orbital parameters of each planet. Try to put them into a resonance or near-resonance. Observe how orbital parameters evolve over time. Add a plot for the resonant argument (Eq. 7.43) and check if your system meets the criteria of being in resonance. (extra: animate the change in orbits)

  3. Reproduce Fig. 7.9. Use Eq. 7.54 to set the timescale of the simulation to observe a few Kozai cycles. Can you confirm your observations with Eq. 7.52 and 7.53? The simulation may take longer now. Try to change the integrator (sim.integrator=) to reduce errors that accumulate over large timescales. (extra: animate the change in orbits)