N-Body Problem - Initial Values

AI Thread Summary
The discussion centers on the challenges of solving the N-Body Problem, particularly in simulating orbits using a leapfrog algorithm. Key questions include how to calculate the ideal velocity for a stable orbit and how to determine angular velocity for multiple bodies. For circular orbits, the velocity can be derived from the gravitational parameter, while angular velocity can be calculated using the cross product of position and velocity vectors. The conversation also touches on the origins of planetary spin, suggesting that it is influenced by collisions and the dynamics of planetary formation rather than solely by gravitational forces. Overall, participants share insights on numerical solutions and the complexities of simulating celestial mechanics.
physxfreak
Messages
2
Reaction score
0
Hello everyone,
I'm new here so let me introduce myself first:
I'm a games engineering student and my main field is programming


Right now I'm struggeling with the N-Body Problem, well I think actually solved parts of it:
I've implemented the basic equations with a leapfrog algorithm and they seem to be working correctly


Now I have 2 questions:

1.)
When I place a star at a certain position, I want to calculate the ideal velocity in order to produce an orbit. How is this achieved?

2.)
How can I calculate the Angular Velocity for an NBody-Problem?

----------------------------------
My current setup (as reference):

sun (position=0,0,0; mass=333, velocity=0,0,0)
earth(position=-50,0,0, mass=1, velocity=0,0,2)

This is producing a stable circular orbit
It is also possible to add more Earth's/planets with stable orbits
I know that the mass ratio is not quite right, but i want to achieve a "compressed universe"
----------------------------------------

I would appreciate your help on this.
 
Physics news on Phys.org
Right now I'm struggeling with the N-Body Problem,
everybody does - you realize there is no analytical solution?
well I think actually solved parts of it
...depending on what you mean by "solved" of course :)
I mean to show you that physicists think of the n-body problem a bit differently to comp-scientists ... I'm guessing you are trying some sort of parallel processing?
Now I have 2 questions:

1.)
When I place a star at a certain position, I want to calculate the ideal velocity in order to produce an orbit. How is this achieved?
For a particular stable orbit, the velocity (and speed) will be different for different parts of the orbit. For a circular orbit, you just need to balance centripetal acceleration for both bodies with the force of gravity on them.

2.)
How can I calculate the Angular Velocity for an NBody-Problem?
That would be the angular velocity of each body in the problem?

$$\vec{\omega}=\frac{\vec{r}\times\vec{v}}{|\vec{r}|^2}$$

...which requires that you know the velocities of course.
The exact approach depends on how you are setting up your simulation.
 
Hi physxfreak; Welcome to Physics Forums.

If you've got a particular set of conditions that produces a circular orbit you can calculate the gravitational parameter for your simulated solar system.

The circular orbit velocity for a planet of negligible mass at distance r from a Sun of mass M is given by:

$$v = \sqrt{\frac{GM}{r}}$$

If you solve for μ = GM, then you can use this parameter to find the required speed for circular orbits of other radii. Note that if you have a known radius and velocity you don't even need the mass of the star to find the parameter μ. Even in "real life", μ = GM for our solar system is known with more accuracy than G or M alone.
 
Simon Bridge said:
everybody does - you realize there is no analytical solution?...depending on what you mean by "solved" of course :)
Yes I know that the N-Body Problem is unsolved for n>=3, but I'm using a numerical solution (with a leapfrog algorithm)

Simon Bridge said:
I'm guessing you are trying some sort of parallel processing?
No not at the moment, as i have a quite small problem size (n<100) at the moment

Simon Bridge said:
That would be the angular velocity of each body in the problem?

$$\vec{\omega}=\frac{\vec{r}\times\vec{v}}{|\vec{r}|^2}$$

...which requires that you know the velocities of course.
The exact approach depends on how you are setting up your simulation.

Well I'm searching for a way to calculate the "spin" of each planet, like the Earth rotating around it's own axis 365 days a year. But I assume that this spin was given by collisions rather than the gravitational force?

@Gneil:
Thanks, that is exactly what i looked for :)
 
Well I'm searching for a way to calculate the "spin" of each planet, like the Earth rotating around it's own axis 365 days a year. But I assume that this spin was given by collisions rather than the gravitational force?
The spin is not something that is determined by anything you can tell from the final state of the body no.

I think models of how planets form have been changing recently - very loosly, they form out of eddies in the planetary nebula surrounding the proto-star, the spin would be mostly affected by that. Any random collection of particles will gravitate to a spinning sphere-oid ... but you are right that collisions once solidified will also affect things, as will the presence of satellites and gravitational resonances like tide-locking (and see mercury).

For most planets you can just pick a rotation to suit yourself.
Close orbiting bodies will have some sort of resonance.
 
I multiplied the values first without the error limit. Got 19.38. rounded it off to 2 significant figures since the given data has 2 significant figures. So = 19. For error I used the above formula. It comes out about 1.48. Now my question is. Should I write the answer as 19±1.5 (rounding 1.48 to 2 significant figures) OR should I write it as 19±1. So in short, should the error have same number of significant figures as the mean value or should it have the same number of decimal places as...
Thread 'A cylinder connected to a hanging mass'
Let's declare that for the cylinder, mass = M = 10 kg Radius = R = 4 m For the wall and the floor, Friction coeff = ##\mu## = 0.5 For the hanging mass, mass = m = 11 kg First, we divide the force according to their respective plane (x and y thing, correct me if I'm wrong) and according to which, cylinder or the hanging mass, they're working on. Force on the hanging mass $$mg - T = ma$$ Force(Cylinder) on y $$N_f + f_w - Mg = 0$$ Force(Cylinder) on x $$T + f_f - N_w = Ma$$ There's also...

Similar threads

Back
Top