How to get tangential velocity

Click For Summary

Discussion Overview

The discussion revolves around calculating the tangential velocity of a satellite in an elliptical orbit. Participants explore the necessary variables and methods for determining this velocity, considering both theoretical and numerical approaches.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant outlines the variables they have, including angular velocity, instantaneous radius, and the mass of the planet, and questions if these are sufficient to calculate tangential velocity.
  • Another participant suggests that a formula for tangential velocity could be derived by multiplying angular velocity by the radius, but questions whether more complex factors are involved.
  • There is a discussion about defining the velocity at turning points of the orbit based on the mass of the planet and the axes of the ellipse.
  • Some participants propose using momentum and energy approaches to find tangential velocity, though they express uncertainty about how to apply these methods without knowing total mechanical energy.
  • One participant mentions that simulating a simpler problem, such as an object falling towards a planet, could provide insights into the complexities of elliptical orbits.
  • Clarifications arise regarding the difference between tangential velocity and total velocity, with some participants expressing confusion about their definitions and directions.
  • There is acknowledgment of mislabeling concepts, with one participant correcting their earlier statements about tangential velocity.

Areas of Agreement / Disagreement

Participants express various viewpoints on how to calculate tangential velocity, with no consensus reached on a single method or formula. Some agree on the basic approach of using angular velocity and radius, while others raise questions about the complexity of the problem.

Contextual Notes

Participants note limitations in their understanding of the relationships between the variables and the need for clarity in definitions, particularly regarding tangential and total velocity.

Who May Find This Useful

This discussion may be useful for individuals interested in orbital mechanics, programming simulations of orbits, or those seeking to understand the nuances of velocity in elliptical trajectories.

Bob Jones
Messages
18
Reaction score
1
I am in the process of making a program that visually shows an elliptical orbit over time. I wish to find the tangential velocity of the satellite in the elliptical orbit based on the variables that I know.

Here is what I know:
a) The angle relative to the right focus with 0 radians being the positive x direction from that point
b) The angular velocity based on the angle in a
c) The instantaneous radius (distance between the center of mass of the satellite and right focus)
d) The semi-major and semi-minor axes
e) The mass of the planet

Is this enough information (assuming you can use constants) to calculate tangential velocity? If so, how?
 
Physics news on Phys.org
Bob Jones said:
I am in the process of making a program that visually shows an elliptical orbit over time. I wish to find the tangential velocity of the satellite in the elliptical orbit based on the variables that I know.

Here is what I know:
a) The angle relative to the right focus with 0 radians being the positive x direction from that point
b) The angular velocity based on the angle in a
c) The instantaneous radius (distance between the center of mass of the satellite and right focus)
d) The semi-major and semi-minor axes
e) The mass of the planet

Is this enough information (assuming you can use constants) to calculate tangential velocity? If so, how?

Are you looking for a formula or a numerical method?
 
PeroK said:
Are you looking for a formula or a numerical method?

A formula that I can plug in whichever values of the above listed variables are needed to get the tangential radius.

Could I simply multiply the angular velocity by the radius, or are there more complex factors at hand?
 
Bob Jones said:
A formula that I can plug in whichever values of the above listed variables are needed to get the tangential radius.

Could I simply multiply the angular velocity by the radius, or are there more complex factors at hand?

An orbit is defined by the mass of the planet and the two axes. From that you can get the velocity at the turning points. Do you know how to do that?

That gives you the velocity at any point on the ellipse.

But, a formula for the velocity with respect to time may be more difficult! Do you know or can you see why?
 
PeroK said:
An orbit is defined by the mass of the planet and the two axes. From that you can get the velocity at the turning points. Do you know how to do that?

That gives you the velocity at any point on the ellipse.

But, a formula for the velocity with respect to time may be more difficult! Do you know or can you see why?

Well, I don't need it in relation to time but given the above variables. So, if there was a way to find it using the angle relative to the right focus, the angular velocity relative to the right focus, the radius measured from the right focus, and/or the rest of the variables, then that would work.

Could the momentum approach be used?
mr1v1 = mr1v2
r1 * v1 = r2 * v2

Well, I don't know the tangential velocity at any point, only the angular velocity.

Could the energy approach be used?

-GMm/r + 0.5mv^2 = TME

I don't know the total mechanical energy, so I couldn't get v at the locations in which the angle is 0 or 180 to use later.

These were the two approaches I considered when thinking about the problem.
 
Bob Jones said:
I am in the process of making a program that visually shows an elliptical orbit over time.

Bob Jones said:
Well, I don't need it in relation to time

Which is it?
 
PeroK said:
Which is it?

Well, both...

What I meant by the first statement is that it shows the position the satellite it would be with the correct period by adding the angular velocity multiplied by the time it takes the program to loop to that part of the code to the angle. The radius is dependent on the angle. With both the radius and angle, the position can be shown.

So, if I have the tangential velocity with respect to the variables in the first post, that will work.

I hope that I was not unclear with what I said.
 
Have you tried simulating an object falling directly towards a planet? This is a simpler problem and the formula for velocity in terms of distance is easy. But, the formula for distance in terms of time is relatively complicated.

For an elliptical orbit you may have to use a numerical method. For that you would need only an initial position - perigee perhaps - and initial velocity. That would be one approach.
 
PeroK said:
Have you tried simulating an object falling directly towards a planet? This is a simpler problem and the formula for velocity in terms of distance is easy. But, the formula for distance in terms of time is relatively complicated.

For an elliptical orbit you may have to use a numerical method.

It seems I was not being very clear with my intentions. The simulation functions well. The part where I mentioned that I was in progress of building the simulation was referring to how I was going to allow the user to specify the radii and mass of the planet being orbited instead of using hardcoded values as well as show some values like the tangential velocity.

So, the purpose of the tangential velocity is not for using it in the actual simulation of the orbit itself but just to show it in some of the data that the user will be able to view.
 
  • #10
Bob Jones said:
It seems I was not being very clear with my intentions. The simulation functions well. The part where I mentioned that I was in progress of building the simulation was referring to how I was going to allow the user to specify the radii and mass of the planet being orbited instead of using hardcoded values as well as show some values like the tangential velocity.

So, the purpose of the tangential velocity is not for using it in the actual simulation of the orbit itself but just to show it in some of the data that the user will be able to view.

If you can simulate an orbit for a fixed set of values, why not replace those values with variables?
 
  • #11
PeroK said:
If you can simulate an orbit for a fixed set of values, why not replace those values with variables?

Well, they are variables. You can change them in the code. I just meant that I was going to add the ability for the user to change it in the UI.
 
  • #12
Bob Jones said:
Well, they are variables. You can change them in the code. I just meant that I was going to add the ability for the user to change it in the UI.

Well, I've been an idiot. All I needed to do was multiply the angular velocity by the radius to get the tangential velocity.

And I can get total velocity by v = sqrt(GM * (2/r - 1/a))
 
  • #13
What is the difference between tangential velocity and "total velocity"?
 
  • #14
nasu said:
What is the difference between tangential velocity and "total velocity"?

By total velocity, I meant the total relative velocity of the satellite. As for tangential velocity, I meant the component of the total relative velocity that is perpendicular to the radius.

Also, is there a way to end a topic? I found what I was looking for.
 
  • #15
So what would be the direction of the "total velocity"? Is not along the tangent to the trajectory?
 
  • #16
nasu said:
So what would be the direction of the "total velocity"? Is not along the tangent to the trajectory?

From my understanding, the total velocity is pointing slightly away from the ellipse at points in which it is not tangent. This image displays what I mean.
 
  • #17
What is labeled there as "vt" is not along the tangent. What is labeled "v" is along the tangent.
The velocity is always tangent to the trajectory. Or the trajectory can be defined as the curve which is tangent to the velocity in every point.
 
  • Like
Likes   Reactions: Chestermiller
  • #18
nasu said:
What is labeled there as "vt" is not along the tangent. What is labeleb "v" is along the tangent.
The velocity is always tangent to the trajectory. Or the trajectory can be defined as the curve which is tangent to the velocity in every point.

As said above, I meant perpendicular to the radius. You seem to be correct in that I was incorrectly labeling what I was looking for as 'tangential velocity,' so I apologize for that.

Thanks for helping me improve my understanding.
 
  • #19
Yes. I agree with nasu. The tangential velocity and the total velocity are one-and-the-same thing (as they must be).
 
  • #20
Chestermiller said:
Yes. I agree with nasu. The tangential velocity and the total velocity are one-and-the-same thing (as they must be).

Yes, it seems I did not use the correct terminology, and I had a misunderstanding based on what I thought was correct, especially after seeing the last comment to the question here.
 
  • Like
Likes   Reactions: Chestermiller
  • #21
I suppose that in the image (post 16) the labels of the two components mean r -"radial" and t-"transverse". Maybe this is the source of confusion.
The transverse component is given by ## v_t= \omega r## where ## \omega ## is the angular velocity and r is the distance from the rotation center.
 
  • #22
nasu said:
I suppose that in the image (post 16) the labels of the two components mean r -"radial" and t-"transverse". Maybe this is the source of confusion.
The transverse component is given by ## v_t= \omega r## where ## \omega ## is the angular velocity and r is the distance from the rotation center.
While that is probably what was meant or at least what is actually correct, the source of the image says tangential.
 
  • #23
Since we are on the topic of Kepler's laws of planetary motion, I have another question.

One of the assumptions made when using Kepler's laws is that the orbited mass is much greater than the mass orbiting it, which is why it can be assumed to be 'fixed' without much error.

My question is what is the maximum ratio between the orbited mass and orbiting mass where Kepler's law is still reasonable (where you can assume the orbited mass is fixed)? I know the question is subjective, but if anyone could offer up a ballpark estimate with a bit of reasoning, I would highly appreciate it.
 
  • #24
Bob Jones said:
Since we are on the topic of Kepler's laws of planetary motion, I have another question.

One of the assumptions made when using Kepler's laws is that the orbited mass is much greater than the mass orbiting it, which is why it can be assumed to be 'fixed' without much error.

My question is what is the maximum ratio between the orbited mass and orbiting mass where Kepler's law is still reasonable (where you can assume the orbited mass is fixed)? I know the question is subjective, but if anyone could offer up a ballpark estimate with a bit of reasoning, I would highly appreciate it.

The pair orbit their centre of mass, which is offset in proportion to the masses. At what stage do you want to consider this?

The other factor is that it's pointless to consider the motion of the Sun caused by the Earth, as it moves much more significantly in response to Jupiter.
 
  • #25
PeroK said:
The pair orbit their centre of mass, which is offset in proportion to the masses. At what stage do you want to consider this?

The other factor is that it's pointless to consider the motion of the Sun caused by the Earth, as it moves much more significantly in response to Jupiter.
Basically, I wish to know what relative ratios of distances and/or masses can we assume that the effect of the gravitational pull of the satellite on the planet is small enough such that we can assume the planet is fixed with little error.
 
  • #26
Bob Jones said:
Basically, I wish to know what relative ratios of distances and/or masses can we assume that the effect of the gravitational pull of the satellite on the planet is small enough such that we can assume the planet is fixed with little error.

That all depends how you define "little".
 
  • #27
PeroK said:
That all depends how you define "little".
That's a good point. Also, I'll have to consider what values I am considering when I am thinking of the error.

All right. Let's say the distance between the planet and satellite is R. If I wanted the planet to move a maximum of R/1000 from the position where it would be considered 'static' from the view of Kepler's laws of planetary motion, what would be the requirements of the ratio of masses, the semi-minor and semi-major axes, and whatever else can be considered?
 
Last edited:
  • #28
Bob Jones said:
That's a good point. Also, I'll have to consider what values I am considering when I am thinking of the error.

All right. Let's say the distance between the planet and satellite is R. If I wanted the planet to move a maximum of R/1000 from the position where it would be considered 'static' from the view of Kepler's laws of planetary motion, how would I go about checking that?

By Newton's laws, they move in proportion to their masses. So, the large mass must be 1000 larger than the satellite.
 
  • #29
PeroK said:
By Newton's laws, they move in proportion to their masses. So, the large mass must be 1000 larger than the satellite.

Thanks for the help! :)
 

Similar threads

  • · Replies 58 ·
2
Replies
58
Views
4K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 62 ·
3
Replies
62
Views
8K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 3 ·
Replies
3
Views
3K