1
$\begingroup$

I know that right ascension equals to $6^h45^m$ and declination equals to $-16°43'$. I need to calculate local time of sunrise and azimuth of rising point of Sirius on 23 of September for an observator located on the equator. So that means $\phi = 0$. Should I use sunrise equation:

$\cos \omega _{\circ }=-\tan \phi \tan \delta$

or is there another way?

$\endgroup$

2 Answers 2

1
$\begingroup$

The solution is probably something like this:

$s = t + a$, where $t$ is local hour angle and $a$ is right ascension.

$t = \arccos(-tg \phi \times tg \delta)$

$t = \arccos(0) = 90 (=6^h), \ \ $ since $\phi = 0$ (equator)

so:

$s = 6^h45^m + 6^h = 12^h45^m$

then:

$\cos(A) = { \dfrac{\sin(\delta)} {\cos(\phi)} }, \ \ $ where $A$ is azimuth

I got

$A = 105$

$\endgroup$
1
  • $\begingroup$ Nice answer; spherical trig always makes my head spin. I made some small MathJax formatting changes, hope you don't mind, but for the argument -tg \phi * tg \delta ($-tg \phi * tg \delta$) I don't understand what the two terms are exactly or the best way to write them. Is there some subscripting necessary? $t$ is a time, but what is $g$ and how do the terms related to $\delta$ and $\phi$? Also, we usually just put two terms next to each other to indicate multiplication and skip the "*". If absolutely necessary, we use \times (which looks like $\times$). $\endgroup$
    – uhoh
    Commented Jan 22, 2022 at 23:37
1
$\begingroup$

This is from: https://www.celestialprogramming.com/risesetalgorithm.html . It has a Javascript implementation and example you can run for the rise, set, and transit times. Keep in mind that if you use this algorithm for objects that move, like the moon, sun, or planets, you may need to iterate to find an accurate solution.

$ \cos H_0 = \dfrac{\sin h_0 - \sin \varphi \sin \delta }{\cos \varphi \cos \delta} $

If $ cos H_0 $ < -1 or > 1, the point is either always above or below the horizon.

$ T=(jd-2451545.0)/36525.0 $

$ \Theta_0 = 280.46061837+360.98564736629*(jd-2451545.0)+0.000387933T^2 - T^3/38710000.0 $ $ transit = \dfrac{\delta + L - \Theta_0 }{360^{\circ}} $

$ rise = transit - \dfrac{H_0}{360^{\circ}} $

$ set = transit + \dfrac{H_0}{360^{\circ}} $

$ jd $ is the Julian Date for the date in question.

$ \delta $ Declination

$ L $ Longitude

$ \varphi $ Latitude

$ h_0 $ Apparent rise or set angle, -0.8333 for the Sun, +0.125 for the Moon, and -0.5667 for most other objects.

$ \Theta_0 $ Greenwich sidereal time at 0h for the day in question.

$ A_r $ is the azimuth of the object when it rises, and

$ A_s $ is the setting azimuth.

$ \cos A_r = \dfrac{\sin \delta + \sin h_0 \sin \varphi}{\cos h_0 \cos \varphi} $

$ \cos A_s = 360 - A_r $

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .