In a circular orbit, the distance r remains the same, meaning there is no acceleration outwards or inwards.
According to Newton's Second Law:
Ftotal=ma
gravity + centrifugal = 0
−GMmr2+mv2r=0
mv2r=GMmr2
v2=GMr
We obtain the velocity of the object orbiting in a circular orbit:
v=√GMr
This velocity must be tangential to the orbit, or at right angles to the vector r between the object and the planet.
Orbital Period
The orbital period T is the time taken to complete one full orbit. In physics, the result of the calculation will be in seconds.
If we multiply the orbital velocity v with the orbital period T, we get the total distance traveled, which is equal to the circumference of a circle.
vT=2πr
T=2πrv
But v=√GMr
T=2πr√rGM
So we arrive at the orbital period:
T=2π√GMr3/2
We can calculate the orbital period T if we know the mass of the central mass M and the distance r.
But we can also use it to calculate the mass of a planet, if we can measure the orbital period of its satellite and the orbital distance.
This is how the masses of planets and other stars were calculated; astronomers observed something that orbited them. Astronomers measured the time for the satellite to complete one orbit, and measured the separation between the satellite and the planet.
T2=4π2GMr3
M=4π2GT2r3
There is a moon called Ganymede orbiting the planet Jupiter. Its orbital period is 172 hours, and it orbits 1,070,400 km from Jupiter.
Where M and m are the masses of the two objects, r is the distance between them, and G is the gravitational constant.
You can express it as a vector (in fact if you are simulating motion in a gravitational field you need to express it as a vector):
F=−GMmr2ˆr
where ˆr is the unit vector in the direction from the mass M to m.
Gravitational Potential Energy
Gravitational potential energy is defined as the work done to bring an object from a distance r to infinity.
U=∫∞rFdr
U=∫∞r−GMmr2dr
U=−GMm∫∞rr−2dr
U=−GMm[−r−1]∞r
U=GMm[1r]∞r
U=GMm[0−1/r]
U=−GMmr
Conservation of Energy
An object of mass m moving with velocity v1at distance r1from a massive body of mass M has the combined gravitational potential energy U and kinetic energy K:
U+K=−GMmr1+12mv21
If no energy is added into the system by using an engine, this total is conserved. At distance r2 and velocity v2 we will find the total is the same.
−GMmr1+12mv21=−GMmr2+12mv22
If we know the speed of an object at one distance, we can predict the velocity when the object is at a different distance.
Escape Velocity
Imagine you are standing on the surface of the Earth, and tossed a ball up. You will see the ball gradually slow down, briefly stopping in the air, and then come down again. If you throw the ball hard enough, the ball will slow down, and it will stop at infinity! This means the ball has completely escaped. The velocity that you throw the ball so that it escapes is called the escape velocity.
When you are standing on the Earth, the surface is about 6371 km from the centre.
r1=6.37×106m
When the ball reaches infinity, the velocity is zero:
r2=∞
v2=0
We want to find the escape velocity, v1.
Using the principle of conservation of energy:
−GMmr1+12mv21=GMm∞+12m(0)2
12mv21=GMmr1
12v21=GMr1
v21=2GMr1
v1=√2GMr1
Putting in the numbers, with G=6.67×10−11m3kg−1s−2 and mass of Earth M=5.97×1024:
v1=√2×6.67×10−11×5.97×10246.37×106=1.09×104ms−1
That is 39,240 km/h.
What if you are already in space, at some distance away from the Earth? Let's say at a distance where r1=20000km? I invite you to try calculating it.
You can also try to calculate the escape velocity from the surface of other planets such as:
I've been struggling to include Mathjax in Blogger properly to write proper mathematical equations. A lot of people saying "paste this here", but this is the only one that worked:
For Blogger, you need to open the Theme, then Cutomize->Edit HTML
Then copy and paste the code kindly provided in the link above, which I have copied below. Use Ctrl-F to find < /head >. You need to paste it before the < /head >
What does a physicist do? That's the question isn't it? What do we do?
I am, mainly, a physicist. I can code.
I like to model and simulate physical systems. Oscillating springs, solar system animations. I use Vpython for that. In this example, I simulated a problem in Orbital Mechanics. Suppose you want to travel from one planet to another? Your flight will not be in a straight line because of the Sun's gravitational pull. It will follow an elliptical path, which in this case is called the Hohmann Transfer.
I also am interested in machine learning. How a computer can tell the difference between several images, for example. Below, I show some things I did for fun. The first is a brute-force hand-coded Nearest Neighbor Classifier. Slow, but I'm proud of it. I know there's a library in Python that can implement Nearest Neighbour faster, but let me have my moment. Imagine how proud the caveman was who invented the wheel!
KNN is a form of unsupervised learning used for clustering elements (in
this case, clustering pixels of similar colour). The pixels are assigned
to the "centroids" closest to them. Then the average of the pixels
associated with a centroid is calculated and used to update the
centroid, so the centroid shifts a bit, and the process is repeated for
several iterations or until the cetroids more or less stop moving.
Support Vector Machine (SVM) is a supervised classifier method, where a
"machine" is taught to associate training data, which are subsets of a
main data set, with certain targets. This trained machine can then be
used to classify the main data set.
Imagine you have two flocks of sheep, black and white. You want to build
a fence that is an optimal straight line between them. So you pick out
some black and some white sheep and use their positions to determine the
best fence position and orientation. When you build the fence,
hopefully it will separate the two flocks completely!
What if you have three flocks, A, B and C? Then you need to determine
the fences of A vs (B,C), B vs (A,C), and C vs (A,B).
SVM using Python scikit-learn or sklearn
This is a program to illustrate how Python can be used for machine
learning.
sklearn is a Python library which can implement machine learning. There
are others such as the more famous tensorflow and keras and PyTorch.
I found Jupyter Notebook and Jupyter Lab to "excellente" for this kind
of project.
I have also performed wavelet analysis of signals, optimizing the wavelet denoising parameters using the signal's noise statistics. A lot of computer-heavy stuff.
So... am I a programmer, or "merely" a physicist who can code? Am I human, or am I dancer?