-
Notifications
You must be signed in to change notification settings - Fork 1
/
equation_of_time.info
220 lines (200 loc) · 10.1 KB
/
equation_of_time.info
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
This is equation_of_time.info, produced by makeinfo version 6.0 from
equation_of_time.texi.
File: equation_of_time.info, Node: Top, Next: Introduction to equation_of_time, Prev: (dir), Up: (dir)
equation_of_time
****************
* Menu:
* Introduction to equation_of_time::
* Definitions for equation_of_time::
* Function and variable index::
1 equation_of_time
******************
File: equation_of_time.info, Node: Introduction to equation_of_time, Next: Definitions for equation_of_time, Prev: Top, Up: Top
1.1 Introduction to equation_of_time
====================================
'equation_of_time' returns the difference between the standard mean day
and the actual. This is the difference in minutes between the Sun's
standard meridian and the actual transit. For example, a standard clock
will indicate the passage from AM to PM at noon, while the actual maybe
at 12:45 pm. This difference, 45 minutes, is the equation of time.
There are two main causes - first is that the Earth's orbital speed
varies throughout the year, and second that the Earth rotational axis is
inclined to the orbital plane. The equation of time can also be used to
display the observed position of the Sun in the sky during the day with
respect to seasonal variation.
File: equation_of_time.info, Node: Definitions for equation_of_time, Next: Function and variable index, Prev: Introduction to equation_of_time, Up: Top
1.2 Definitions for equation_of_time
====================================
-- Function: equation_of_time_full(<T>, <UT>)
Returns declination <dec>, equation of time <E> and ecliptic
longitude <lambda>.
-- Function: equation_of_time(<T>, <UT>)
Returns declination <dec> and equation of time <E>.
-- Function: analemma(<day>,<month>,<year>,<tzi>,<ds>)
Returns declination <dec> and equation of time <E>.
-- Function: greenwich_hour_angle(<UT>, <E>)
Returns the Greenwich hour angle (degrees).
-- Function: sun_hour_angle(<phi>, <h>, <dec>)
Returns the sun hour angle (degrees).
-- Function: calculate_rise_time(<T>, <lat>, <lon>, <sgn>, <h>)
Returns sunrise (if <sgn> = +1) or sunset (if <sgn> = -1) universal
times in hours.
-- Function: julian_dow(<dow>,<week>,<month>,<year>)
Returns the Julian day of nth <dow>. For example, for year 2016,
1st Sunday in November julian_dow(1,1,11,2016) and 2nd Sunday of
March julian_dow(1,2,3,2016).
-- Function: day_of_year(<day>,<month>,<year>)
Returns the day number of the year.
-- Function: DST(<jd>,<ds>)
Returns standard Daylight savings correction.
-- Function: UT_to_local_time(<UT>,<jd>,<tz>,<ds>)
Returns local time given universal time.
-- Function: local_to_UT_time(<LT>,<jd>,<tz>,<ds>)
Returns universal time given local time.
-- Function: day_duration(<T>, <jd>, <lat>, <lon>, <h>)
Returns the length of the day, from sunrise to sunset.
-- Function: observer_coord(<hour_angle>, <dec>, <lat>)
Returns the observed azimuth and altitude given <hour_angle>, <dec>
at observer latitude <lat>
-- Function: observer_coord_gha(<gha>, <dec>, <lat>, <lon>)
Returns the observed azimuth and altitude given <gha>, <dec> at
observer latitude <lat> longitude <lon>
-- Function: sun_alt_az(<jd>,<tz>,<ds>,<lat>, <lon>, <h>)
Returns lists of azimuth and altitude, and labels.
-- Variable: day
Day of month.
-- Variable: dec
declination in degrees.
-- Variable: dow
Day of week.
-- Variable: ds
Daylight savings offset in hour.
-- Variable: E
Equation of time in minutes.
-- Variable: gha
Greenwich hour angle in degrees.
-- Variable: h
Observer altitude above ground level in meters.
-- Variable: hour_angle
Hour angle in degrees.
-- Variable: jd
Julian day number.
-- Variable: lambda
Ecliptic longitude in degrees.
-- Variable: lat
Observer latitude in degrees.
-- Variable: lon
Observer longitude in degrees.
-- Variable: LT
Local time, e.g. time in Observer frame.
-- Variable: month
Month of year.
-- Variable: phi
Observer latitude in degrees.
-- Variable: sgn
Setting. +1 for rise. -1 for set.
-- Variable: T
Julian days in centuries from J2000.
-- Variable: tz
Timezone offset in hours.
-- Variable: tzi
Timeone offset in hours
-- Variable: UT
Universal time in hours.
-- Variable: week
Week of month.
-- Variable: year
Conventional year number.
File: equation_of_time.info, Node: Function and variable index, Prev: Definitions for equation_of_time, Up: Top
Appendix A Function and variable index
**************************************