forked from Stellarium/stellarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ch_astronomical_phenomena.tex
1319 lines (1116 loc) · 64.6 KB
/
ch_astronomical_phenomena.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%\chapterimage{chapter-t4-bg} % Chapter heading image (Now given in Master document)
%% Part of Stellarium User Guide
%% 2015-12 wiki->LaTeX
%% 2016-04-05 GZ fixed Grammar/spelling, a few enhancements, updated labels.
\chapter{Astronomical Phenomena}
\chapterauthor*{Barry Gerdes, with additions by Georg Zotti}
\label{ch:Phenomena}
This chapter focuses on the observational side of astronomy --- what we
see when we look at the sky.
\section{The Sun}
\label{sec:Phenomena:sun}
Without a doubt, the most prominent object in the sky is the Sun. The
Sun is so bright that when it is in the sky, its light is scattered by
the atmosphere to such an extent that almost all other objects in the
sky are rendered invisible.
The Sun is a star like many others but it is much closer to the Earth
at approximately 150 million kilometres (a distance also called
1~Astronomical Unit). The next nearest star, Proxima Centauri is
approximately 260,000 times further away from us than the Sun! The Sun
is also known by its Latin name, \emph{Sol}.
Over the course of a year, the Sun appears to move round the celestial
sphere in a great circle known as the \emph{ecliptic}. Stellarium can
draw the ecliptic on the sky. To toggle drawing of the ecliptic, press
the \key{,} key.
\emph{WARNING: Looking at the Sun with even the smallest telescope or
binoculars can permanently damage the eye. Never look at the Sun
without using the proper filters attached to the front end
(objective lens) of your instrument! Never use screw-in ocular
filters, they may break in the heat and expose your eye to damaging
amounts of energy. By far the safest way to observe the Sun is to
look at it on a computer screen, courtesy of Stellarium!}
\subsection{Twilight}
\label{sec:Phenomena:sun:twilight}
The sunlight is scattered in Earth's atmosphere even if the Sun is
below the horizon. The period after sunset when the Sun is higher than
$-6°$ is called \indexterm[twilight, civil]{civil twilight}. The sky
is generally bright enough for outdoor activity or reading the
newspaper.
As time progresses, the first stars will appear. The phase where the
Sun is between $-6°$ and $-12°$ below the (mathematical) horizon is
called \indexterm[twilight, nautical]{nautical twilight}: before the
invention of satellite navigation, celestial navigation was used to
find a ship's position on the oceans. This required that it was still
bright enough so that the horizon line was visible, but already dark
enough to see enough stars to clearly identify them and measure the
altitude of a few of them. (See also section \ref{sec:plugins:NavigationalStars}.)
The twilight phase when the Sun is between $-12°$ and $-18°$ is called
\indexterm[twilight, astronomical]{astronomical twilight}. Only the
western horizon shows some brightening, but else the natural sky is
``almost'' as dark as it can get.
In the morning the game is reversed. Dawn starts with astronomical
twilight, progresses to nautical and civil twilight, and sunrise
ends the night.
In Stellarium, you can \newFeature{0.21.2} set the time when the Sun
reaches a configured altitude. See
section~\ref{sec:gui:help:hotkeys:example} about how to configure the
program.
\section{Stars}
\label{sec:Phenomena:stars}
The Sun is just one of billions of stars. Even though many stars have a
much greater absolute magnitude than the Sun (they give out more light),
they have an enormously smaller apparent magnitude due to their large
distance. Stars have a variety of forms --- different sizes,
brightnesses, temperatures, and colours. Measuring the position,
distance and attributes of the stars is known as \emph{astrometry}, and
is a major part of observational astronomy.
\subsection{Multiple Star Systems}
\label{sec:Phenomena:multipleStars}
Many stars have stellar companions. As many as six stars can be found
orbiting one-another in close associations known as
\emph{multiple star systems} --- \emph{binary systems} being the most
common with two stars. Multiple star systems are more common than
solitary stars, putting our Sun in the minority group.
Sometimes multiple stars orbit each other in a way that means one will
periodically eclipse the other. These are \emph{eclipsing binaries} or
\emph{Algol variables}.
\subsubsection{Optical Doubles \& Optical Multiples}
\label{sec:Phenomena:multipleStars:optical}
Sometimes two or more stars appear to be very close to one another in
the sky, but in fact have great separation, being aligned from the point
of view of the observer but of different distances. Such pairings are
known as \emph{optical doubles} and \emph{optical multiples}.
\subsection{Constellations}
\label{sec:Phenomena:Constellations}
The constellations are groupings of stars that are visually close to one
another in the sky. The actual groupings are fairly arbitrary ---
different cultures have grouped stars together into different
constellations. In many cultures, the various constellations have been
associated with mythological entities. As such people have often
projected pictures into the skies as can be seen in figure~\ref{fig:ursamajor} which shows the constellation of Ursa Major. On the
left is a picture with the image of the mythical Great Bear, on the
right only a line-art version (or \emph{stick figure}) is shown. The seven bright stars of Ursa
Major are widely recognised, known variously as ``the plough'', the
``pan-handle'', and the ``big dipper''. This sub-grouping is known as an
\emph{asterism} --- a distinct grouping of stars. On the right, the
picture of the bear has been removed and only a constellation diagram
remains.
\begin{figure}[tbp]
\centering\includegraphics[scale=0.8]{uma.png}
\caption{Ursa Major}
\label{fig:ursamajor}
\end{figure}
Stellarium can draw both constellation diagrams and artistic
representations of the constellations. Multiple sky cultures are
supported: Western, Polynesian, Egyptian, Chinese, and several other sky cultures are
available, although at time of writing the non-Western constellations
are not complete, and as yet there are no artistic representations of
these sky-cultures.
Aside from historical and mythological value, to the modern astronomer
the constellations provide a way to segment the sky for the purposes
of describing locations of objects, indeed one of the first tasks for
an amateur observer is \emph{learning the constellations} --- the
process of becoming familiar with the relative positions of the
constellations, at what time of year a constellation is visible, and
in which constellations observationally interesting objects reside.
The International Astronomical Union\index{IAU} has adopted 88 ``Western''
constellations as a common system for segmenting the sky (Table~\ref{tab:IAUConstellations}). They are
based on Greek/Roman mythology, but with several additions from
Renaissance and later centuries. As such some formalisation has been
adopted, each constellation having a \emph{proper name}, which is in
Latin, and a three letter abbreviation of that name. For example,
Ursa Major has the abbreviation UMa. Also, the ``Western''
constellation have clearly defined boundaries \citep{Delporte:1930}, which you can draw in
Stellarium when you press the \key{B} key\footnote{These boundaries or
borders have been drawn using star maps from 1875. Due to the effect
of \emph{precession}, these borders are no longer parallel to
today's coordinates.}. The IAU constellation a selected object is placed in
is also available in the object information data \citep{1987PASP...99..695R},
regardless of the currently active sky culture. On the other hand, the shapes
of mythological figures, and also stick figures, have not been canonized, so
you will find deviations between Stellarium and printed atlases.
\begin{table}[p]
\footnotesize\centering
\begin{tabular}{lll||lll}
\toprule
\emph{Abbr.} & \emph{Name} & \emph{Genitive} & \emph{Abbr.} & \emph{Name} & \emph{Genitive} \\\midrule
And & Andromeda & Andromedae & Lac & Lacerta & Lacertae \\
Ant & Antlia & Antliae & Leo & Leo & Leonis \\
Aps & Apus & Apodis & LMi & Leo Minor & Leonis Minoris \\
Aqr & Aquarius & Aquarii & Lep & Lepus & Leporis \\
Aql & Aquila & Aquilae & Lib & Libra & Librae \\
% & % \\
Ara & Ara & Arae & Lup & Lupus & Lupi \\
Ari & Aries & Arietis & Lyn & Lynx & Lyncis \\
Aur & Auriga & Aurigae & Lyr & Lyra & Lyrae \\
Boo & Bootes & Bootis & Men & Mensa & Mensae \\
Cae & Caelum & Caeli & Mic & Microscopium & Microscopii \\
% & % \\
Cam & Camelopardalis & Camelopardalis & Mon & Monoceros & Monocerotis \\
Cnc & Cancer & Cancri & Mus & Musca & Muscae \\
Cvn & Canes Venatici & Canum Venaticorum & Nor & Norma & Normae \\
CMa & Canis Maior & Canis Maioris & Oct & Octans & Octantis \\
CMi & Canis Minor & Canis Minoris & Oph & Ophiuchus & Ophiuchi \\
% & % \\
Cap & Capricornus & Capricorni & Ori & Orion & Orionis \\
Car & Carina & Carinae & Pav & Pavo & Pavonis \\
Cas & Cassiopeia & Cassiopeiae & Peg & Pegasus & Pegasi \\
Cen & Centaurus & Centauri & Per & Perseus & Persei \\
Cep & Cepheus & Cephei & Phe & Phoenix & Phoenicis \\
% & % \\
Cet & Cetus & Ceti & Pic & Pictor & Pictoris \\
Cha & Chamaeleon & Chamaeleonis & Psc & Pisces & Piscium \\
Cir & Circinus & Circini & PsA & Piscis Austrinus & Piscis Austrini \\
Col & Columba & Columbae & Pup & Puppis & Puppis \\
Com & Coma Berenices & Comae Berenicis & Pyx & Pyxis & Pyxidis \\
% & % \\
CrA & Corona Australis & Coronae Australis & Ret & Reticulum & Reticuli \\
CrB & Corona Borealis & Coronae Borealis & Sge & Sagitta & Sagittae \\
Crt & Crater & Crateris & Sgr & Sagittarius & Sagittarii \\
Crv & Corvus & Corvi & Sco & Scorpius & Scorpii \\
Cru & Crux & Crucis & Scl & Sculptor & Sculptoris \\
% & % \\
Cyg & Cygnus & Cygni & Sct & Scutum & Scuti \\
Del & Delphinus & Delphini & Ser & Serpens & Serpentis \\
Dor & Dorado & Doradus & Sex & Sextans & Sextantis \\
Dra & Draco & Draconis & Tau & Taurus & Tauri \\
Equ & Equuleus & Equulei & Tel & Telescopium & Telescopii \\
% & % \\
Eri & Eridanus & Eridani & Tri & Triangulum & Trianguli \\
For & Fornax & Fornacis & TrA & Triangulum Australe & Trianguli Australis \\
Gem & Gemini & Geminorum & Tuc & Tucana & Tucanae \\
Gru & Grus & Gruis & UMa & Ursa Major & Ursae Majoris \\
Her & Hercules & Herculis & UMi & Ursa Minor & Ursae Minoris \\
% & % \\
Hor & Horologium & Horologii & Vel & Vela & Velae \\
Hya & Hydra & Hydrae & Vir & Virgo & Virginis \\
Hyi & Hydrus & Hydri & Vol & Volans & Volantis \\
Ind & Indus & Indi & Vul & Vulpecula & Vulpeculae \\
\bottomrule
\end{tabular}
\caption{The official 88 IAU constellation names and abbreviations}
\label{tab:IAUConstellations}
\end{table}
\subsection{Star Names}
\label{sec:Phenomena:StarNames}
The brighter stars often have one or more \emph{common
names} relating to mythical characters from the various traditions. For
example the brightest star in the sky, Sirius is also known as The Dog
Star (the name Canis Major --- the constellation Sirius is found in ---
is Latin for ``The Great Dog'').
Most bright names have been given names in antiquity. \name{Ptolemy}'s most
influential book, the \emph{Syntaxis}, was translated to the Arab
language in the age of early Muslim scientists. When, centuries later,
the translation, called \emph{Almagest}, was re-introduced to the
re-awakening European science, those names, which often only designated
the position of the star within the figure, were taken from the books,
often misspelled, and used henceforth as proper names.
A few more proper names have been added later, sometimes dedicatory
names added by court astronomers into their maps. There are also 3
stars named after the victims of the Apollo~1 disaster in 1967.
Today, the International Astronomical Union (IAU)\index{IAU} is the only
scientifically accepted authority which can give proper names to
stars. Some companies offer a paid name service for commemoration or
dedication of a star for deceased relatives or such, but all you get
here is a piece of paper with coordinates of (usually) an unremarkably
dim star only visible in a telescope, and a name to remember, stored
(at best) in the company's database.
There are several more formal naming conventions that are in common use.
\subsubsection{Bayer Designation}
\label{sec:Phenomena:StarNames:Bayer}
The German astronomer \name[Johann]{Bayer} (1572--1625) devised one
such system for his atlas, the \emph{Uranographia}, first published in
1603. His scheme names the stars according to the constellation in
which they lie prefixed by a lower case Greek letter (see
Tab.~\ref{tab:Phenomena:StarNames:BayerLetters}), starting at $\alpha$
for (usually) the brightest star in the constellation and proceeding
with $\beta, \gamma, \ldots$ in descending order of apparent
magnitude. For example, such a \emph{Bayer Designation} for Sirius is
``$\alpha$ Canis Majoris'' (note that the genitive form of the
constellation name is used, refer to Table~\ref{tab:IAUConstellations};
today also the short form $\alpha$ CMa is in use).
There are some exceptions to the descending magnitude
ordering, and some multiple stars (both real and optical) are named
with a numerical superscript after the Greek letter, e.g.\ $\pi^1$...
$\pi^6$ Orionis.
\begin{table}[htb]
\centering
\begin{tabular}{>{$}c<{$}l>{$}c<{$}l>{$}c<{$}l>{$}c<{$}l}
\toprule
\alpha & alpha & \eta & eta & \nu & nu & \tau & tau \\
\beta & beta & \theta & theta & \xi & xi & \upsilon & upsilon \\
\gamma & gamma & \iota & iota & \omicron & omicron & \varphi & phi \\
\delta & delta & \kappa & kappa & \pi & pi & \chi & chi \\
\epsilon & epsilon & \lambda & lambda & \rho & rho & \psi & psi \\
\zeta & zeta & \mu & mu & \sigma & sigma & \omega & omega \\
\bottomrule
\end{tabular}
\caption{The Greek alphabet used by Bayer}
\label{tab:Phenomena:StarNames:BayerLetters}
\end{table}
\subsubsection{Flamsteed Designation}
\label{sec:Phenomena:StarNames:Flamsteed}
English astronomer \name[John]{Flamsteed} (1646--1719) numbered stars in each
constellation in order of increasing right ascension followed by the genitive
form of the constellation name, for example ``61 Cygni'' (or short: ``61 Cyg'').
\subsubsection{Hipparcos}
\label{sec:Phenomena:StarNames:Hipparcos}
Hipparcos (for High Precision Parallax Collecting Satellite) was an
astrometry mission of the European Space Agency (ESA) dedicated to the
measurement of stellar parallax and the proper motions of stars. The
project was named in honour of the Greek astronomer \name{Hipparchus}.
Ideas for such a mission dated from 1967, with the mission accepted by
ESA in 1980. The satellite was launched by an Ariane 4 on 8 August 1989.
The original goal was to place the satellite in a geostationary orbit
above the earth, however a booster rocket failure resulted in a highly
elliptical orbit from 500 to 35,800~km (310 to 22,240 miles) altitude. Despite this
difficulty, all of the scientific goals were accomplished.
Communications were terminated on 15 August 1993.
The program was divided in two parts: the \emph{Hipparcos experiment}
whose goal was to measure the five astrometric parameters of some
120,000 stars to a precision of some 2 to 4 milli arc-seconds and the
\emph{Tycho experiment}, whose goal was the measurement of the
astrometric and two-colour photometric properties of some 400,000
additional stars to a somewhat lower precision.
The final Hipparcos Catalogue (120,000 stars with 1 milli arc-second
level astrometry) and the final Tycho Catalogue (more than one million
stars with 20-30 milli arc-second astrometry and two-colour photometry)
were completed in August 1996. The catalogues were published by ESA in
June 1997. The Hipparcos and Tycho data have been used to create the
Millennium Star Atlas: an all-sky atlas of one million stars to visual
magnitude 11, from the Hipparcos and Tycho Catalogues and 10,000
non-stellar objects included to complement the catalogue data.
\begin{figure}[htb]
\centering\includegraphics[width=0.75\textwidth]{names.png}
\caption{Star Names and Data}
\label{fig:starnames}
\end{figure}
There were questions over whether Hipparcos has a systematic error of
about 1 milli arc-second in at least some parts of the sky. The value
determined by Hipparcos for the distance to the Pleiades is about 10\%
less than the value obtained by some other methods. By early 2004, the
controversy remained unresolved.
Stellarium uses the Hipparcos Catalogue for star data, as well as having
traditional names for many of the brighter stars. The stars tab of the
search window allows for searching based on a Hipparcos Catalogue number
(as well as traditional names), e.g. the star Sadalmelik in the
constellation of Aquarius can be found by searching for the name, or
its Hipparcos number, 109074.
%
%\subsubsection{Catalogues}
%\label{sec:Phenomena:StarNames:Catalogues}
%
%As described in section~\ref{ch:Catalogues}, various star
%catalogues assign numbers to stars, which are often used in addition
%to other names. Stellarium gets its star data from the Hipparcos
%catalogue, and as such stars in Stellarium are generally referred to
%with their Hipparcos number,
%e.g.\ ``HIP~62223''.
Figure~\ref{fig:starnames} shows the information
Stellarium displays when a star is selected. At the top, the common
name, Bayer/Flamsteed designations and Hipparcos number are shown,
followed by the RA/Dec coordinates, apparent magnitude, distance and
other data.
\subsection{Spectral Type \& Luminosity Class}
\label{sec:Phenomena:SpectralTypeLuminosityClass}
Stars have many different colours. Seen with the naked eye most appear
to be white, but this is due to the response of the eye --- at low
light levels the eye is not sensitive to colour. Typically the unaided
eye can start to see differences in colour only for stars that have
apparent magnitude brighter than 1. Betelgeuse, for example has a
distinctly red tinge to it, and Sirius appears to be blue, while Vega
is the prototype ``white'' star.
By splitting the light from a star using a prism attached to a telescope
and measuring the relative intensities of the colours of light the star
emits --- the \indexterm{spectrum} --- a great deal of interesting information
can be discovered about a star including its surface temperature, and
the presence of various elements in its atmosphere.
\begin{table}[tb]
\centering\small
\begin{tabular}{lll}
\toprule
\emph{Spectral Type} & \emph{Surface Temperature (K)} & \emph{Star Colour}\\\midrule
O & 28,000---50,000 & Blue\\
B & 10,000---28,000 & Blue-white\\
A & 7,500---10,000 & White-blue\\
F & 6,000---7,500 & Yellow-white\\
G & 4,900---6,000 & Yellow\\
K & 3,500---4,900 & Orange\\
M & 2,000---3,500 & Red\\
\bottomrule
\end{tabular}
\caption{Spectral Types}
\label{tab:spectraltype}
\end{table}
Astronomers groups stars with similar spectra into \indexterm{spectral
types}, denoted by one of the following letters: O, B, A, F, G, K
and M.\footnote{The classic mnemonic for students of astrophysics
says: ``Oh, Be A Fine Girl, Kiss Me''.} Type O stars have a high
surface temperature (up to around 50,000~K) while the at other end of
the scale, the M stars are red and have a much cooler surface
temperature, typically 3000~K. The Sun is a type G star with a surface
temperature of around 5,500~K. Spectral types may be further
sub-divided using a numerical suffix ranging from 0-9 where 0 is the
hottest and 9 is the coolest. Table~\ref{tab:spectraltype} shows the
details of the various spectral types.
For about 90\% of stars, the absolute magnitude increases as the
spectral type tends to the O (hot) end of the scale. Thus the whiter,
hotter stars tend to have a greater luminosity. These stars are called
\indexterm{main sequence} stars. There are however a number of stars that
have spectral type at the M end of the scale, and yet they have a high
absolute magnitude. These stars are close to the ends of their lives
and have a very large size, and consequently are known as
\indexterm{giants}, the largest of these known as \indexterm{super-giants}.
There are also stars whose absolute magnitude is very low regardless
of the spectral class. These are known as \indexterm{dwarf stars}, among
them \indexterm{white dwarfs} (dying stars) and \indexterm{brown dwarfs}
(``failed stars'').
The \indexterm{luminosity class} is an indication of the type of star ---
whether it is main sequence, a giant or a dwarf. Luminosity classes are
denoted by a number in roman numerals, as described in table~\ref{tab:luminosityclass}.
\begin{table}[tb]
\centering\small
\begin{tabular}{ll}
\toprule
\emph{Luminosity class} & \emph{Description}\\\midrule
Ia, Ib & Super-giants\\
II & Bright giants\\
III & Normal giants\\
IV & Sub-giants\\
V & Main sequence\\
VI & Sub-dwarfs\\
VII & White-dwarfs\\
\bottomrule
\end{tabular}
\caption{Luminosity Classification}
\label{tab:luminosityclass}
\end{table}
Plotting the luminosity of stars against their spectral type/surface
temperature gives a diagram called a Hertzsprung-Russell diagram
(after the two astronomers \name[Ejnar]{Hertzsprung} (1873--1967) and
\name[Henry Norris]{Russell} (1877--1957) who devised it). A slight variation of this is shown
in figure~\ref{fig:colourmag} (which is technically a colour/magnitude
plot).
\begin{figure}[tbp]
\centering\includegraphics[width=\textwidth]{colour_magnitude_graph.png}
\caption{Hertzsprung-Russell Diagram}
\label{fig:colourmag}
\end{figure}
\subsection{Variable Stars}
\label{sec:Phenomena:variableStars}
Most stars are of nearly constant luminosity. The Sun is a good example
of one which goes through relatively little variation in brightness
(usually about 0.1\% over an 11 year solar cycle). Many stars, however,
undergo significant variations in luminosity, and these are known as
\emph{variable stars}. There are many types of variable stars falling
into two categories, \emph{intrinsic} and \emph{extrinsic}.
Intrinsic variables are stars which have intrinsic variations in
brightness, that is, the star itself gets brighter and dimmer. There
are several types of intrinsic variables, probably the best-known and
most important of which is the Cepheid variable whose luminosity is
related to the period with which its brightness varies. Since the
luminosity (and therefore absolute magnitude) can be calculated,
Cepheid variables may be used to determine the distance of the star
when the annual parallax is too small to be a reliable guide. This is
especially welcome because they are giant stars, and so they are even
visible in neighboring galaxies.
Extrinsic variables are stars of constant brightness that show changes
in brightness as seen from the Earth. These include rotating variables,
stars whose apparent brightness change due to rotation, and eclipsing
binaries.
Stellarium's catalogs include many kinds variable stars.
See section~\ref{sec:StarCatalogues:VariableStars} for more details.
\section{Our Moon}
\label{sec:Moon}
The Moon is the large satellite which orbits the Earth approximately
every 28 days. It is seen as a large bright disc in the early night sky
that rises later each day and changes shape into a crescent until it
disappears near the Sun. After this it rises during the day then gets
larger until it again becomes a large bright disc again.
\subsection{Phases of the Moon}
\label{sec:Moon:Phases}
As the moon moves round its orbit, the amount that is illuminated by the
sun as seen from a vantage point on Earth changes. The result of this is
that approximately once per orbit, the moon's face gradually changes
from being totally in shadow to being fully illuminated and back to
being in shadow again. This process is divided up into various phases as
described in table~\ref{tab:moonphases}.
\begin{table}[tb]
\small
\begin{tabularx}{\textwidth}{l|X}
\toprule
New Moon & The moon's disc is fully in shadow, or there is just a slither of illuminated surface on the edge.\\
Waxing Crescent& Less than half the disc is illuminated, but more is illuminated each night.\\
First Quarter & Approximately half the disc is illuminated, and increasing each night.\\
Waxing Gibbous & More than half of the disc is illuminated, and still increasing each night.\\
Full Moon & The whole disc of the moon is illuminated.\\
Waning Gibbous & More than half of the disc is illuminated, but the amount gets smaller each night.\\
Last Quarter & Approximately half the disc is illuminated, but this gets less each night.\\
Waning Crescent& Less than half the disc of the moon is illuminated, and this gets less each night.\\
\bottomrule
\end{tabularx}
\caption{Lunar Phases}
\label{tab:moonphases}
\end{table}
\subsection{The Lunar Magnitude}
\label{sec:Moon:magnitude}
The eastern half of the Moon has more dark \emph{maria}, therefore
careful studies \citep{Russell:1916} have shown that in the waxing
phases the Moon is slightly brighter than in the waning phase of the
same degree of illumination.
Around Full Moon, the Moon shows an \indexterm{opposition surge}, a
strong increase in brightness which \citet{Krisciunas-Schaefer:1991}
describe as a 35\% increase in luminous flux over the curve
extrapolated from measurements when the phase angle $|\alpha|<7^\circ$.
Of course, just at Full Moon when the opposition is near-perfect, the
Moon will also move through Earth's shadow during a Lunar eclipse.
The Moon is a large reflective body which reflects not only sunlight
which directly hits it, but also sunlight reflected from Earth to the
Moon \citep{Agrawal:2016}. This \indexterm{earthshine}, also known as
\indexterm{ashen glow}, is brightest when Earth is most strongly
illuminated for the Moon, i.e., when the Moon as seen from Earth shows
only a thin crescent. Therefore in these days around the New Moon, the
thin crescent can often be seen complemented into a softly glowing
full disk. \newFeature{0.21.0} Stellarium's estimate for visual
magnitude is based on the mentioned references and a new standard
value for the solar illumination constant of 133.1~klx \citep{Ashdown:2019}.
\section{The Major Planets}
\label{sec:Planets}
Unlike the stars whose relative positions remain more or less constant,
the planets seem to move across the sky over time (the word ``planet''
comes from the Greek for ``wanderer''). The planets are siblings of the Earth,
massive bodies that are in orbit around the Sun. Until 2006 there was no
formal definition of a planet, leading to some confusion about the
classification for some bodies traditionally regarded as being planets, but
which didn't seem to fit with the others.
In 2006 the International Astronomical Union (IAU)\index{IAU} defined a planet as a
celestial body that, within the Solar System:
\begin{enumerate}
\item
is in orbit around the Sun
\item
has sufficient mass for its self-gravity to overcome rigid body forces
so that it assumes a hydrostatic equilibrium (nearly round) shape; and
\item
has cleared the neighbourhood around its orbit
\end{enumerate}
or within another system:
\begin{enumerate}
\item
is in orbit around a star or stellar remnants
\item
has a mass below the limiting mass for thermonuclear fusion of
deuterium; and
\item
is above the minimum mass/size requirement for planetary status in the
Solar System.
\end{enumerate}
Moving from the Sun outwards, the 8 major planets are: Mercury, Venus,
Earth, Mars, Jupiter, Saturn, Uranus and Neptune. Since the formal
definition of a planet in 2006 Pluto has been relegated to having the
status of \emph{dwarf planet}, along with bodies such as Ceres and Eris.
See figure~\ref{fig:planets}.
\begin{figure}[tb]
\centering
\includegraphics[width=0.9\linewidth]{pictures/the_planets.jpg}
\caption{The Planets}
\label{fig:planets}
\end{figure}
\subsection{Terrestrial Planets}%\label{terrestrial-planets}
The planets closest to the sun are called collectively the
\emph{terrestrial planets}. The terrestrial planets are: Mercury, Venus,
Earth and Mars.
The terrestrial planets are relatively small, comparatively dense, and
have solid rocky surface. Most of their mass is made from solid matter,
which is mostly rocky and/or metallic in nature.
\subsection{Jovian Planets}%\label{jovian-planets}
Jupiter, Saturn, Uranus and Neptune make up the \emph{Jovian planets},
also called \emph{gas giants}. They are much more massive than the
terrestrial planets, and do not have a solid surface. Jupiter is the
largest of all the planets with a diameter of about 12, and mass over
300 times that of the Earth!
The Jovian planets do not have a solid surface -- the vast majority of
their mass being in gaseous form (although they may have rocky or
metallic cores). Because of this, they have an average density which is
much less than the terrestrial planets. Saturn's mean density is only
about $0.7 \g/\cm^3$ -- it would float in water!
\subsection{Apparent Magnitudes of the Planets}
The apparent magnitude of the planets can be found in astronomical
almanachs. Over time, several scientific studies have refined these
models. A few of them have been implemented in Stellarium:
\begin{description}
\item[M\"uller 1893] G. M\"uller formulated
\indexterm[magnitudes, visual]{visual magnitudes} for the
planets from visual observations of 1877--1891. They can be found in
\citet{AstronomicalAlgorithms:1998} and \citet{ESAE:1961}. They give
notably lower brightness estimates than the later models, which however
provide \indexterm[magnitudes, instrumental]{instrumental magnitudes}
in the Johnson V photometric system. Several important
historical studies from the early 20th century are based on these estimates.
\item[Astronomical Almanac 1984] This model was used in the
Astronomical Almanac starting in 1984. The expressions are allegedly
``due to D. L. Harris'', but J.
\citet[p.286]{AstronomicalAlgorithms:1998} denies this origin.
\item[Explanatory Supplement 1992] Expressions from \citet{ESAA:1992}.
\item[Explanatory Supplement 2013] Expressions from \citet{ESAA:2013}.
\item[Mallama \& Hilton 2018] The currently most modern expressions
include e.g. a model for Mars which takes the brightening and
dimming of albedo features into account \citep{Mallama:2018}.
\item[Generic] A simple model based on albedo, size and distance.
\end{description}
\section{The Minor Bodies}%\label{the-minor-planets}
As well as the Major Planets, the solar system also contains
innumerable smaller bodies in orbit around the Sun. These are
generally the \emph{dwarf planets} (Ceres, Pluto, Eris), the other
\emph{minor planets}, also known as \emph{planetoids} or
\emph{asteroids}, and comets.
While the positions of the major planets can meanwhile be computed for
many millennia in the past and future, the minor bodies have only been
systematically observed since the beginning of the 19th
century.\footnote{The first discovered asteroid, (1) Ceres, was in
fact discovered on January 1, 1801.} The small masses occasionally
pass by the larger planets which exert gravitational forces, so that
the orbits of the minor bodies are not stable and cannot be computed
for long periods. The positions are computed by using
\indexterm[orbital elements, osculating]{osculating orbital elements}, which describe the motions on
instantaneous \indexterm{Kepler orbits}\footnote{The mathematician and
astronomer \name[Johannes]{Kepler} (1571--1630) discovered that
planets do not move on circles (which had been postulated since
antiquity), but on ``conical sections'', i.e., ellipses, parabolae
or even hyperbolae. The latter two can be observed for far-out
comets and recently even interstellar objects passing the Sun.}. If
you want to compute positions of these objects with Stellarium, you
need to have valid (current) \indexterm[orbital elements, osculating]{orbital elements}. See
Solar System Editor plugin (section~\ref{sec:plugins:SolarSystemEditor}) and
Appendix~\ref{sec:ssystem.ini:minor} for more details.
\subsection{Asteroids}
\label{sec:Phenomena:Asteroids}
Asteroids are celestial bodies orbiting the Sun in more or less regular
orbits mostly between Mars and Jupiter. They are generally rocky bodies
like the inner (terrestrial) planets, but of much smaller size. They
are countless in number ranging in size from about ten meters to
hundreds of kilometres.
\subsection{Comets}
\label{sec:Phenomena:Comets}
A comet is a small body in the solar system that orbits the Sun and (at
least occasionally) exhibits a coma (or atmosphere) and/or a tail.
Most comets have a very eccentric orbit (featuring a highly flattened
ellipse, or even a parabolic track), and as such spend most of their
time a very long way from the Sun. Comets are composed of rock, dust
and ices. When they come close to the Sun, the heat evaporates the
ices, causing a gaseous release. This gas and loose material which
comes away from the body of the comet is swept away from the Sun by
the Solar wind, forming the tail. The outgassing may also change the
orbit of the comet, so that its orbital elements should be used only
for a few months around their \indexterm{epoch}.
Most larger comets exhibit two kinds of tail: a straight gas tail
(often blue-green in photographs), and a wider, occasionally curved
dust tail (reflecting whitish sunlight).
Comets whose orbit brings them close to the Sun more frequently than
every 200 years are considered to be \emph{short period} comets, the
most famous of which is probably Comet Halley, named after the British
astronomer \name[Edmund]{Halley} (1656--1741/42\footnote{\name[Edmund]{Halley} lived
in a time when Great Britain still used the Julian calendar and started
the years in March. He died on January 14th, 1741 (British Julian),
which was called January 25th 1742 (Gregorian) in most other European countries.}),
which has an orbital period of roughly 76~years.
\section{Meteoroids}
\label{sec:Phenomena:Meteoroids}
These objects are small pieces of space debris left over from the early
days of the solar system or which crumbled off a comet when it came close to the sun.
These particles orbit the Sun and come in a variety of shapes,
sizes an compositions, ranging from microscopic dust particles
up to about ten meters across.
Sometimes these objects collide with the Earth. The closing speed of
these collisions is generally extremely high (tens of kilometres per
second). When such an object ploughs through the Earth's atmosphere, a
large amount of kinetic energy is converted into heat and light, and a
visible flash or streak can often be seen with the naked eye. Even the
smallest particles can cause these events which are commonly known as
\emph{shooting stars}.
While smaller objects tend to burn up in the atmosphere, larger, denser
objects can penetrate the atmosphere and strike the surface of the
planet, sometimes leaving meteor craters.
Sometimes the angle of the collision means that larger objects pass
through the atmosphere but do not strike the Earth. When this happens,
spectacular fireballs are sometimes seen.
To clarify some terminology:
\begin{description}
\item[Meteoroids] are the objects when they are floating in space.
\item[Meteor] is the name given to the visible atmospheric phenomenon.
\begin{description}
\item[Shooting Star] colloquial term for a small meteor
\item[Fireball, Bolide] term for a very bright meteor. These illuminate the landscape,
sometimes for several seconds, and occasionally even cause sounds. These are also candidates for
\end{description}
\item[Meteorites], the objects that penetrate the
atmosphere and land (or \emph{impact}) on the surface.
\end{description}
In some nights over the year you can observe increased meteorite
activity. Those meteors seem to come from a certain point in the sky,
the \emph{Radiant}. But what we see is similar to driving through a
mosquito swarm which all seem to come head-on. Earth itself moves
through space, and sweeps up a dense cloud of particles which
originates from a comet's tail. Stellarium's Meteor Shower plugin (see
section~\ref{sec:plugins:MeteorShowers}) can help you planning your next
meteor observing night.
\section{Zodiacal Light and \emph{Gegenschein}}
\label{sec:Phenomena:ZodiacalLight}
In very clear nights on the best observing sites, far away from the
light pollution of our cities, you can observe a feeble glow also
known as ``false twilight'' after evening twilight in the west, or
before dawn in the east. The glow looks like a wedge of light along
the ecliptic. Exactly opposite the sun, there is another dim glow that
can be observed with dark-adapted eyes in perfect skies: the
\emph{Gegenschein} (counterglow).
This is sunlight reflected off the same dust and meteoroids in the
plane of our solar system which is the source of meteors. Stellarium's
sky can show the Zodiacal light \citep{Kwon:2004:ZodiacalLight}, but
observe how quickly light pollution kills its visibility!
\section{The Milky Way}
\label{sec:Phenomena:MilkyWay}
There is a band of very dense stars running right round the sky in huge
irregular stripe. Most of these stars are very dim, but the overall
effect is that on very dark clear nights we can see a large, beautiful
area of diffuse light in the sky. It is this for which we name our
galaxy the \indexterm{Milky Way}.
The reason for this effect is that our galaxy is somewhat like a disc,
and we are off to one side. Thus when we look towards the centre of the
disc, we see more a great concentration of stars (there are more star in
that direction). As we look out away from the centre of the disc we see
fewer stars - we are staring out into the void between galaxies!
It's a little hard to work out what our galaxy would look like from far
away, because when we look up at the night sky, we are seeing it from
the inside. All the stars we can see are part of the Milky Way, and we
can see them in every direction. However, there is some structure. There
is a higher density of stars in particular places.
\section{Nebulae}
\label{sec:Phenomena:Nebulae}
Seen with the naked eye, binoculars or a small telescope, a
\emph{nebula} (plural \emph{nebulae}) is a fuzzy patch on the sky.
Historically, the term referred to any extended object, but the modern
definition excludes some types of object such as galaxies.
Observationally, nebulae are popular objects for amateur astronomers
-- they exhibit complex structure, spectacular colours (in most cases
only visible in color photography) and a wide variety of forms. Many
nebulae are bright enough to be seen using good binoculars or small to
medium sized telescopes, and are a very photogenic subject for
astro-photographers.
Nebulae are associated with a variety of phenomena, some being clouds of
interstellar dust and gas in the process of collapsing under gravity,
some being envelopes of gas thrown off during a supernova event (so
called \emph{supernova remnants}), yet others being the remnants of
dumped outer layers around dying stars (\emph{planetary nebulae}).
Examples of nebulae for which Stellarium has images include the Crab
Nebula (M1), which is a supernova remnant, and the Dumbbell Nebula
(M27) and the Ring Nebula (M57) which are planetary nebulae.
\subsection{The Messier Objects}
\label{sec:Phenomena:Messier}
The \emph{Messier} objects are a set of astronomical objects catalogued
by \name[Charles]{Messier} (1730--1817) in his catalogue of \emph{Nebulae and Star Clusters}
first published in 1774. The original motivation behind the catalogue
was that Messier was a comet hunter, and he was frustrated by objects which
resembled but were not comets. He therefore compiled a list of these annoying
objects.
The first edition covered 45 objects numbered M1 to M45. The total list
consists of 110 objects, ranging from M1 to M110. The final catalogue
was published in 1781 and printed in the \emph{Connaissance des Temps}
in 1784. Many of these objects are still known by their Messier number.
Because the Messier list was compiled by astronomers in the Northern
Hemisphere, it contains only objects from the north celestial pole to a
celestial latitude of about $-35\degree$. Many impressive Southern objects, such
as the Large \index{Magellanic Cloud!Large} and Small \index{Magellanic Cloud!Small}
Magellanic Clouds are excluded from the list.
Because all of the Messier objects are visible with binoculars or small
telescopes (under favourable conditions), they are popular viewing
objects for amateur astronomers. In early spring, astronomers sometimes
gather for ``Messier Marathons'', when all of the objects can be viewed
over a single night.
Stellarium includes images of many Messier objects.
%
% Source: https://en.wikipedia.org/wiki/Caldwell_catalogue
%
\subsection{The Caldwell catalogue}
\label{sec:Phenomena:Caldwell}
The \emph{Caldwell} catalogue is an astronomical catalogue of 109 star
clusters, nebulae, and galaxies for observation by amateur
astronomers. The list was compiled by \name[Patrick]{Moore}
(1923--2012) as a complement to the Messier catalogue
\citep{SJOMeara:2003}.
While the Messier catalogue is used by amateur astronomers as a list
of deep-sky objects for observation, Moore noted that Messier's list
was not compiled for that purpose and excluded many of the sky's
brightest deep-sky objects \citep{SJOMeara:2003}, such as the Hyades,
the Double Cluster (NGC 869 and NGC 884), and the Sculptor Galaxy (NGC
253). The Messier catalogue was actually compiled as a list of known
objects that might be confused with comets. Moore also observed that
since Messier compiled his list from observations in Paris, it did not
include bright deep-sky objects visible in the Southern Hemisphere,
such as Omega Centauri, Centaurus A, the Jewel Box, and 47 Tucanae
\citep{SJOMeara:2003}. Moore compiled a list of 109 objects to match
the commonly accepted number of Messier objects (he excluded M110
\citep{Moore:1995}), and the list was published in \emph{Sky \&
Telescope} in December 1995 \citep{Moore:1995}.
Moore used his other surname -- Caldwell -- to name the list, since
the initial of ``Moore'' is already used for the Messier catalogue
\citep{SJOMeara:2003}. Entries in the catalogue are designated with a
``C'' and the catalogue number (1 to 109).
Unlike objects in the Messier catalogue, which are listed roughly in
the order of discovery by Messier and his peers, the Caldwell
catalogue is ordered by declination, with C1 being the most northerly
and C109 being the most southerly \citep{SJOMeara:2003}, although two
objects (C~26=NGC~4244 and C~41, the Hyades) are listed out of
sequence \citep{SJOMeara:2003}. Other errors in the original list have
since been corrected: it incorrectly identified the S Norma Cluster
(C~89=NGC~6087) as NGC 6067 and incorrectly labelled the Lambda
Centauri Cluster (C~100=IC~2944) as the Gamma Centauri Cluster
\citep{SJOMeara:2003}.
\section{Galaxies}
\label{sec:Phenomena:Galaxies}
Stars, it seems, are gregarious -- they like to live together in groups.
These groups are called galaxies. The number of stars in a typical
galaxy is literally astronomical -- many \emph{billions} -- sometimes over
\emph{hundreds of billions} of stars!
Our own star, the sun, is part of a galaxy. When we look up at the
night sky, all the stars we can see are in the same galaxy. We call
our own galaxy the Milky Way (or sometimes simply ``the
Galaxy''\footnote{Which means closely the same thing, the word
deriving from Greek \emph{gala}=milk.}).
Other galaxies appear in the sky as dim fuzzy blobs. Only four are
normally visible to the naked eye. The Andromeda galaxy (M31) visible in
the Northern hemisphere, the two Magellanic clouds, visible in the
Southern hemisphere, and the home galaxy Milky Way, visible in parts
from north and south under dark skies.
There are thought to be billions of galaxies in the universe comprised
of an unimaginably large number of stars.
The vast majority of galaxies are so far away that they are very dim,
and cannot be seen without large telescopes, but there are dozens of
galaxies which may be observed in medium to large sized amateur
instruments. Stellarium includes images of many galaxies, including the
Andromeda galaxy (M31)\index{M31}, the Pinwheel Galaxy (M101), the Sombrero Galaxy
(M104) and many others.
Astronomers classify galaxies according to their appearance. Some
classifications include \emph{spiral galaxies}, \emph{elliptical
galaxies}, \emph{lenticular galaxies} and \emph{irregular galaxies}.
\section{Eclipses and Transits}
\label{sec:Eclipses}
Eclipses occur when an apparently large celestial body (planet, moon
etc.) moves between the observer and a more distant object
-- the more distant object being eclipsed by the nearer one.
\subsection{Solar Eclipses}
\label{sec:Eclipses:solar}
Solar eclipses occur when our Moon moves between the Earth and the Sun.
This happens when the inclined orbit of the Moon causes its path to
cross the ecliptic and our line of sight to the Sun. In essence it is the observer
falling under the shadow of the Moon.
By a wonderful coincidence, Sun and Moon appear of almost identical
size in Earth's sky, but the Moon's elliptical orbit sometimes causes
it to appear just a bit smaller than the Sun.
There are therefore three types of solar eclipses:
\begin{description}
\item[Partial] The Moon only covers part of the Sun's surface which,
for higher eclipse magnitudes, appears as crescent.\nocite{Meeus:Morsels4}%Chapt.15.
\item[Total] The Moon completely obscures the Sun's surface.
\item[Annular] The Moon is at or close to apogee (furthest from Earth in its
elliptic orbit) and its disc is too small to completely cover the Sun.
In this case most of the Sun's disc is obscured -- all except a thin ring
around the edge.
\end{description}
Sometimes the eclipse starts annular, but when the shadow reaches the
part of the globe closest to the Moon, it becomes just large enough to
cover the sun totally, and when receding, it may go back to the
annular characteristic. This is called \emph{annular-total} in the
classical literature, or \emph{hybrid} in more recent works.
\subsection{Lunar Eclipses}
\label{sec:Eclipses:lunar}
Lunar eclipses occur when the Earth moves between the Sun and the Moon,
and the Moon is in the Earth's shadow. They occur under the same basic
conditions as the solar eclipse but appear to occur more often because the
Earth's shadow is so much larger than the Moon's, and a Lunar eclipse is
observable from more than half the Earth's surface, while a Solar eclipse
is limited to a smaller region.
The geometrical begin of a Lunar eclipse is totally unobservable: Seen
from a point near the observable edge of the Lunar surface, the large black
disk of Earth just touches the Solar disk. While the time of this
event can be determined, the effect on the apparent brightness of the
Moon's surface as observed from Earth is close to zero. Only as more
of the Solar disk is occulted by Earth, this spot on the Lunar surface
will receive less sunlight and will appear darker when observed from
Earth. A rule of thumb says that 70\% of the Moon must enter the
Earth's \indexterm{penumbra} (partial shadow) before a light defect can be noted by attentive human
observers.
The Earth's \indexterm{umbra} (deep shadow) is then much darker. As soon as an observer on
the Lunar edge experiences a Total Solar eclipse, observers on Earth