libTheSky
Routines to compute sky positions of Sun, Moon, planets and more
All Namespaces Files Functions Variables Pages
stars.f90
Go to the documentation of this file.
1!> \file stars.f90 Star procedures for libTheSky
2
3
4! Copyright (c) 2002-2025 Marc van der Sluys - Nikhef/Utrecht University - marc.vandersluys.nl
5!
6! This file is part of the libTheSky package,
7! see: https://libthesky.sf.net/
8!
9! This is free software: you can redistribute it and/or modify it under the terms of the
10! European Union Public Licence 1.2 (EUPL 1.2).
11!
12! This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13! without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14! See the EU Public Licence for more details.
15!
16! You should have received a copy of the European Union Public Licence along with this code.
17! If not, see <https://www.eupl.eu/1.2/en/>.
18
19
20!***********************************************************************************************************************************
21!> \brief Procedures for stars
22
24 implicit none
25 save
26
27contains
28
29 !*********************************************************************************************************************************
30 !> \brief Calculate the apparent position of selected bright stars close to the ecliptic, correcting for proper motion,
31 !! precession, nutation and aberration
32 !!
33 !! \param jd Julian day
34
35 subroutine calcstars(jd)
36 use sufr_kinds, only: double
37 use sufr_constants, only: pi, ras2r, jd2000
38
39 use thesky_nutation, only: nutation
43
44 implicit none
45 real(double), intent(in) :: jd
46
47 integer :: i
48 real(double) :: t,dpsi,eps0,deps,eps, ra(nstars),dec(nstars),pma(nstars),pmd(nstars)
49 real(double) :: da1(nstars),dd1(nstars),da2(nstars),dd2(nstars), l(nstars),b(nstars)
50
51
52 ! Data shared in module stardata - Add 11 Pleiades members: nstars 6->17:
53 starnames = (/'Pleiades ','Aldebaran ','Pollux ','Regulus ','Spica ','Antares ','16 Tau ','Electra ', &
54 '18 Tau ','Taygete ','Maia ','21 Tau ','22 Tau ','Merope ','Alcyone ','Atlas ','28 Tau '/)
55 starnamesnl = (/'de Pleiaden','Aldebaran ','Pollux ','Regulus ','Spica ','Antares ','16 Tau ', &
56 'Electra ','18 Tau ','Taygete ','Maia ','21 Tau ','22 Tau ','Merope ','Alcyone ', &
57 'Atlas ','28 Tau '/)
58 starmags = (/1.6,0.85,1.14,1.35,0.98,0.96,5.46,3.70,5.64,4.30,3.87,5.76,6.43,4.18,2.87,3.63,5.09/)
59 starrads = (/110.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0./)*60*ras2r
60 starcons = (/'Taurus ','Taurus ','Gemini ','Leo ','Virgo ','Scorpio','Taurus ','Taurus ','Taurus ','Taurus ','Taurus ', &
61 'Taurus ','Taurus ','Taurus ','Taurus ','Taurus ','Taurus '/)
62 starconsnl = (/'Stier ','Stier ','Tweelingen','Leeuw ','Maagd ','Schorpioen','Stier ','Stier ', &
63 'Stier ','Stier ','Stier ','Stier ','Stier ','Stier ','Stier ','Stier ','Stier '/)
64 starconsabr = (/'Tau','Tau','Gem','Leo','Vir','Sco','Tau','Tau','Tau','Tau','Tau','Tau','Tau','Tau','Tau','Tau','Tau'/)
65
66
67 ! RA & Dec in Rad, FK5 2000.0/2000.0:
68 ra = (/0.99047d0,1.2039309324d0,2.0303233601d0,2.6545229429d0,3.5133171901d0,4.3171054224d0,0.980890d0,0.981202d0,0.982453d0, &
69 0.982657d0,0.985355d0,0.985704d0,0.986322d0,0.987536d0,0.992591d0,0.999906d0,1.000015d0/)
70 dec = (/0.42092d0,0.2881416664d0,0.4891494426d0,0.2088671634d0,-0.1948018168d0,-0.4613254715d0,0.423931d0,0.420857d0, &
71 0.433525d0,0.427034d0,0.425298d0,0.428561d0,0.428095d0,0.417977d0,0.420712d0,0.419810d0,0.421264d0/)
72
73
74 ! Proper motion in mas/yr->rad/yr:
75 pma = (/0.,62.78,-625.69,-249.40,-42.50,-10.16,0.011,0.019,0.020,0.018,0.020,0.011,0.014,0.021,0.019,0.018,0.013/)/6.48d8*pi
76 pmd = (/0.,-189.35,-45.96,4.91,-31.73,-23.21,-0.046,-0.046,-0.047,-0.045,-0.046,-0.042,-0.044,-0.045,-0.046,-0.047,-0.050/) &
77 /6.48d8*pi
78
79
80 ! PM = change of epoch:
81 t = (jd-jd2000)/365.250d0 ! Julian years since 2000.0
82 ra = ra + pma*t
83 dec = dec + pmd*t
84
85
86 ! Precession = change of equinox (from J2000.0 to EoD):
87 do i=1,nstars
88 call precess_eq(jd2000,jd,ra(i),dec(i))
89 end do
90
91
92 ! Nutation, 1st order, Meeus Eq.23.1:
93 t = (jd-jd2000)/365250.d0 ! Julian millennia since 2000.0
94 call nutation(t, dpsi,eps0,deps)
95 eps = eps0 + deps
96
97 do i=1,nstars
98 da1(i) = (cos(eps0)+sin(eps0)*sin(ra(i))*tan(dec(i)))*dpsi - (cos(ra(i))*tan(dec(i)))*deps
99 dd1(i) = (sin(eps0)*cos(ra(i)))*dpsi + sin(ra(i))*deps
100 end do
101
102
103 ! Aberration in ra,dec:
104 do i=1,nstars
105 call aberration_eq(jd, ra(i),dec(i), da2(i), dd2(i), eps0=eps0)
106 end do
107
108 ra = ra + da1 + da2
109 dec = dec + dd1 + dd2
110
111
112 ! Calculate ecliptic coordinates l,b:
113 do i=1,nstars
114 call eq_2_ecl(ra(i),dec(i),eps,l(i),b(i))
115 end do
116
117
118 ! Transport to module stardata:
119 starra = ra
120 stardec = dec
121 starl = l
122 starb = b
123
124 end subroutine calcstars
125 !*********************************************************************************************************************************
126
127
128
129
130
131end module thesky_stars
132!***********************************************************************************************************************************
Procedures for coordinates.
subroutine eq_2_ecl(ra, dec, eps, l, b)
Convert (geocentric) spherical equatorial coordinates RA, Dec (and eps) to spherical ecliptical coord...
subroutine aberration_eq(jd, ra, dec, dra, ddec, eps0)
Correct equatorial coordinates for annual aberration - moderate accuracy, use for stars.
subroutine precess_eq(jd1, jd2, a1, d1)
Compute the precession of the equinoxes in equatorial coordinates, from jd1 to jd2.
Procedures for nutation.
Definition nutation.f90:25
subroutine nutation(t, dpsi, eps0, deps)
Calculate nutation - cheap routine from Meeus - as well as the mean obliquity of the ecliptic.
Definition nutation.f90:46
Star and basic constellation data.
Definition modules.f90:343
character, dimension(10) starconsnl
Dutch constellation names for the bright, ecliptical stars.
Definition modules.f90:363
real(double), dimension(nstars) starb
Ecliptic latitudes of the bright, ecliptical stars.
Definition modules.f90:355
real(double), dimension(nstars) starra
Right ascensions of the bright, ecliptical stars.
Definition modules.f90:352
character, dimension(10) starcons
Latin/English constellation names for the bright, ecliptical stars.
Definition modules.f90:362
real, dimension(nstars) starmags
Magnitudes of the bright, ecliptical stars.
Definition modules.f90:357
real, dimension(nstars) starrads
Radii of the bright, ecliptical stars (only non-zero for Pleiades)
Definition modules.f90:358
real(double), dimension(nstars) starl
Ecliptic longitudes of the bright, ecliptical stars.
Definition modules.f90:354
real(double), dimension(nstars) stardec
Declinations of the bright, ecliptical stars.
Definition modules.f90:353
character, dimension(10) starnames
English names of the bright, ecliptical stars.
Definition modules.f90:360
character, dimension(3) starconsabr
Constellation abbreviations for the bright, ecliptical stars.
Definition modules.f90:364
integer, parameter nstars
Number of bright stars close to the ecliptic (including Pleiades)
Definition modules.f90:350
character, dimension(11) starnamesnl
Dutch names of the bright, ecliptical stars.
Definition modules.f90:361
Procedures for stars.
Definition stars.f90:23
subroutine calcstars(jd)
Calculate the apparent position of selected bright stars close to the ecliptic, correcting for proper...
Definition stars.f90:36