home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume39 / remind / patch09d / moon.c
C/C++ Source or Header  |  1993-10-04  |  22KB  |  633 lines

  1. /***************************************************************/
  2. /*                                                             */
  3. /*  MOON.C                                                     */
  4. /*                                                             */
  5. /*  Calculations for figuring out moon phases.                 */
  6. /*                                                             */
  7. /*  This file is part of REMIND.                               */
  8. /*  Copyright (C) 1992, 1993 by David F. Skoll.                */
  9. /*                                                             */
  10. /***************************************************************/
  11.  
  12. /* All of these routines were adapted from the program "moontool"
  13.    by John Walker, February 1988.  Here's the blurb from moontool:
  14.  
  15.    ... The information is generally accurate to within ten
  16.    minutes.
  17.  
  18.    The algorithms used in this program to calculate the positions Sun and
  19.    Moon as seen from the Earth are given in the book "Practical Astronomy
  20.    With Your Calculator" by Peter Duffett-Smith, Second Edition,
  21.    Cambridge University Press, 1981. Ignore the word "Calculator" in the
  22.    title; this is an essential reference if you're interested in
  23.    developing software which calculates planetary positions, orbits,
  24.    eclipses, and the like. If you're interested in pursuing such
  25.    programming, you should also obtain:
  26.  
  27.    "Astronomical Formulae for Calculators" by Jean Meeus, Third Edition,
  28.    Willmann-Bell, 1985. A must-have.
  29.  
  30.    "Planetary Programs and Tables from -4000 to +2800" by Pierre
  31.    Bretagnon and Jean-Louis Simon, Willmann-Bell, 1986. If you want the
  32.    utmost (outside of JPL) accuracy for the planets, it's here.
  33.  
  34.    "Celestial BASIC" by Eric Burgess, Revised Edition, Sybex, 1985. Very
  35.    cookbook oriented, and many of the algorithms are hard to dig out of
  36.    the turgid BASIC code, but you'll probably want it anyway.
  37.  
  38.    Many of these references can be obtained from Willmann-Bell, P.O. Box
  39.    35025, Richmond, VA 23235, USA. Phone: (804) 320-7016. In addition
  40.    to their own publications, they stock most of the standard references
  41.    for mathematical and positional astronomy.
  42.  
  43.    This program was written by:
  44.  
  45.       John Walker
  46.       Autodesk, Inc.
  47.       2320 Marinship Way
  48.       Sausalito, CA 94965
  49.       (415) 332-2344 Ext. 829
  50.  
  51.       Usenet: {sun!well}!acad!kelvin
  52.  
  53.    This program is in the public domain: "Do what thou wilt shall be the
  54.    whole of the law". I'd appreciate receiving any bug fixes and/or
  55.    enhancements, which I'll incorporate in future versions of the
  56.    program. Please leave the original attribution information intact so
  57.    that credit and blame may be properly apportioned.
  58.  
  59. */
  60. #include "config.h"
  61. #ifdef HAVE_STDLIB_H
  62. #include <stdlib.h>
  63. #endif
  64. #include <stdio.h>
  65. #include <math.h>
  66. #include <time.h>
  67. #include "types.h"
  68. #include "protos.h"
  69. #include "expr.h"
  70. #include "globals.h"
  71. #include "err.h"
  72.  
  73. /* Function prototypes */
  74. PRIVATE long jdate ARGS((int y, int mon, int day));
  75. PRIVATE double jtime ARGS((int y, int mon, int day, int hour, int min, int sec));
  76. PRIVATE void jyear ARGS((double td, int *yy, int *mm, int *dd));
  77. PRIVATE void jhms ARGS((double j, int *h, int *m, int *s));
  78. PRIVATE double meanphase ARGS((double sdate, double phase, double *usek));
  79. PRIVATE double truephase ARGS((double k, double phase));
  80. PRIVATE double kepler ARGS((double m, double ecc));
  81. PRIVATE double phase ARGS((double, double *, double *, double *, double *, double *, double *));
  82.  
  83.  
  84. /*  Astronomical constants  */
  85.  
  86. #define epoch        2444238.5       /* 1980 January 0.0 */
  87.  
  88. /*  Constants defining the Sun's apparent orbit  */
  89.  
  90. #define elonge        278.833540       /* Ecliptic longitude of the Sun
  91.                       at epoch 1980.0 */
  92. #define elongp        282.596403       /* Ecliptic longitude of the Sun at
  93.                       perigee */
  94. #define eccent      0.016718       /* Eccentricity of Earth's orbit */
  95. #define sunsmax     1.495985e8     /* Semi-major axis of Earth's orbit, km */
  96. #define sunangsiz   0.533128       /* Sun's angular size, degrees, at
  97.                       semi-major axis distance */
  98.  
  99. /*  Elements of the Moon's orbit, epoch 1980.0  */
  100.  
  101. #define mmlong      64.975464      /* Moon's mean lonigitude at the epoch */
  102. #define mmlongp     349.383063       /* Mean longitude of the perigee at the
  103.                       epoch */
  104. #define mlnode        151.950429       /* Mean longitude of the node at the
  105.                       epoch */
  106. #define minc        5.145396       /* Inclination of the Moon's orbit */
  107. #define mecc        0.054900       /* Eccentricity of the Moon's orbit */
  108. #define mangsiz     0.5181         /* Moon's angular size at distance a
  109.                       from Earth */
  110. #define msmax       384401.0       /* Semi-major axis of Moon's orbit in km */
  111. #define mparallax   0.9507       /* Parallax at distance a from Earth */
  112. #define synmonth    29.53058868    /* Synodic month (new Moon to new Moon) */
  113. #define lunatbase   2423436.0      /* Base date for E. W. Brown's numbered
  114.                       series of lunations (1923 January 16) */
  115.  
  116. /*  Properties of the Earth  */
  117.  
  118. #define earthrad    6378.16       /* Radius of Earth in kilometres */
  119.  
  120. #define PI 3.14159265358979323846
  121.  
  122. /*  Handy mathematical functions  */
  123.  
  124. #ifdef sgn
  125. #undef sgn
  126. #endif
  127. #define sgn(x) (((x) < 0) ? -1 : ((x) > 0 ? 1 : 0))      /* Extract sign */
  128.  
  129. #ifdef abs
  130. #undef abs
  131. #endif
  132. #define abs(x) ((x) < 0 ? (-(x)) : (x))           /* Absolute val */
  133.  
  134. #define fixangle(a) ((a) - 360.0 * (floor((a) / 360.0)))  /* Fix angle      */
  135. #define torad(d) ((d) * (PI / 180.0))              /* Deg->Rad      */
  136. #define todeg(d) ((d) * (180.0 / PI))              /* Rad->Deg      */
  137. #define dsin(x) (sin(torad((x))))              /* Sin from deg */
  138. #define dcos(x) (cos(torad((x))))              /* Cos from deg */
  139.  
  140. /***************************************************************/
  141. /*                                                             */
  142. /*  jdate                                                      */
  143. /*                                                             */
  144. /*  Convert a date and time to Julian day and fraction.        */
  145. /*                                                             */
  146. /***************************************************************/
  147. #ifdef HAVE_PROTOS
  148. PRIVATE long jdate(int y, int mon, int day)
  149. #else
  150. static long jdate(y, mon, day)
  151. int y, mon, day;
  152. #endif
  153. {
  154.    long c, m;
  155.  
  156.    m = mon+1;
  157.    if (m>2) {
  158.       m -= 3;
  159.    } else {
  160.       m += 9;
  161.       y--;
  162.    }
  163.    c = y/100L;   /* Century */
  164.    y -= 100L * c;
  165.    return day + (c*146097L)/4 + (y*1461L)/4 + (m*153L+2)/5 + 1721119L;
  166. }
  167.  
  168. /***************************************************************/
  169. /*                                                             */
  170. /*  jtime                                                      */
  171. /*                                                             */
  172. /*  Convert a GMT date and time to astronomical Julian time,   */
  173. /*  i.e. Julian date plus day fraction, expressed as a double  */
  174. /*                                                             */
  175. /***************************************************************/
  176. #ifdef HAVE_PROTOS
  177. PRIVATE double jtime(int y, int mon, int day, int hour, int min, int sec)
  178. #else
  179. static double jtime(y, mon, day, hour, min, sec)
  180. int y, mon, day, hour, min, sec;
  181. #endif
  182. {
  183.    return (jdate(y, mon, day)-0.5) +
  184.              (sec + 60L * (long) min + 3600L * (long) hour) / 86400.0;
  185. }
  186.  
  187. /***************************************************************/
  188. /*                                                             */
  189. /*  jyear                                                      */
  190. /*                                                             */
  191. /*  Convert a Julian date to year, month, day.                 */
  192. /*                                                             */
  193. /***************************************************************/
  194. #ifdef HAVE_PROTOS
  195. PRIVATE void jyear(double td, int *yy, int *mm, int *dd)
  196. #else
  197. static void jyear(td, yy, mm, dd)
  198. double td;
  199. int *yy, *mm, *dd;
  200. #endif
  201. {
  202.    double j, d, y, m;
  203.  
  204.    td += 0.5;         /* Astronomical to civil */
  205.    j = floor(td);
  206.    j = j - 1721119.0;
  207.    y = floor(((4 * j) - 1) / 146097.0);
  208.    j = (j * 4.0) - (1.0 + (146097.0 * y));
  209.    d = floor(j / 4.0);
  210.    j = floor(((4.0 * d) + 3.0) / 1461.0);
  211.    d = ((4.0 * d) + 3.0) - (1461.0 * j);
  212.    d = floor((d + 4.0) / 4.0);
  213.    m = floor(((5.0 * d) - 3) / 153.0);
  214.    d = (5.0 * d) - (3.0 + (153.0 * m));
  215.    d = floor((d + 5.0) / 5.0);
  216.    y = (100.0 * y) + j;
  217.    if (m < 10.0)
  218.       m = m + 2;
  219.    else {
  220.       m = m - 10;
  221.       y = y + 1;
  222.    }
  223.    *yy = y;
  224.    *mm = m;
  225.    *dd = d;
  226. }
  227.  
  228. /***************************************************************/
  229. /*                                                             */
  230. /*  jhms                                                       */
  231. /*                                                             */
  232. /*  Convert a Julian time to hour, minutes and seconds.        */
  233. /*                                                             */
  234. /***************************************************************/
  235. #ifdef HAVE_PROTOS
  236. PRIVATE void jhms(double j, int *h, int *m, int *s)
  237. #else
  238. static void jhms(j, h, m, s)
  239. double j;
  240. int *h, *m, *s;
  241. #endif
  242. {
  243.    long ij;
  244.  
  245.    j += 0.5;         /* Astronomical to civil */
  246.    ij = (j - floor(j)) * 86400.0;
  247.    *h = ij / 3600L;
  248.    *m = (ij / 60L) % 60L;
  249.    *s = ij % 60L;
  250. }
  251.  
  252. /***************************************************************/
  253. /*                                                             */
  254. /*  meanphase                                                  */
  255. /*                                                             */
  256. /*  Calculates mean phase of the Moon for a                    */
  257. /*  given base date and desired phase:                   */
  258. /*     0.0   New Moon                           */
  259. /*     0.25  First quarter                       */
  260. /*     0.5   Full moon                           */
  261. /*     0.75  Last quarter                       */
  262. /*  Beware!!!  This routine returns meaningless               */
  263. /*  results for any other phase arguments.  Don't           */
  264. /*  attempt to generalise it without understanding           */
  265. /*  that the motion of the moon is far more complicated           */
  266. /*  than this calculation reveals.                   */
  267. /*                                                             */
  268. /***************************************************************/
  269. #ifdef HAVE_PROTOS
  270. PRIVATE double meanphase(double sdate, double phase, double *usek)
  271. #else
  272. static double meanphase(sdate, phase, usek)
  273. double sdate, phase;
  274. double *usek;
  275. #endif
  276. {
  277.    int yy, mm, dd;
  278.    double k, t, t2, t3, nt1;
  279.  
  280.    jyear(sdate, &yy, &mm, &dd);
  281.  
  282.    k = (yy + ((mm - 1) * (1.0 / 12.0)) - 1900) * 12.3685;
  283.  
  284.    /* Time in Julian centuries from 1900 January 0.5 */
  285.    t = (sdate - 2415020.0) / 36525;
  286.    t2 = t * t;           /* Square for frequent use */
  287.    t3 = t2 * t;           /* Cube for frequent use */
  288.  
  289.    *usek = k = floor(k) + phase;
  290.    nt1 = 2415020.75933 + synmonth * k
  291.          + 0.0001178 * t2
  292.          - 0.000000155 * t3
  293.          + 0.00033 * dsin(166.56 + 132.87 * t - 0.009173 * t2);
  294.  
  295.    return nt1;
  296. }
  297.  
  298. /***************************************************************/
  299. /*                                                             */
  300. /*  truephase                                                  */
  301. /*                                                             */
  302. /*  Given a K value used to determine the                      */
  303. /*  mean phase of the new moon, and a phase                    */
  304. /*  selector (0.0, 0.25, 0.5, 0.75), obtain                    */
  305. /*  the true, corrected phase time.                            */
  306. /*                                                             */
  307. /***************************************************************/
  308. #ifdef HAVE_PROTOS
  309. PRIVATE double truephase(double k, double phase)
  310. #else
  311. static double truephase(k, phase)
  312. double k, phase;
  313. #endif
  314. {
  315.    double t, t2, t3, pt, m, mprime, f;
  316.    int apcor = 0;
  317.  
  318.    k += phase;           /* Add phase to new moon time */
  319.    t = k / 1236.85;       /* Time in Julian centuries from
  320.                      1900 January 0.5 */
  321.    t2 = t * t;           /* Square for frequent use */
  322.    t3 = t2 * t;           /* Cube for frequent use */
  323.    pt = 2415020.75933       /* Mean time of phase */
  324.         + synmonth * k
  325.         + 0.0001178 * t2
  326.         - 0.000000155 * t3
  327.         + 0.00033 * dsin(166.56 + 132.87 * t - 0.009173 * t2);
  328.  
  329.         m = 359.2242               /* Sun's mean anomaly */
  330.        + 29.10535608 * k
  331.        - 0.0000333 * t2
  332.        - 0.00000347 * t3;
  333.         mprime = 306.0253          /* Moon's mean anomaly */
  334.        + 385.81691806 * k
  335.        + 0.0107306 * t2
  336.        + 0.00001236 * t3;
  337.         f = 21.2964                /* Moon's argument of latitude */
  338.        + 390.67050646 * k
  339.        - 0.0016528 * t2
  340.        - 0.00000239 * t3;
  341.    if ((phase < 0.01) || (abs(phase - 0.5) < 0.01)) {
  342.  
  343.       /* Corrections for New and Full Moon */
  344.  
  345.       pt +=     (0.1734 - 0.000393 * t) * dsin(m)
  346.            + 0.0021 * dsin(2 * m)
  347.            - 0.4068 * dsin(mprime)
  348.            + 0.0161 * dsin(2 * mprime)
  349.            - 0.0004 * dsin(3 * mprime)
  350.            + 0.0104 * dsin(2 * f)
  351.            - 0.0051 * dsin(m + mprime)
  352.            - 0.0074 * dsin(m - mprime)
  353.            + 0.0004 * dsin(2 * f + m)
  354.            - 0.0004 * dsin(2 * f - m)
  355.            - 0.0006 * dsin(2 * f + mprime)
  356.            + 0.0010 * dsin(2 * f - mprime)
  357.            + 0.0005 * dsin(m + 2 * mprime);
  358.       apcor = 1;
  359.    } else if ((abs(phase - 0.25) < 0.01 || (abs(phase - 0.75) < 0.01))) {
  360.       pt +=     (0.1721 - 0.0004 * t) * dsin(m)
  361.            + 0.0021 * dsin(2 * m)
  362.            - 0.6280 * dsin(mprime)
  363.            + 0.0089 * dsin(2 * mprime)
  364.            - 0.0004 * dsin(3 * mprime)
  365.            + 0.0079 * dsin(2 * f)
  366.            - 0.0119 * dsin(m + mprime)
  367.            - 0.0047 * dsin(m - mprime)
  368.            + 0.0003 * dsin(2 * f + m)
  369.            - 0.0004 * dsin(2 * f - m)
  370.            - 0.0006 * dsin(2 * f + mprime)
  371.            + 0.0021 * dsin(2 * f - mprime)
  372.            + 0.0003 * dsin(m + 2 * mprime)
  373.            + 0.0004 * dsin(m - 2 * mprime)
  374.            - 0.0003 * dsin(2 * m + mprime);
  375.       if (phase < 0.5)
  376.          /* First quarter correction */
  377.          pt += 0.0028 - 0.0004 * dcos(m) + 0.0003 * dcos(mprime);
  378.       else
  379.          /* Last quarter correction */
  380.          pt += -0.0028 + 0.0004 * dcos(m) - 0.0003 * dcos(mprime);
  381.       apcor = 1;
  382.    }
  383.    if (!apcor) return 0.0;
  384.    return pt;
  385. }
  386.  
  387. /***************************************************************/
  388. /*                                                             */
  389. /*  kepler                                                     */
  390. /*                                                             */
  391. /*  Solve the equation of Kepler.                              */
  392. /*                                                             */
  393. /***************************************************************/
  394. #ifdef HAVE_PROTOS
  395. PRIVATE double kepler(double m, double ecc)
  396. #else
  397. static double kepler(m, ecc)
  398. double m, ecc;
  399. #endif
  400. {
  401.    double e, delta;
  402. #define EPSILON 1E-6
  403.  
  404.    e = m = torad(m);
  405.    do {
  406.       delta = e - ecc * sin(e) - m;
  407.       e -= delta / (1 - ecc * cos(e));
  408.    } while (abs(delta) > EPSILON);
  409.    return e;
  410. }
  411. /***************************************************************/
  412. /*                                                             */
  413. /*  PHASE  --  Calculate phase of moon as a fraction:          */
  414. /*                                                             */
  415. /*   The argument is the time for which the phase is              */
  416. /*   Requested, expressed as a Julian date and               */
  417. /*   fraction.  Returns the terminator phase angle as a           */
  418. /*   percentage of a full circle (i.e., 0 to 1), and           */
  419. /*   stores into pointer arguments the illuminated           */
  420. /*   fraction of the Moon's disc, the Moon's age in           */
  421. /*   days and fraction, the distance of the Moon from           */
  422. /*   the centre of the Earth, and the angular diameter           */
  423. /*   subtended by the Moon as seen by an observer at           */
  424. /*   the centre of the Earth.                       */
  425. /*                                                             */
  426. /***************************************************************/
  427. #ifdef HAVE_PROTOS
  428. PRIVATE double phase(double pdate,
  429.                  double *pphase,
  430.              double *mage,
  431.              double *dist,
  432.              double *angdia,
  433.              double *sudist,
  434.              double *suangdia)
  435. #else
  436. static double phase(pdate, pphase, mage, dist, angdia, sudist, suangdia)
  437. double pdate;
  438. double *pphase;            /* Illuminated fraction */
  439. double *mage;               /* Age of moon in days */
  440. double *dist;               /* Distance in kilometres */
  441. double *angdia;            /* Angular diameter in degrees */
  442. double *sudist;            /* Distance to Sun */
  443. double *suangdia;                  /* Sun's angular diameter */
  444. #endif
  445. {
  446.  
  447.    double Day, N, M, Ec, Lambdasun, ml, MM, MN, Ev, Ae, A3, MmP,
  448.           mEc, A4, lP, V, lPP, NP, y, x, Lambdamoon,
  449.           MoonAge, MoonPhase,
  450.           MoonDist, MoonDFrac, MoonAng,
  451.           F, SunDist, SunAng;
  452.  
  453.         /* Calculation of the Sun's position */
  454.  
  455.    Day = pdate - epoch;        /* Date within epoch */
  456.    N = fixangle((360 / 365.2422) * Day); /* Mean anomaly of the Sun */
  457.    M = fixangle(N + elonge - elongp);    /* Convert from perigee
  458.                       co-ordinates to epoch 1980.0 */
  459.    Ec = kepler(M, eccent);     /* Solve equation of Kepler */
  460.    Ec = sqrt((1 + eccent) / (1 - eccent)) * tan(Ec / 2);
  461.    Ec = 2 * todeg(atan(Ec));   /* 1 anomaly */
  462.    Lambdasun = fixangle(Ec + elongp);  /* Sun's geocentric ecliptic
  463.                           longitude */
  464.    /* Orbital distance factor */
  465.    F = ((1 + eccent * cos(torad(Ec))) / (1 - eccent * eccent));
  466.    SunDist = sunsmax / F;        /* Distance to Sun in km */
  467.         SunAng = F * sunangsiz;     /* Sun's angular size in degrees */
  468.  
  469.  
  470.         /* Calculation of the Moon's position */
  471.  
  472.         /* Moon's mean longitude */
  473.    ml = fixangle(13.1763966 * Day + mmlong);
  474.  
  475.         /* Moon's mean anomaly */
  476.    MM = fixangle(ml - 0.1114041 * Day - mmlongp);
  477.  
  478.         /* Moon's ascending node mean longitude */
  479.    MN = fixangle(mlnode - 0.0529539 * Day);
  480.  
  481.    /* Evection */
  482.    Ev = 1.2739 * sin(torad(2 * (ml - Lambdasun) - MM));
  483.  
  484.    /* Annual equation */
  485.    Ae = 0.1858 * sin(torad(M));
  486.  
  487.    /* Correction term */
  488.    A3 = 0.37 * sin(torad(M));
  489.  
  490.    /* Corrected anomaly */
  491.    MmP = MM + Ev - Ae - A3;
  492.  
  493.    /* Correction for the equation of the centre */
  494.    mEc = 6.2886 * sin(torad(MmP));
  495.  
  496.    /* Another correction term */
  497.    A4 = 0.214 * sin(torad(2 * MmP));
  498.  
  499.    /* Corrected longitude */
  500.    lP = ml + Ev + mEc - Ae + A4;
  501.  
  502.    /* Variation */
  503.    V = 0.6583 * sin(torad(2 * (lP - Lambdasun)));
  504.  
  505.    /* 1 longitude */
  506.    lPP = lP + V;
  507.  
  508.    /* Corrected longitude of the node */
  509.    NP = MN - 0.16 * sin(torad(M));
  510.  
  511.    /* Y inclination coordinate */
  512.    y = sin(torad(lPP - NP)) * cos(torad(minc));
  513.  
  514.    /* X inclination coordinate */
  515.    x = cos(torad(lPP - NP));
  516.  
  517.    /* Ecliptic longitude */
  518.    Lambdamoon = todeg(atan2(y, x));
  519.    Lambdamoon += NP;
  520.  
  521.    /* Calculation of the phase of the Moon */
  522.  
  523.    /* Age of the Moon in degrees */
  524.    MoonAge = lPP - Lambdasun;
  525.  
  526.    /* Phase of the Moon */
  527.    MoonPhase = (1 - cos(torad(MoonAge))) / 2;
  528.  
  529.    /* Calculate distance of moon from the centre of the Earth */
  530.  
  531.    MoonDist = (msmax * (1 - mecc * mecc)) /
  532.       (1 + mecc * cos(torad(MmP + mEc)));
  533.  
  534.         /* Calculate Moon's angular diameter */
  535.  
  536.    MoonDFrac = MoonDist / msmax;
  537.    MoonAng = mangsiz / MoonDFrac;
  538.  
  539.    if(pphase)   *pphase = MoonPhase;
  540.    if(mage)     *mage = synmonth * (fixangle(MoonAge) / 360.0);
  541.    if(dist)     *dist = MoonDist;
  542.    if(angdia)   *angdia = MoonAng;
  543.    if(sudist)   *sudist = SunDist;
  544.    if(suangdia) *suangdia = SunAng;
  545.    return fixangle(MoonAge) / 360.0;
  546. }
  547.  
  548. /***************************************************************/
  549. /*                                                             */
  550. /*  MoonPhase                                                  */
  551. /*                                                             */
  552. /*  Interface routine dealing in Remind representations.       */
  553. /*  Given a local date and time, returns the moon phase at     */
  554. /*  that date and time as a number from 0 to 360.              */
  555. /*                                                             */
  556. /***************************************************************/
  557. #ifdef HAVE_PROTOS
  558. PUBLIC int MoonPhase(int date, int time)
  559. #else
  560. int MoonPhase(date, time)
  561. int date, time;
  562. #endif
  563. {
  564.    int utcd, utct;
  565.    int y, m, d;
  566.    double jd, mp;
  567.  
  568.    /* Convert from local to UTC */
  569.    LocalToUTC(date, time, &utcd, &utct);
  570.  
  571.    /* Convert from Remind representation to year/mon/day */
  572.    FromJulian(utcd, &y, &m, &d);
  573.  
  574.    /* Convert to a true Julian date -- sorry for the name clashes! */
  575.    jd = jtime(y, m, d, (utct / 60), (utct % 60), 0);   
  576.  
  577.    /* Calculate moon phase */
  578.    mp = 360.0 * phase(jd, NULL, NULL, NULL, NULL, NULL, NULL);
  579.    return (int) mp;
  580. }
  581.  
  582. /***************************************************************/
  583. /*                                                             */
  584. /*  HuntPhase                                                  */
  585. /*                                                             */
  586. /*  Given a starting date and time and a target phase, find    */
  587. /*  the first date on or after the starting date and time when */
  588. /*  the moon hits the specified phase.  Phase must be from     */
  589. /*  0 to 3 for new, 1stq, full, 3rdq                           */
  590. /*                                                             */
  591. /***************************************************************/
  592. #ifdef HAVE_PROTOS
  593. PUBLIC void HuntPhase(int startdate, int starttim, int phas, int *date, int *time)
  594. #else
  595. void HuntPhase(startdate, starttim, phas, date, time)
  596. int startdate, starttim, phas, *date, *time;
  597. #endif
  598. {
  599.    int utcd, utct;
  600.    int y, m, d;
  601.    int h, min, s;
  602.    int d1, t1;
  603.    double k1, k2, jd, jdorig;
  604.    double nt1, nt2;
  605.    /* Convert from local to UTC */
  606.    LocalToUTC(startdate, starttim, &utcd, &utct);
  607.  
  608.    /* Convert from Remind representation to year/mon/day */
  609.    FromJulian(utcd, &y, &m, &d);
  610.  
  611.    /* Convert to a true Julian date -- sorry for the name clashes! */
  612.    jdorig = jtime(y, m, d, (utct / 60), (utct % 60), 0);   
  613.    jd = jdorig - 45;
  614.    nt1 = meanphase(jd, 0.0, &k1);
  615.    while(1) {
  616.       jd += synmonth;
  617.       nt2 = meanphase(jd, 0.0, &k2);
  618.       if (nt1 <= jdorig && nt2 > jdorig) break;
  619.       nt1 = nt2;
  620.       k1 = k2;
  621.    }
  622.    jd = truephase(k1, phas/4.0);
  623.    if (jd < jdorig) jd = truephase(k2, phas/4.0);
  624.  
  625.    /* Convert back to Remind format */
  626.    jyear(jd, &y, &m, &d);
  627.    jhms(jd, &h, &min, &s);
  628.  
  629.    d1 = Julian(y, m, d);
  630.    t1 = h*60 + min;
  631.    UTCToLocal(d1, t1, date, time);
  632. }
  633.