Proper Motion of Stars: Solving Daniel's Calculation Problem

Daniel P
Messages
3
Reaction score
0
Hi

I have a question about "proper motion of stars".
At this page (http://www.astronexus.com/a-a/motions-long-term) there are a lot of examples how you can measuring the proper motion of stars.

But at "Point 4 - Turn these velocities into Cartesian velocities" i have some different results.

vR = -5.19 Km/sec
vTA = -58.3 Km/sec
vTD = -106.6 Km/sec
α = 14.2612
δ = 19.1873

===========================================================================
should!

vx = ( vR * cos δ * cos α ) - (vTA*sin α ) - (vTD * sin δ * cos α ) = -57.7 Km/sec
vy = ( vR * cos δ * sin α ) + (vTA * cos α ) - (vTD * sin δ sin α ) = +31.5 Km/sec
vz = vR * sin δ + vTD* cos δ = -102.3 Km/sec

===========================================================================

My results: vx = +54.1, xy = +37.5 and xz = -102.4
You can see the results one and two don't agree with my calculation, the result three agrees (depents on the accuracy of "my" data!)

Can anybody help me, please?

Thank you very much,
DANIEL
 
Last edited:
Physics news on Phys.org
Did you see that α is in hours, not degrees? Did you convert it to degrees before taking the sin and cos?
 
Hi

now i have seen that i must convert α = 14.2612 Hours in degrees (=213.915°)! So far so good!

but if i calculate Vx = -5.19*COS(19.1873)*COS(213.915)-(-58.34*SIN(213.915))-(-106.6*SIN(19.1873)*COS(213.915)) = +45.7 instead -57.7 Km/sec.
and if i calculate Vy = -5.19*COS(19.1873)*SIN(213.915)+(-58.34*COS(213.915)-(-106.6*SIN(19.1873)*SIN(213.915)) = -47.7 instead +31.5 Km/sec

i calculate it with Excel!

query: http://www.astronexus.com/a-a/motions-long-term

thank you again, phyzguy!
 
You must have made a mistake. See below:
Code:
from pylab import *
alpha = 14.2612 * 15.0 * pi / 180.0
delta = 19.1873 * pi / 180.0
vR = -5.0 
vTA = -58.3 
vTD = -106.6 
vx = (vR * cos(delta) * cos(alpha)) - (vTA * sin(alpha)) - (vTD * sin(delta) * cos(alpha))
vy = (vR * cos(delta) * sin(alpha)) + (vTA * cos(alpha)) - (vTD * sin(delta) * sin(alpha))
vz = vR * sin(delta) + vTD * cos(delta)
print vx, vy, vz

-57.6862773004 31.464877787 -102.321575814
 
Ohh ok now i have the right result! i forgot the ("Pi/180"):eek:
Tthank you very much!
 
Thread 'Need help understanding this figure on energy levels'
This figure is from "Introduction to Quantum Mechanics" by Griffiths (3rd edition). It is available to download. It is from page 142. I am hoping the usual people on this site will give me a hand understanding what is going on in the figure. After the equation (4.50) it says "It is customary to introduce the principal quantum number, ##n##, which simply orders the allowed energies, starting with 1 for the ground state. (see the figure)" I still don't understand the figure :( Here is...
Thread 'Understanding how to "tack on" the time wiggle factor'
The last problem I posted on QM made it into advanced homework help, that is why I am putting it here. I am sorry for any hassle imposed on the moderators by myself. Part (a) is quite easy. We get $$\sigma_1 = 2\lambda, \mathbf{v}_1 = \begin{pmatrix} 0 \\ 0 \\ 1 \end{pmatrix} \sigma_2 = \lambda, \mathbf{v}_2 = \begin{pmatrix} 1/\sqrt{2} \\ 1/\sqrt{2} \\ 0 \end{pmatrix} \sigma_3 = -\lambda, \mathbf{v}_3 = \begin{pmatrix} 1/\sqrt{2} \\ -1/\sqrt{2} \\ 0 \end{pmatrix} $$ There are two ways...

Similar threads

Replies
5
Views
1K
Back
Top