Velocity of a rocket in the earth moon system

AI Thread Summary
The discussion focuses on the calculation of a rocket's velocity in the Earth-Moon system, specifically regarding its initial velocity while in orbit around Earth. The rocket's initial velocity was derived using a formula that does not account for the Earth's rotation, which provides a slight advantage during launch. Participants clarify that while the Moon exerts some influence, it is negligible for a rocket in low Earth orbit, allowing it to be ignored in calculations. Additionally, there is confusion about the impact of the Earth's angular velocity on the rocket's trajectory, with suggestions that the rocket orbits the Earth rather than the center of mass of the Earth-Moon system. Overall, the conversation emphasizes the complexities of orbital mechanics and the minor effects of the Moon on the rocket's path.
s_gunn
Messages
33
Reaction score
0
Hi all! I've just finished writing a program in python that determines the position of a rocket in the Earth moon system. Initially it is in circular orbit around the Earth and then it is given a velocity boost at some point in it's orbit to make it travel to the moon.

I started all 3 bodies on the x-axis with the Earth at the left of the system's centre of mass (COM) and the moon at the right. the rocket is between the Earth and moon and therefore lies to the right of the COM and all travel anti-clockwise.

I devised the initial velocity of the rocket using v=sqrt(G*mass of earth/radius of rocket) but it's just occurred to me that it maybe should have been adjusted slightly as the Earth has a small rotation in the same direction as the rocket around the system's COM.

Should the Earth's angular velocity be added (or taken away) from the initial velocity of the rocket in orbit? and does the moon affect the initial velocity?

It's been puzzling me all day so any comments would be appreciated!
:confused:
 
Physics news on Phys.org
The Earth's rotation helped you when you launched your rocket. It gave you a head start. But once in orbit, your circular velocity formula is not affected by the Earth's rotation. The Moon is a small perturbation to your rocket in low-earth orbit, but not very significant. You can safely ignore it. That's because the Moon pulls the Earth with about the same strength it pulls your rocket, so the effect is negated.
 
I can't get it into my head why it wouldn't affect the rocket's orbital velocity as the path of the orbit can't be circular around the earth-moon system's centre of mass with the COM being about 3/4 way to the edge of the Earth's radius! Surely, the rocket must spiral slightly around the path of the Earth's orbit?

When my uni demonstrator looked at my code, he added in a negative term of 2*pi*Earth-COM distance/Time Period of the Earth to my velocity and never explained why. I was hoping I'd come up with a reason but I also thought that it should have been a positive contribution! I also have a friend who did the same project but he added a contribution from the angular velocity from the moon which i couldn't determine a reason for either.

Any ideas?
 
What's your initial CoM velocity for the rocket?

If rocket starts in Earth orbit, the Moon provides only minor perturbation. It can be ignored.

Maybe you can post the code? I could tell a lot more from that than from your explanation of what it is supposed to do.
 
i had to convert it from python to a word doc so i hope the indents are still intact! I'm also relatively new to programming so forgive my messy set-up, the code wasn't marked just the report we've written on it so I didn't try making it 'pretty'!

I hope you can make sense of it!
 

Attachments

Last edited:
Your spaceship in Low Earth Orbit (LEO) is not orbiting the COM of the Earth/Moon system, as it is orbiting interior to the Moon's orbit. It is orbiting the Earth only with minor perturbations from the Moon.
 
I have recently been really interested in the derivation of Hamiltons Principle. On my research I found that with the term ##m \cdot \frac{d}{dt} (\frac{dr}{dt} \cdot \delta r) = 0## (1) one may derivate ##\delta \int (T - V) dt = 0## (2). The derivation itself I understood quiet good, but what I don't understand is where the equation (1) came from, because in my research it was just given and not derived from anywhere. Does anybody know where (1) comes from or why from it the...
Back
Top