I want to have a function that describes where a falling object is. Like this one: h(t) = -g*t²/2 But this one is for the usual close to the surface case, where there is no variation of gravity due to distance to the center of the planet. But I want a formula that takes that variation into account, for distances close to several radius. It is hypothetical situation where the only bodies involved are the the falling one and the big one. And I'm talking only about Newton physics here. I've searched for it but found nothing.
Asked
Active
Viewed 85 times
1 Answers
0
You can solve the differential equation with varying $g$, analytically in mathematica/python/wolframAlpha to get exact time!
But if you want the time of Falling, I guess the two body problem will work! The time needed for two bodies to meet under the influence of gravitational attractive force!
$T_{meet}=\frac{π}{2\sqrt{2}}\sqrt{\frac{(R_{e}+h)^{3}-R_{e}^{3}}{G(M_{e}+m)}}$

Fardin
- 71
{\displaystyle g_{h}=g_{0}\left({\frac {R_{\mathrm {e} }}{R_{\mathrm {e} }+h}}\right)^{2}}{\displaystyle g_{h}=g_{0}\left({\frac {R_{\mathrm {e} }}{R_{\mathrm {e} }+h}}\right)^{2}} Where
gh is the gravitational acceleration at height h above sea level. Re is the Earth's mean radius. g0 is the standard gravitational acceleration.
– niels nielsen Jun 26 '22 at 22:36