Celestial Mechanics: Solving Differential Equations for N-Body Systems

Click For Summary
SUMMARY

This discussion focuses on solving differential equations for gravitational interactions between celestial bodies, specifically using Newton's laws of motion. The equations of motion for two bodies are defined, incorporating gravitational constant G, mass (m), position (r), and acceleration (a). The conversation emphasizes transitioning from individual body coordinates to center of mass and relative coordinates, ultimately simplifying the problem to a single body under a gravitational potential. The iterative numerical method, particularly Euler's method, is recommended for extending the solution to N-body systems.

PREREQUISITES
  • Understanding of Newton's laws of motion
  • Familiarity with differential equations
  • Knowledge of numerical methods, particularly Euler's method
  • Basic concepts of celestial mechanics
NEXT STEPS
  • Study the derivation of the center of mass and relative coordinates in celestial mechanics
  • Learn about the numerical integration techniques for N-body simulations
  • Explore the concept of reduced mass in gravitational systems
  • Investigate advanced numerical methods beyond Euler's, such as Runge-Kutta methods
USEFUL FOR

Students in numerical methods courses, astrophysicists, and anyone interested in simulating gravitational interactions in celestial mechanics.

rizumu
Messages
1
Reaction score
0
I am getting stuck trying to solve a differential equation describing the gravitational relationship between two celestial bodies.

What I have so far is this:

a1 = G m2 (r2 - r1) / ||r2 - r1||^3

a2 = G m1 (r1 - r2) / ||r1 - r2||^3

where:
boldface denotes vectors in 3 dimensional Cartesian space
G for gravitational constant
m for mass
r for position
a for acceleration

I guess my question is where to go from here. I am assuming that the general solution will contain constants relating to initial position and initial velocity for both bodies. My goal is to arrive at a point where I can plot the trajectories of the two bodies using iterations. Essentially a system I can solve using numerical methods such as Euler's.

Anyway, any insight into how to solve this kind of problem would be great! Eventually I want to expand it to more than 2 bodies but I need to get comfortable with 2 first before taking the problem to N-bodies. This is for a numerical methods class, and possibly a final project/presentation.

Cheers!
 
Physics news on Phys.org
The equations for the trajectories of the two bodies (not the equations of motion) can be solved exactly, without approximations. The key is to pass from the r1 r2 coordinates to the R r coordinates, where R are the coordinates of the center of mass of the system, and r are the relative coordinates of the two bodies:

R = (m1 r1 + m2 r2) / (m1 + m2)

r = r2 - r1

If you carry out the calculations, it turns out that R satisfies the equations for a free body of mass M = m1 + m2:

MR''=0

and r satisfies the equation of motion of a single body of reduced mass

m = m1 m2 / (m1 + m2)

in a gravitational central potential with center fixed at the origin:

r'' = -Gmr / |r|^3

So the whole problem is reduced to the one of a single body.
 
I think you are looking more for an iterative procedure that applies to more than two bodies. With more than two bodies, it can't be solved exactly. Given that you know the positions and velocities at time step n, and you have calculated the acceleration as above, you just time step forward to calculate the new positions and velocities. Then you calculate the new accelerations and iterate.

[tex]x_{n+1} = x_n +v_{xn}*\delta t; y_{n+1} = y_n +v_{yn}*\delta t; z_{n+1} = z_n +v_{zn}*\delta t; v_{x n+1} = v_{xn} +a_{xn}*\delta t; v_{y n+1} = v_{yn} +a_{yn}*\delta t; v_{z n+1} = v_{zn} +a_{zn}*\delta t[/tex]
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 6 ·
Replies
6
Views
6K
Replies
1
Views
1K
  • · Replies 18 ·
Replies
18
Views
3K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 86 ·
3
Replies
86
Views
9K
  • · Replies 12 ·
Replies
12
Views
2K