Question #45670

A spaceship orbits the moon at height of 20000 m. assuming it to be subject only to the gravitational pull of the moon, find its speed and the time it takes for one orbit.

Expert's answer

Answer on Question #45670, Physics, Mechanics

A spaceship orbits the moon at height of 20000 m. assuming it to be subject only to the gravitational pull of the moon, find its speed and the time it takes for one orbit.

Solution

I assume moon’s mass to be M=7.361022M=7.36\cdot 10^{22} kg and moon’s radius R=1.74106R=1.74\cdot 10^{6} m. Let us find speed. We know that gravitational force is actually centripetal force here. Hence


import math
G = 6.67e-11
M = 7.36e22
R = 1.74e6
r = 0.02e6
v = math.sqrt(G * M / (R + r))
print(v)  # Output: 1670.1 m/s


Knowing the speed and the length of orbit we find time for one orbit - the period


T = 2 * math.pi * (R + r) / v
print(T)  # Output: 6621.3 s ≈ 1.8 hours


http://www.AssignmentExpert.com/

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS