(20S, 21S): Precession
|
09-16-2018, 11:19 PM
(This post was last modified: 10-09-2018 10:32 PM by Gene.)
Post: #1
|
|||
|
|||
(20S, 21S): Precession
The program PRECESS estimate the new position (right ascension (RA), declination (δ)) of a celestial object given their position in Epoch 2000 with the object’s proper notion.
Estimation formulas: Change in RA and δ before accounting for proper notion ΔRA = m + n * sin RA * tan δ (in seconds) = 3.07496 + 1.33621 * sin RA * tan δ (for epoch 2000) Δδ = (15 * n) * cos RA (in arcseconds) = 20.0431 cos RA (epoch 2000) With m = 3.07496 seconds and n = 1.33621 seconds (for epoch 2000) For other epochs: 1900: m = 3.0731, n = 1.33678 2100: m = 3.07682, n = 1.33564 Then: RA_new = (RA_old + Y * (ΔRA + RA_proper) / 3600 ) / 15 (hours) δ_new = (δ_old + Y * (Δδ + δ_proper) / 3600 (degrees) Y = years from 2000 (or the appropriate epoch) Code: STEP KEY KEY CODES Instructions Store the following values in the registers: R0: Initial RA in HH.MMSSSS format R1: Initial δ in DD.MMSSSS format R2: RA proper notion R3: δ proper notion R4: number of years from 2000. For 2022, store 22. For 1978, store -22. Result: R7: New RA in HH.MMSSSS format, press [ R/S ] to get R8: New δ in DD.MMSSSS format Examples Estimate the RA and δ of Regulus (Alpha Leonis) and Sadalmelik (Alpha Aquarii) for 2020 (Y = 20). (data from Wikipedia) Regulus (Leo the Lion ♌) Epoch 2000: RA = 10h 8m 22.311s, δ = +11° 58’ 0.195” Proper Notion: RA_prop = -0.016582 arcsec/yr, δ_prop = 0.00556 arcsec/yr (arcsec = “) Results: RA_2020 ≈ 10h 8m 26.56557s (shown as 10°08’26.56557”) ‘δ_2020 ≈ +11° 52’ 6.06118” Sadalmelik (Aquarius the Water Bearer ♒) Epoch 2000: RA = 22h 5m 47.03593s, δ = -0° 19’ 11.4568” Proper Notion: RA_prop = 1.216667 * 10^-3 arcsec/yr, δ_prop = -0.00939 arcsec/yr Result: RA_2020 ≈ 22h 5m 51.14225s δ ≈ -0° 13’ 19.5407” Convert mas/yr to arcsec/yr: For RA: (x/15) /1000 For δ: x/1000 Sources: Jones, Aubrey. Mathematical Astronomy with a Pocket Calculator John Wiley & Sons: New York. Printed in Great Britain. 1978. ISBN 0 470 26552 3 Meeus, Jean. Astronomical Algorithms William-Bell, Inc. Richmond, VA 1991. ISBN 0-943396-35-2 Blog entry: http://edspi31415.blogspot.com/2018/09/h...ssion.html |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)