pom.c revision 53920
1/*
2 * Copyright (c) 1989, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * This code is derived from software posted to USENET.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 *    must display the following acknowledgement:
17 *	This product includes software developed by the University of
18 *	California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 *    may be used to endorse or promote products derived from this software
21 *    without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36#ifndef lint
37static const char copyright[] =
38"@(#) Copyright (c) 1989, 1993\n\
39	The Regents of the University of California.  All rights reserved.\n";
40#endif /* not lint */
41
42#ifndef lint
43#if 0
44static const char sccsid[] = "@(#)pom.c       8.1 (Berkeley) 5/31/93";
45#endif
46static const char rcsid[] =
47 "$FreeBSD: head/games/pom/pom.c 53920 1999-11-30 03:50:02Z billf $";
48#endif /* not lint */
49
50/*
51 * Phase of the Moon.  Calculates the current phase of the moon.
52 * Based on routines from `Practical Astronomy with Your Calculator',
53 * by Duffett-Smith.  Comments give the section from the book that
54 * particular piece of code was adapted from.
55 *
56 * -- Keith E. Brandt  VIII 1984
57 *
58 */
59
60#include <time.h>
61#include <stdio.h>
62#include <math.h>
63
64#ifndef	PI
65#define	PI	  3.14159265358979323846
66#endif
67#define	EPOCH	  85
68#define	EPSILONg  279.611371	/* solar ecliptic long at EPOCH */
69#define	RHOg	  282.680403	/* solar ecliptic long of perigee at EPOCH */
70#define	ECCEN	  0.01671542	/* solar orbit eccentricity */
71#define	lzero	  18.251907	/* lunar mean long at EPOCH */
72#define	Pzero	  192.917585	/* lunar mean long of perigee at EPOCH */
73#define	Nzero	  55.204723	/* lunar mean long of node at EPOCH */
74#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
75
76static void	adj360 __P((double *));
77static double	dtor __P((double));
78static double	potm __P((double));
79
80int
81main()
82{
83	time_t tt;
84	struct tm *GMT;
85	double days, today, tomorrow;
86	int cnt;
87
88	(void) time(&tt);
89	GMT = gmtime(&tt);
90	days = (GMT->tm_yday + 1) + ((GMT->tm_hour +
91	    (GMT->tm_min / 60.0) + (GMT->tm_sec / 3600.0)) / 24.0);
92	for (cnt = EPOCH; cnt < GMT->tm_year; ++cnt)
93		days += isleap(1900 + cnt) ? 366 : 365;
94	today = potm(days) + .5;
95	(void)printf("The Moon is ");
96	if ((int)today == 100)
97		(void)printf("Full\n");
98	else if (!(int)today)
99		(void)printf("New\n");
100	else {
101		tomorrow = potm(days + 1);
102		if ((int)today == 50)
103			(void)printf("%s\n", tomorrow > today ?
104			    "at the First Quarter" : "at the Last Quarter");
105		else {
106			(void)printf("%s ", tomorrow > today ?
107			    "Waxing" : "Waning");
108			if (today > 50)
109				(void)printf("Gibbous (%1.0f%% of Full)\n",
110				    today);
111			else if (today < 50)
112				(void)printf("Crescent (%1.0f%% of Full)\n",
113				    today);
114		}
115	}
116
117	return 0;
118}
119
120/*
121 * potm --
122 *	return phase of the moon
123 */
124static double
125potm(days)
126	double days;
127{
128	double N, Msol, Ec, LambdaSol, l, Mm, Ev, Ac, A3, Mmprime;
129	double A4, lprime, V, ldprime, D, Nm;
130
131	N = 360 * days / 365.2422;				/* sec 42 #3 */
132	adj360(&N);
133	Msol = N + EPSILONg - RHOg;				/* sec 42 #4 */
134	adj360(&Msol);
135	Ec = 360 / PI * ECCEN * sin(dtor(Msol));		/* sec 42 #5 */
136	LambdaSol = N + Ec + EPSILONg;				/* sec 42 #6 */
137	adj360(&LambdaSol);
138	l = 13.1763966 * days + lzero;				/* sec 61 #4 */
139	adj360(&l);
140	Mm = l - (0.1114041 * days) - Pzero;			/* sec 61 #5 */
141	adj360(&Mm);
142	Nm = Nzero - (0.0529539 * days);			/* sec 61 #6 */
143	adj360(&Nm);
144	Ev = 1.2739 * sin(dtor(2*(l - LambdaSol) - Mm));	/* sec 61 #7 */
145	Ac = 0.1858 * sin(dtor(Msol));				/* sec 61 #8 */
146	A3 = 0.37 * sin(dtor(Msol));
147	Mmprime = Mm + Ev - Ac - A3;				/* sec 61 #9 */
148	Ec = 6.2886 * sin(dtor(Mmprime));			/* sec 61 #10 */
149	A4 = 0.214 * sin(dtor(2 * Mmprime));			/* sec 61 #11 */
150	lprime = l + Ev + Ec - Ac + A4;				/* sec 61 #12 */
151	V = 0.6583 * sin(dtor(2 * (lprime - LambdaSol)));	/* sec 61 #13 */
152	ldprime = lprime + V;					/* sec 61 #14 */
153	D = ldprime - LambdaSol;				/* sec 63 #2 */
154	return(50 * (1 - cos(dtor(D))));			/* sec 63 #3 */
155}
156
157/*
158 * dtor --
159 *	convert degrees to radians
160 */
161static double
162dtor(deg)
163	double deg;
164{
165	return(deg * PI / 180);
166}
167
168/*
169 * adj360 --
170 *	adjust value so 0 <= deg <= 360
171 */
172static void
173adj360(deg)
174	double *deg;
175{
176	for (;;)
177		if (*deg < 0)
178			*deg += 360;
179		else if (*deg > 360)
180			*deg -= 360;
181		else
182			break;
183}
184