- #1
Priyo137
- 8
- 5
What is the minimum velocity (theoretically) of an object located at the CENTER of the Earth to move it outside its gravitational field?
Are you thinking about the Earth as a point mass or with a tunnel drilled theough to the centre?Priyo137 said:What is the minimum velocity (theoretically) of an object located at the CENTER of the Earth to move it outside its gravitational field?
How much do you know about gravitational potential energy? What about Newton's Shell Theorem?Priyo137 said:I am looking for the second one, assuming a thin tunnel from the center to the surface. Further assuming that it does not necessarily change the distribution of mass of the spherical Earth severely.
That's exactly how you would do it. I'll have a look on line for a good derivation, rather than typing lots in here!Priyo137 said:I have quite a basic idea of the two. It turned out to me that if we could know the energy required to bring the object to the surface of the Earth (by maybe using the concept of Gravitational potential energy), it can be solved.
At a B level we have to assume constant density.Orodruin said:Since the Earth density profile is not a simple analytic function, this computation has to be performed numerically. However, given the density profile data, it should be a simple matter of numerical integration to find the gravitational potential at the centering.
I couldn't find anything very good, so might post something myself later.PeroK said:That's exactly how you would do it. I'll have a look on line for a good derivation, rather than typing lots in here!
Unfortunately, that will tend to significantly underestimate the gravitational potential at the center. You will get an order of magnitude estimate, but that you could get from just dimensional analysis.PeroK said:At a B level we have to assume constant density.
First, we start with Newton's law of gravitation:PeroK said:I couldn't find anything very good, so might post something myself later.
Thanks for welcoming me here!berkeman said:
Okay, then I'll move your thread to the schoolwork forums. Also, for schoolwork questions, you need to show us your work on the problem. Can you do that using the hints that you've been provided?Priyo137 said:It's a question from a very recent physics exam at my high school.
Just to note that the gravitational potential at the center is the area under the curve here. The difference between PREM and constant density is appreciable. The area outside of the Earth radius is easy to underestimate, but it is the same for all models obviously.PeroK said:Take a look at the variation in gravitational acceleration inside the Earth here:
https://en.wikipedia.org/wiki/Gravity_of_Earth
The acceleration is approximately constant (##10m/s^2##) from the surface to a radius of about ##3,000km## and reduces linearly after that. This provides the option of a simple model based on two phases for the acceleration Earth. The first phase should be straightforward and the second phase can use the same method as above.
This gives a more accurate estimate for the escape velocity from the centre (for what it's worth!). Here's the graph from the Wikipedia page:
View attachment 342053
I make it about 20%.Orodruin said:Just to note that the gravitational potential at the center is the area under the curve here. The difference between PREM and constant density is appreciable.
Yes, sure.berkeman said:Okay, then I'll move your thread to the schoolwork forums. Also, for schoolwork questions, you need to show us your work on the problem. Can you do that using the hints that you've been provided?
(I'll send you some tips on learning to post math using LaTeX at PF.)
A comment regarding the precision here. A fundamental skill in physics (unfortunately many times ignored) is to not over or understate the precision in your results. Whether the precision is limited by limited precision in thr input data or by inaccuracies in the modelling. How many significant digits would you be confident with in this result?Priyo137 said:$$v_{ec}= \sqrt{3gR} = 13.717 km/s$$
import numpy as np
import pandas as pd
data = pd.read_csv('PREM_1s.csv',header=None)
rho = data[2] * 10**-3 * (10**2)**3
r = data[0] * 10**3
dr = - r.diff()
G = 6.674 * 10**-11
print('Escape velocity at center: ' + str(np.sqrt(2*(rho * 4 * np.pi * r * G * dr).sum())) + ' m/s')
is a pretty decent guess.PeroK said:I make it about 20%.
Unfortunately, it's hard for me to approximate. All I can guess that it's going to significantly change if we're taking real data of the account. The major change will be causes probably for the assumption that Earth has a constant density.Orodruin said:A comment regarding the precision here. A fundamental skill in physics (unfortunately many times ignored) is to not over or understate the precision in your results. Whether the precision is limited by limited precision in thr input data or by inaccuracies in the modelling. How many significant digits would you be confident with in this result?
Then you should train this skill. You have already seen @PeroK estimate the error in the potential to about 20%. Does it seem reasonable to then use five significant digits in your result?Priyo137 said:Unfortunately, it's hard for me to approximate. All I can guess that it's going to significantly change if we're taking real data of the account. The major change will be causes probably for the assumption that Earth has a constant density.
So you see, I can't exactly insist on how many significant digits it's going to be precise.
I assume I shouldn't have used 5 significant digits. Maybe I should have kept 1 only, I'm not sure. It would be great if you helped. Thanks in advance.Orodruin said:Then you should train this skill. You have already seen @PeroK estimate the error in the potential to about 20%. Does it seem reasonable to then use five significant digits in your result?
If you know that there is around a 10% error (which is roughly what you get if you take the square root of a number with a 20% error) then you should keep a number of digits reflecting this. Either one or two in this case, neither is ideal as one gives you the order of magnitude only and two kind of oversells precision in the end (14 km/s when correct rounding of the actual result would be 15 km/s). Of the two, I would probably go for two in this case but make sure to note that the second digit might not be fully accurate.Priyo137 said:I assume I shouldn't have used 5 significant digits. Maybe I should have kept 1 only, I'm not sure. It would be great if you helped. Thanks in advance.
It wasn't a guess. I calculated the two-phase model on a spreadsheet and got ##14.9 km/s##.Orodruin said:is a pretty decent guess.
That's the assumption that makes the solution unrealistic, and not a good approximation. It's a challenge to find a method of getting a better approximation from the data. That involves really thinking about the problem and how you are going to solve it, as well as using equations and doing calculations.Priyo137 said:Unfortunately, it's hard for me to approximate. All I can guess that it's going to significantly change if we're taking real data of the account. The major change will be causes probably for the assumption that Earth has a constant density.
So you see, I can't exactly insist on how many significant digits it's going to be precise.
… then you should learn to program in Python.PeroK said:If you can't program in Python,
PeroK said:you can do a lot on a spreadsheet. In general, for maths and physics problems I find a spreadsheet a lot better than a calculator.
There are various ways of deciding how many significant digits to keep. The data I was using had three significant digits, so I would tend to keep only three in the answer. One way to check this is to use values either side of the data to see how much that changes things. I did this on a spreadsheet. The calculation for the difference in GPE was:Priyo137 said:I assume I shouldn't have used 5 significant digits. Maybe I should have kept 1 only, I'm not sure. It would be great if you helped. Thanks in advance.
Min | Max | ||
G | 6.67E-11 | 6.66E-11 | 6.68E-11 |
R | 6.37E+06 | 6.36E+06 | 6.38E+06 |
M | 5.97E+24 | 5.96E+24 | 5.98E+24 |
Delta U | 9.38E+07 | Best estimate | |
V | 13,694 | ||
Delta U | 9.33E+07 | Minimum estimate | |
V | 13,662 | ||
Delta U | 9.42E+07 | Maximum estimate | |
V | 13,727 |
Escape velocity is the minimum speed that an object needs to escape from the gravitational influence of a celestial body, such as Earth, without further propulsion.
Escape velocity from the Earth's center is calculated using the formula \( v_e = \sqrt{\frac{2GM}{r}} \), where \( G \) is the gravitational constant, \( M \) is the mass of the Earth, and \( r \) is the radius of the Earth.
The escape velocity from the Earth's surface is approximately 11.2 kilometers per second (km/s).
Yes, the escape velocity would be different if starting from the Earth's center. However, practically, this scenario is impossible because the Earth is solid. Theoretically, the escape velocity at the Earth's center would be higher due to the increased gravitational potential energy that needs to be overcome.
Understanding escape velocity is crucial for space missions, as it determines the speed required for spacecraft to leave Earth's gravitational influence and travel to other celestial bodies or into deep space.