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!
 
Hi, I had an exam and I completely messed up a problem. Especially one part which was necessary for the rest of the problem. Basically, I have a wormhole metric: $$(ds)^2 = -(dt)^2 + (dr)^2 + (r^2 + b^2)( (d\theta)^2 + sin^2 \theta (d\phi)^2 )$$ Where ##b=1## with an orbit only in the equatorial plane. We also know from the question that the orbit must satisfy this relationship: $$\varepsilon = \frac{1}{2} (\frac{dr}{d\tau})^2 + V_{eff}(r)$$ Ultimately, I was tasked to find the initial...
The value of H equals ## 10^{3}## in natural units, According to : https://en.wikipedia.org/wiki/Natural_units, ## t \sim 10^{-21} sec = 10^{21} Hz ##, and since ## \text{GeV} \sim 10^{24} \text{Hz } ##, ## GeV \sim 10^{24} \times 10^{-21} = 10^3 ## in natural units. So is this conversion correct? Also in the above formula, can I convert H to that natural units , since it’s a constant, while keeping k in Hz ?

Similar threads

Replies
5
Views
1K
Back
Top