Merge branch 'master' into comment-cache
[emacs.git] / lisp / calendar / lunar.el
blob4d39b15aa039e65010b4ba53ca7f892f312afa6a
1 ;;; lunar.el --- calendar functions for phases of the moon
3 ;; Copyright (C) 1992-1993, 1995, 1997, 2001-2017 Free Software
4 ;; Foundation, Inc.
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
9 ;; Human-Keywords: moon, lunar phases, calendar, diary
10 ;; Package: calendar
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; See calendar.el.
31 ;; Based on ``Astronomical Formulae for Calculators,'' 3rd ed., by Jean Meeus,
32 ;; Willmann-Bell, Inc., 1985 and ``Astronomical Algorithms'' by Jean Meeus,
33 ;; Willmann-Bell, Inc., 1991.
35 ;; WARNING: The calculations will be accurate only to within a few minutes.
37 ;; The author would be delighted to have an astronomically more sophisticated
38 ;; person rewrite the code for the lunar calculations in this file!
40 ;;; Code:
42 (require 'calendar)
43 (require 'solar)
44 (require 'cal-dst)
45 ;; calendar-astro-to-absolute and v versa are cal-autoloads.
46 ;;;(require 'cal-julian)
48 (defcustom lunar-phase-names
49 '("New Moon" "First Quarter Moon" "Full Moon" "Last Quarter Moon")
50 "List of names for the lunar phases."
51 :type '(list
52 (string :tag "New Moon")
53 (string :tag "First Quarter Moon")
54 (string :tag "Full Moon")
55 (string :tag "Last Quarter Moon"))
56 :group 'calendar
57 :version "23.2")
59 (defun lunar-phase (index)
60 "Local date and time of lunar phase INDEX.
61 Integer below INDEX/4 gives the lunation number, counting from Jan 1, 1900;
62 remainder mod 4 gives the phase: 0 new moon, 1 first quarter, 2 full moon,
63 3 last quarter. Returns a list (DATE TIME PHASE)."
64 (let* ((phase (mod index 4))
65 (index (/ index 4.0))
66 (time (/ index 1236.85))
67 (date (+ (calendar-absolute-from-gregorian '(1 0.5 1900))
68 0.75933
69 (* 29.53058868 index) ; FIXME 29.530588853?
70 (* 0.0001178 time time)
71 (* -0.000000155 time time time)
72 (* 0.00033
73 (solar-sin-degrees (+ 166.56
74 (* 132.87 time)
75 (* -0.009173 time time))))))
76 (sun-anomaly (mod
77 (+ 359.2242
78 (* 29.105356 index)
79 (* -0.0000333 time time)
80 (* -0.00000347 time time time))
81 360.0))
82 (moon-anomaly (mod
83 (+ 306.0253
84 (* 385.81691806 index)
85 (* 0.0107306 time time)
86 (* 0.00001236 time time time))
87 360.0))
88 (moon-lat (mod
89 (+ 21.2964
90 (* 390.67050646 index)
91 (* -0.0016528 time time)
92 (* -0.00000239 time time time))
93 360.0))
94 (adjustment
95 (if (memq phase '(0 2))
96 (+ (* (- 0.1734 (* 0.000393 time))
97 (solar-sin-degrees sun-anomaly))
98 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly)))
99 (* -0.4068 (solar-sin-degrees moon-anomaly))
100 (* 0.0161 (solar-sin-degrees (* 2 moon-anomaly)))
101 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly)))
102 (* 0.0104 (solar-sin-degrees (* 2 moon-lat)))
103 (* -0.0051 (solar-sin-degrees (+ sun-anomaly moon-anomaly)))
104 (* -0.0074 (solar-sin-degrees (- sun-anomaly moon-anomaly)))
105 (* 0.0004 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly)))
106 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly)))
107 (* -0.0006 (solar-sin-degrees
108 (+ (* 2 moon-lat) moon-anomaly)))
109 (* 0.0010 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly)))
110 (* 0.0005 (solar-sin-degrees
111 (+ (* 2 moon-anomaly) sun-anomaly))))
112 (+ (* (- 0.1721 (* 0.0004 time))
113 (solar-sin-degrees sun-anomaly))
114 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly)))
115 (* -0.6280 (solar-sin-degrees moon-anomaly))
116 (* 0.0089 (solar-sin-degrees (* 2 moon-anomaly)))
117 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly)))
118 (* 0.0079 (solar-sin-degrees (* 2 moon-lat)))
119 (* -0.0119 (solar-sin-degrees (+ sun-anomaly moon-anomaly)))
120 (* -0.0047 (solar-sin-degrees (- sun-anomaly moon-anomaly)))
121 (* 0.0003 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly)))
122 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly)))
123 (* -0.0006 (solar-sin-degrees (+ (* 2 moon-lat) moon-anomaly)))
124 (* 0.0021 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly)))
125 (* 0.0003 (solar-sin-degrees
126 (+ (* 2 moon-anomaly) sun-anomaly)))
127 (* 0.0004 (solar-sin-degrees
128 (- sun-anomaly (* 2 moon-anomaly))))
129 (* -0.0003 (solar-sin-degrees
130 (+ (* 2 sun-anomaly) moon-anomaly))))))
131 (adj (+ 0.0028
132 (* -0.0004 (solar-cosine-degrees
133 sun-anomaly))
134 (* 0.0003 (solar-cosine-degrees
135 moon-anomaly))))
136 (adjustment (cond ((= phase 1) (+ adjustment adj))
137 ((= phase 2) (- adjustment adj))
138 (t adjustment)))
139 (date (+ date adjustment))
140 (date (+ date (/ (- calendar-time-zone
141 (solar-ephemeris-correction
142 (calendar-extract-year
143 (calendar-gregorian-from-absolute
144 (truncate date)))))
145 60.0 24.0)))
146 (time (* 24 (- date (truncate date))))
147 (date (calendar-gregorian-from-absolute (truncate date)))
148 (adj (dst-adjust-time date time)))
149 (list (car adj) (apply 'solar-time-string (cdr adj)) phase)))
151 (defconst lunar-cycles-per-year 12.3685 ; 365.25/29.530588853
152 "Mean number of lunar cycles per 365.25 day year.")
154 ;; FIXME new-moon index; use in lunar-phase-list implies always below.
155 (defun lunar-index (date)
156 "Return the lunar index for Gregorian date DATE.
157 This is 4 times the approximate number of new moons since 1 Jan 1900.
158 The factor of 4 allows (mod INDEX 4) to represent the four quarters."
159 (* 4 (truncate
160 (* lunar-cycles-per-year
161 ;; Years since 1900, as a real.
162 (+ (calendar-extract-year date)
163 (/ (calendar-day-number date) 366.0)
164 -1900)))))
166 (defun lunar-phase-list (month year)
167 "List of lunar phases for three months starting with Gregorian MONTH, YEAR."
168 (let* ((index (lunar-index (list month 1 year)))
169 (new-moon (lunar-phase index))
170 (end-date (let ((end-month month)
171 (end-year year))
172 (calendar-increment-month end-month end-year 3)
173 (list (list end-month 1 end-year))))
174 ;; Alternative for start-date:
175 ;;; (calendar-gregorian-from-absolute
176 ;;; (1- (calendar-absolute-from-gregorian (list month 1 year))))
177 (start-date (progn
178 (calendar-increment-month month year -1)
179 (list (list month
180 (calendar-last-day-of-month month year)
181 year))))
182 list)
183 (while (calendar-date-compare new-moon end-date)
184 (if (calendar-date-compare start-date new-moon)
185 (setq list (append list (list new-moon))))
186 (setq index (1+ index)
187 new-moon (lunar-phase index)))
188 list))
190 (defun lunar-phase-name (phase)
191 "Name of lunar PHASE.
192 0 = new moon, 1 = first quarter, 2 = full moon, 3 = last quarter."
193 (nth phase lunar-phase-names))
195 (defvar displayed-month) ; from calendar-generate
196 (defvar displayed-year)
198 ;;;###cal-autoload
199 (defun calendar-lunar-phases (&optional event)
200 "Create a buffer with the lunar phases for the current calendar window.
201 If EVENT is non-nil, it's an event indicating the buffer position to
202 use instead of point."
203 (interactive (list last-nonmenu-event))
204 ;; If called from a menu, with the calendar window not selected.
205 (with-current-buffer
206 (if event (window-buffer (posn-window (event-start event)))
207 (current-buffer))
208 (message "Computing phases of the moon...")
209 (let ((m1 displayed-month)
210 (y1 displayed-year)
211 (m2 displayed-month)
212 (y2 displayed-year))
213 (calendar-increment-month m1 y1 -1)
214 (calendar-increment-month m2 y2 1)
215 (calendar-in-read-only-buffer lunar-phases-buffer
216 (calendar-set-mode-line
217 (if (= y1 y2)
218 (format "Phases of the Moon from %s to %s, %d%%-"
219 (calendar-month-name m1) (calendar-month-name m2) y2)
220 (format "Phases of the Moon from %s, %d to %s, %d%%-"
221 (calendar-month-name m1) y1 (calendar-month-name m2) y2)))
222 (insert
223 (mapconcat
224 (lambda (x)
225 (format "%s: %s %s" (calendar-date-string (car x))
226 (lunar-phase-name (nth 2 x))
227 (cadr x)))
228 (lunar-phase-list m1 y1) "\n")))
229 (message "Computing phases of the moon...done"))))
231 ;;;###autoload
232 (defun lunar-phases (&optional arg)
233 "Display the quarters of the moon for last month, this month, and next month.
234 If called with an optional prefix argument ARG, prompts for month and year.
235 This function is suitable for execution in an init file."
236 (interactive "P")
237 (save-excursion
238 (let* ((date (if arg (calendar-read-date t)
239 (calendar-current-date)))
240 (displayed-month (calendar-extract-month date))
241 (displayed-year (calendar-extract-year date)))
242 (calendar-lunar-phases))))
244 (defvar date)
246 ;; To be called from diary-list-sexp-entries, where DATE is bound.
248 ;;;###diary-autoload
249 (defun diary-lunar-phases (&optional mark)
250 "Moon phases diary entry.
251 An optional parameter MARK specifies a face or single-character string to
252 use when highlighting the day in the calendar."
253 (let* ((index (lunar-index date))
254 (phase (lunar-phase index)))
255 (while (calendar-date-compare phase (list date))
256 (setq index (1+ index)
257 phase (lunar-phase index)))
258 (if (calendar-date-equal (car phase) date)
259 (cons mark (concat (lunar-phase-name (nth 2 phase)) " "
260 (cadr phase))))))
262 ;; For the Chinese calendar the calculations for the new moon need to be more
263 ;; accurate than those above, so we use more terms in the approximation.
264 (defun lunar-new-moon-time (k)
265 "Astronomical (Julian) day number of K th new moon."
266 (let* ((T (/ k 1236.85))
267 (T2 (* T T))
268 (T3 (* T T T))
269 (T4 (* T2 T2))
270 (JDE (+ 2451550.09765
271 (* 29.530588853 k)
272 (* 0.0001337 T2)
273 (* -0.000000150 T3)
274 (* 0.00000000073 T4)))
275 (E (- 1 (* 0.002516 T) (* 0.0000074 T2)))
276 (sun-anomaly (+ 2.5534
277 (* 29.10535669 k)
278 (* -0.0000218 T2)
279 (* -0.00000011 T3)))
280 (moon-anomaly (+ 201.5643
281 (* 385.81693528 k)
282 (* 0.0107438 T2)
283 (* 0.00001239 T3)
284 (* -0.000000058 T4)))
285 (moon-argument (+ 160.7108
286 (* 390.67050274 k)
287 (* -0.0016341 T2)
288 (* -0.00000227 T3)
289 (* 0.000000011 T4)))
290 (omega (+ 124.7746
291 (* -1.56375580 k)
292 (* 0.0020691 T2)
293 (* 0.00000215 T3)))
294 (A1 (+ 299.77 (* 0.107408 k) (* -0.009173 T2)))
295 (A2 (+ 251.88 (* 0.016321 k)))
296 (A3 (+ 251.83 (* 26.641886 k)))
297 (A4 (+ 349.42 (* 36.412478 k)))
298 (A5 (+ 84.66 (* 18.206239 k)))
299 (A6 (+ 141.74 (* 53.303771 k)))
300 (A7 (+ 207.14 (* 2.453732 k)))
301 (A8 (+ 154.84 (* 7.306860 k)))
302 (A9 (+ 34.52 (* 27.261239 k)))
303 (A10 (+ 207.19 (* 0.121824 k)))
304 (A11 (+ 291.34 (* 1.844379 k)))
305 (A12 (+ 161.72 (* 24.198154 k)))
306 (A13 (+ 239.56 (* 25.513099 k)))
307 (A14 (+ 331.55 (* 3.592518 k)))
308 (correction
309 (+ (* -0.40720 (solar-sin-degrees moon-anomaly))
310 (* 0.17241 E (solar-sin-degrees sun-anomaly))
311 (* 0.01608 (solar-sin-degrees (* 2 moon-anomaly)))
312 (* 0.01039 (solar-sin-degrees (* 2 moon-argument)))
313 (* 0.00739 E (solar-sin-degrees (- moon-anomaly sun-anomaly)))
314 (* -0.00514 E (solar-sin-degrees (+ moon-anomaly sun-anomaly)))
315 (* 0.00208 E E (solar-sin-degrees (* 2 sun-anomaly)))
316 (* -0.00111 (solar-sin-degrees
317 (- moon-anomaly (* 2 moon-argument))))
318 (* -0.00057 (solar-sin-degrees
319 (+ moon-anomaly (* 2 moon-argument))))
320 (* 0.00056 E (solar-sin-degrees
321 (+ (* 2 moon-anomaly) sun-anomaly)))
322 (* -0.00042 (solar-sin-degrees (* 3 moon-anomaly)))
323 (* 0.00042 E (solar-sin-degrees
324 (+ sun-anomaly (* 2 moon-argument))))
325 (* 0.00038 E (solar-sin-degrees
326 (- sun-anomaly (* 2 moon-argument))))
327 (* -0.00024 E (solar-sin-degrees
328 (- (* 2 moon-anomaly) sun-anomaly)))
329 (* -0.00017 (solar-sin-degrees omega))
330 (* -0.00007 (solar-sin-degrees
331 (+ moon-anomaly (* 2 sun-anomaly))))
332 (* 0.00004 (solar-sin-degrees
333 (- (* 2 moon-anomaly) (* 2 moon-argument))))
334 (* 0.00004 (solar-sin-degrees (* 3 sun-anomaly)))
335 (* 0.00003 (solar-sin-degrees (+ moon-anomaly sun-anomaly
336 (* -2 moon-argument))))
337 (* 0.00003 (solar-sin-degrees
338 (+ (* 2 moon-anomaly) (* 2 moon-argument))))
339 (* -0.00003 (solar-sin-degrees (+ moon-anomaly sun-anomaly
340 (* 2 moon-argument))))
341 (* 0.00003 (solar-sin-degrees (- moon-anomaly sun-anomaly
342 (* -2 moon-argument))))
343 (* -0.00002 (solar-sin-degrees (- moon-anomaly sun-anomaly
344 (* 2 moon-argument))))
345 (* -0.00002 (solar-sin-degrees
346 (+ (* 3 moon-anomaly) sun-anomaly)))
347 (* 0.00002 (solar-sin-degrees (* 4 moon-anomaly)))))
348 (additional
349 (+ (* 0.000325 (solar-sin-degrees A1))
350 (* 0.000165 (solar-sin-degrees A2))
351 (* 0.000164 (solar-sin-degrees A3))
352 (* 0.000126 (solar-sin-degrees A4))
353 (* 0.000110 (solar-sin-degrees A5))
354 (* 0.000062 (solar-sin-degrees A6))
355 (* 0.000060 (solar-sin-degrees A7))
356 (* 0.000056 (solar-sin-degrees A8))
357 (* 0.000047 (solar-sin-degrees A9))
358 (* 0.000042 (solar-sin-degrees A10))
359 (* 0.000040 (solar-sin-degrees A11))
360 (* 0.000037 (solar-sin-degrees A12))
361 (* 0.000035 (solar-sin-degrees A13))
362 (* 0.000023 (solar-sin-degrees A14))))
363 (newJDE (+ JDE correction additional)))
364 (+ newJDE
365 (- (solar-ephemeris-correction
366 (calendar-extract-year
367 (calendar-gregorian-from-absolute
368 (floor (calendar-astro-to-absolute newJDE))))))
369 (/ calendar-time-zone 60.0 24.0))))
371 (defun lunar-new-moon-on-or-after (d)
372 "Julian day number of first new moon on or after Julian day number D.
373 The fractional part is the time of day.
375 The date and time are local time, including any daylight saving rules,
376 as governed by the values of `calendar-daylight-savings-starts',
377 `calendar-daylight-savings-starts-time', `calendar-daylight-savings-ends',
378 `calendar-daylight-savings-ends-time', `calendar-daylight-time-offset', and
379 `calendar-time-zone'."
380 (let* ((date (calendar-gregorian-from-absolute
381 (floor (calendar-astro-to-absolute d))))
382 (year (+ (calendar-extract-year date)
383 (/ (calendar-day-number date) 365.25)))
384 (k (floor (* (- year 2000.0) lunar-cycles-per-year)))
385 (date (lunar-new-moon-time k))
386 (a-date (progn
387 (while (< date d)
388 (setq k (1+ k)
389 date (lunar-new-moon-time k)))
390 (calendar-astro-to-absolute date)))
391 (time (* 24 (- a-date (truncate a-date))))
392 (date (calendar-gregorian-from-absolute (truncate a-date)))
393 (adj (dst-adjust-time date time)))
394 (calendar-astro-from-absolute
395 (+ (calendar-absolute-from-gregorian (car adj))
396 (/ (cadr adj) 24.0)))))
398 (provide 'lunar)
400 ;;; lunar.el ends here