]> git.mxchange.org Git - flightgear.git/blob - src/Time/moonpos.cxx
Tweaks to reduce module interdependencies.
[flightgear.git] / src / Time / moonpos.cxx
1 // moonpos.cxx (basically, this is a slightly modified version of the 'sunpos.cxx' file, adapted from XEarth)
2
3 // kirk johnson
4 // july 1993
5 //
6 // code for calculating the position on the earth's surface for which
7 // the moon is directly overhead (adapted from _practical astronomy
8 // with your calculator, third edition_, peter duffett-smith,
9 // cambridge university press, 1988.)
10 //
11 // Copyright (C) 1989, 1990, 1993, 1994, 1995 Kirk Lauritz Johnson
12 //
13 // Parts of the source code (as marked) are:
14 //   Copyright (C) 1989, 1990, 1991 by Jim Frost
15 //   Copyright (C) 1992 by Jamie Zawinski <jwz@lucid.com>
16 //
17 // Permission to use, copy, modify and freely distribute xearth for
18 // non-commercial and not-for-profit purposes is hereby granted
19 // without fee, provided that both the above copyright notice and this
20 // permission notice appear in all copies and in supporting
21 // documentation.
22 //
23 // The author makes no representations about the suitability of this
24 // software for any purpose. It is provided "as is" without express or
25 // implied warranty.
26 //
27 // THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
28 // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
29 // IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT
30 // OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
31 // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
32 // NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
33 // CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
34 //
35 // $Id$
36
37
38 #ifdef HAVE_CONFIG_H
39 #  include <config.h>
40 #endif
41
42 #include <simgear/compiler.h>
43
44 #ifdef FG_HAVE_STD_INCLUDES
45 #  include <cmath>
46 #  include <cstdio>
47 #  include <ctime>
48 #else
49 #  include <math.h>
50 #  include <stdio.h>
51 #  include <time.h>
52 #endif
53
54 #include <simgear/constants.h>
55 #include <simgear/debug/logstream.hxx>
56 #include <simgear/math/fg_geodesy.hxx>
57 #include <simgear/math/point3d.hxx>
58 #include <simgear/math/polar3d.hxx>
59 #include <simgear/math/vector.hxx>
60
61 #include <Astro/ephemeris.hxx>
62 #include <Main/views.hxx>
63 #include <Scenery/scenery.hxx>
64
65 #include "fg_time.hxx"
66 #include "moonpos.hxx"
67
68 // extern SolarSystem *solarSystem;
69 extern FGEphemeris *ephem;
70
71 #undef E
72
73
74 /*
75  * the epoch upon which these astronomical calculations are based is
76  * 1990 january 0.0, 631065600 seconds since the beginning of the
77  * "unix epoch" (00:00:00 GMT, Jan. 1, 1970)
78  *
79  * given a number of seconds since the start of the unix epoch,
80  * DaysSinceEpoch() computes the number of days since the start of the
81  * astronomical epoch (1990 january 0.0)
82  */
83
84 #define EpochStart           (631065600)
85 #define DaysSinceEpoch(secs) (((secs)-EpochStart)*(1.0/(24*3600)))
86
87 /*
88  * assuming the apparent orbit of the moon about the earth is circular,
89  * the rate at which the orbit progresses is given by RadsPerDay --
90  * FG_2PI radians per orbit divided by 365.242191 days per year:
91  */
92
93 #define RadsPerDay (FG_2PI/365.242191)
94
95 /*
96  * details of moon's apparent orbit at epoch 1990.0 (after
97  * duffett-smith, table 6, section 46)
98  *
99  * Epsilon_g    (ecliptic longitude at epoch 1990.0) 279.403303 degrees
100  * OmegaBar_g   (ecliptic longitude of perigee)      282.768422 degrees
101  * Eccentricity (eccentricity of orbit)                0.016713
102  */
103
104 #define Epsilon_g    (279.403303*(FG_2PI/360))
105 #define OmegaBar_g   (282.768422*(FG_2PI/360))
106 #define Eccentricity (0.016713)
107
108 /*
109  * MeanObliquity gives the mean obliquity of the earth's axis at epoch
110  * 1990.0 (computed as 23.440592 degrees according to the method given
111  * in duffett-smith, section 27)
112  */
113 #define MeanObliquity (23.440592*(FG_2PI/360))
114
115 /* static double solve_keplers_equation(double); */
116 /* static double moon_ecliptic_longitude(time_t); */
117 static void   ecliptic_to_equatorial(double, double, double *, double *);
118 static double julian_date(int, int, int);
119 static double GST(time_t);
120
121 /*
122  * solve Kepler's equation via Newton's method
123  * (after duffett-smith, section 47)
124  */
125 /*
126 static double solve_keplers_equation(double M) {
127     double E;
128     double delta;
129
130     E = M;
131     while (1) {
132         delta = E - Eccentricity*sin(E) - M;
133         if (fabs(delta) <= 1e-10) break;
134         E -= delta / (1 - Eccentricity*cos(E));
135     }
136
137     return E;
138 }
139 */
140
141
142 /* compute ecliptic longitude of moon (in radians) (after
143  * duffett-smith, section 47) */
144 /*
145 static double moon_ecliptic_longitude(time_t ssue) {
146     // time_t ssue;              //  seconds since unix epoch
147     double D, N;
148     double M_moon, E;
149     double v;
150
151     D = DaysSinceEpoch(ssue);
152
153     N = RadsPerDay * D;
154     N = fmod(N, FG_2PI);
155     if (N < 0) N += FG_2PI;
156
157     M_moon = N + Epsilon_g - OmegaBar_g;
158     if (M_moon < 0) M_moon += FG_2PI;
159
160     E = solve_keplers_equation(M_moon);
161     v = 2 * atan(sqrt((1+Eccentricity)/(1-Eccentricity)) * tan(E/2));
162
163     return (v + OmegaBar_g);
164 }
165 */
166
167
168 /* convert from ecliptic to equatorial coordinates (after
169  * duffett-smith, section 27) */
170
171 static void ecliptic_to_equatorial(double lambda, double beta, 
172                                    double *alpha, double *delta) {
173     /* double  lambda;            ecliptic longitude       */
174     /* double  beta;              ecliptic latitude        */
175     /* double *alpha;             (return) right ascension */
176     /* double *delta;             (return) declination     */
177
178     double sin_e, cos_e;
179     double sin_l, cos_l;
180
181     sin_e = sin(MeanObliquity);
182     cos_e = cos(MeanObliquity);
183     sin_l = sin(lambda);
184     cos_l = cos(lambda);
185
186     *alpha = atan2(sin_l*cos_e - tan(beta)*sin_e, cos_l);
187     *delta = asin(sin(beta)*cos_e + cos(beta)*sin_e*sin_l);
188 }
189
190
191 /* computing julian dates (assuming gregorian calendar, thus this is
192  * only valid for dates of 1582 oct 15 or later) (after duffett-smith,
193  * section 4) */
194
195 static double julian_date(int y, int m, int d) {
196     /* int y;                    year (e.g. 19xx)          */
197     /* int m;                    month (jan=1, feb=2, ...) */
198     /* int d;                    day of month              */
199
200     int    A, B, C, D;
201     double JD;
202
203     /* lazy test to ensure gregorian calendar */
204     if (y < 1583) {
205         FG_LOG( FG_EVENT, FG_ALERT, 
206                 "WHOOPS! Julian dates only valid for 1582 oct 15 or later" );
207     }
208
209     if ((m == 1) || (m == 2)) {
210         y -= 1;
211         m += 12;
212     }
213
214     A = y / 100;
215     B = 2 - A + (A / 4);
216     C = (int)(365.25 * y);
217     D = (int)(30.6001 * (m + 1));
218
219     JD = B + C + D + d + 1720994.5;
220
221     return JD;
222 }
223
224
225 /* compute greenwich mean sidereal time (GST) corresponding to a given
226  * number of seconds since the unix epoch (after duffett-smith,
227  * section 12) */
228 static double GST(time_t ssue) {
229     /* time_t ssue;           seconds since unix epoch */
230
231     double     JD;
232     double     T, T0;
233     double     UT;
234     struct tm *tm;
235
236     tm = gmtime(&ssue);
237
238     JD = julian_date(tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
239     T  = (JD - 2451545) / 36525;
240
241     T0 = ((T + 2.5862e-5) * T + 2400.051336) * T + 6.697374558;
242
243     T0 = fmod(T0, 24.0);
244     if (T0 < 0) T0 += 24;
245
246     UT = tm->tm_hour + (tm->tm_min + tm->tm_sec / 60.0) / 60.0;
247
248     T0 += UT * 1.002737909;
249     T0 = fmod(T0, 24.0);
250     if (T0 < 0) T0 += 24;
251
252     return T0;
253 }
254
255
256 /* given a particular time (expressed in seconds since the unix
257  * epoch), compute position on the earth (lat, lon) such that moon is
258  * directly overhead.  (lat, lon are reported in radians */
259
260 void fgMoonPosition(time_t ssue, double *lon, double *lat) {
261     /* time_t  ssue;           seconds since unix epoch */
262     /* double *lat;            (return) latitude        */
263     /* double *lon;            (return) longitude       */
264
265     /* double lambda; */
266     double alpha, delta;
267     double tmp;
268
269     /* lambda = moon_ecliptic_longitude(ssue); */
270     /* ecliptic_to_equatorial(lambda, 0.0, &alpha, &delta); */
271     //ecliptic_to_equatorial (solarPosition.lonMoon, 0.0, &alpha, &delta);
272     
273     /* ********************************************************************** 
274      * NOTE: in the next function, each time the moon's position is updated, the
275      * the moon's longitude is returned from solarSystem->moon. Note that the 
276      * moon's position is updated at a much higher frequency than the rate at 
277      * which the solar system's rebuilds occur. This is not a problem, however,
278      * because the fgMoonPosition we're talking about here concerns the changing
279      * position of the moon due to the daily rotation of the earth.
280      * The ecliptic longitude, however, represents the position of the moon with
281      * respect to the stars, and completes just one cycle over the course of a 
282      * year. Its therefore pretty safe to update the moon's longitude only once
283      * every ten minutes. (Comment added by Durk Talsma).
284      ************************************************************************/
285
286     ecliptic_to_equatorial( ephem->get_moon()->getLon(),
287                             0.0, &alpha, &delta );
288     tmp = alpha - (FG_2PI/24)*GST(ssue);
289     if (tmp < -FG_PI) {
290         do tmp += FG_2PI;
291         while (tmp < -FG_PI);
292     } else if (tmp > FG_PI) {
293         do tmp -= FG_2PI;
294         while (tmp < -FG_PI);
295     }
296
297     *lon = tmp;
298     *lat = delta;
299 }
300
301
302 /* given a particular time expressed in side real time at prime
303  * meridian (GST), compute position on the earth (lat, lon) such that
304  * moon is directly overhead.  (lat, lon are reported in radians */
305
306 static void fgMoonPositionGST(double gst, double *lon, double *lat) {
307     /* time_t  ssue;           seconds since unix epoch */
308     /* double *lat;            (return) latitude        */
309     /* double *lon;            (return) longitude       */
310
311     /* double lambda; */
312     double alpha, delta;
313     double tmp;
314
315     /* lambda = moon_ecliptic_longitude(ssue); */
316     /* ecliptic_to_equatorial(lambda, 0.0, &alpha, &delta); */
317     //ecliptic_to_equatorial (solarPosition.lonMoon, 0.0, &alpha, &delta);
318     ecliptic_to_equatorial( ephem->get_moon()->getLon(),
319                             ephem->get_moon()->getLat(), 
320                             &alpha,  &delta );
321
322 //    tmp = alpha - (FG_2PI/24)*GST(ssue);
323     tmp = alpha - (FG_2PI/24)*gst;      
324     if (tmp < -FG_PI) {
325         do tmp += FG_2PI;
326         while (tmp < -FG_PI);
327     } else if (tmp > FG_PI) {
328         do tmp -= FG_2PI;
329         while (tmp < -FG_PI);
330     }
331
332     *lon = tmp;
333     *lat = delta;
334 }
335
336
337 // update the cur_time_params structure with the current moon position
338 void fgUpdateMoonPos( void ) {
339     fgLIGHT *l;
340     FGTime *t;
341     FGView *v;
342     sgVec3 nup, nmoon, v0, surface_to_moon;
343     Point3D p, rel_moonpos;
344     double dot, east_dot;
345     double moon_gd_lat, sl_radius;
346
347     l = &cur_light_params;
348     t = FGTime::cur_time_params;
349     v = &current_view;
350
351     FG_LOG( FG_EVENT, FG_INFO, "  Updating Moon position" );
352
353     // (not sure why there was two)
354     // fgMoonPosition(t->cur_time, &l->moon_lon, &moon_gd_lat);
355     fgMoonPositionGST(t->getGst(), &l->moon_lon, &moon_gd_lat);
356
357     fgGeodToGeoc(moon_gd_lat, 0.0, &sl_radius, &l->moon_gc_lat);
358
359     p = Point3D( l->moon_lon, l->moon_gc_lat, sl_radius );
360     l->fg_moonpos = fgPolarToCart3d(p);
361
362     FG_LOG( FG_EVENT, FG_INFO, "    t->cur_time = " << t->get_cur_time() );
363     FG_LOG( FG_EVENT, FG_INFO, 
364             "    Moon Geodetic lat = " << moon_gd_lat
365             << " Geocentric lat = " << l->moon_gc_lat );
366
367     // update the sun light vector
368     sgSetVec4( l->moon_vec,
369                l->fg_moonpos.x(), l->fg_moonpos.y(), l->fg_moonpos.z(), 0.0 );
370     sgNormalizeVec4( l->moon_vec );
371     sgCopyVec4( l->moon_vec_inv, l->moon_vec );
372     sgNegateVec4( l->moon_vec_inv );
373
374     // make sure these are directional light sources only
375     l->moon_vec[3] = l->moon_vec_inv[3] = 0.0;
376     // cout << "  l->moon_vec = " << l->moon_vec[0] << "," << l->moon_vec[1]
377     //      << ","<< l->moon_vec[2] << endl;
378
379     // calculate the moon's relative angle to local up
380     sgCopyVec3( nup, v->get_local_up() );
381     sgSetVec3( nmoon, l->fg_moonpos.x(), l->fg_moonpos.y(), l->fg_moonpos.z() );
382     sgNormalizeVec3(nup);
383     sgNormalizeVec3(nmoon);
384     // cout << "nup = " << nup[0] << "," << nup[1] << "," 
385     //      << nup[2] << endl;
386     // cout << "nmoon = " << nmoon[0] << "," << nmoon[1] << "," 
387     //      << nmoon[2] << endl;
388
389     l->moon_angle = acos( sgScalarProductVec3( nup, nmoon ) );
390     cout << "moon angle relative to current location = " 
391          << l->moon_angle << endl;
392     
393     // calculate vector to moon's position on the earth's surface
394     rel_moonpos = l->fg_moonpos - (v->get_view_pos() + scenery.center);
395     v->set_to_moon( rel_moonpos.x(), rel_moonpos.y(), rel_moonpos.z() );
396     // printf( "Vector to moon = %.2f %.2f %.2f\n",
397     //         v->to_moon[0], v->to_moon[1], v->to_moon[2]);
398
399     // make a vector to the current view position
400     Point3D view_pos = v->get_view_pos();
401     sgSetVec3( v0, view_pos.x(), view_pos.y(), view_pos.z() );
402
403     // Given a vector from the view position to the point on the
404     // earth's surface the moon is directly over, map into onto the
405     // local plane representing "horizontal".
406
407     sgmap_vec_onto_cur_surface_plane( v->get_local_up(), v0, 
408                                       v->get_to_moon(), surface_to_moon );
409     sgNormalizeVec3(surface_to_moon);
410     v->set_surface_to_moon( surface_to_moon[0], surface_to_moon[1], 
411                             surface_to_moon[2] );
412     // cout << "(sg) Surface direction to moon is "
413     //   << surface_to_moon[0] << "," 
414     //   << surface_to_moon[1] << ","
415     //   << surface_to_moon[2] << endl;
416     // cout << "Should be close to zero = " 
417     //   << sgScalarProductVec3(nup, surface_to_moon) << endl;
418
419     // calculate the angle between v->surface_to_moon and
420     // v->surface_east.  We do this so we can sort out the acos()
421     // ambiguity.  I wish I could think of a more efficient way ... :-(
422     east_dot = sgScalarProductVec3( surface_to_moon, v->get_surface_east() );
423    // cout << "  East dot product = " << east_dot << endl;
424
425     // calculate the angle between v->surface_to_moon and
426     // v->surface_south.  this is how much we have to rotate the sky
427     // for it to align with the moon
428     dot = sgScalarProductVec3( surface_to_moon, v->get_surface_south() );
429     // cout << "  Dot product = " << dot << endl;
430
431     if ( east_dot >= 0 ) {
432         l->moon_rotation = acos(dot);
433     } else {
434         l->moon_rotation = -acos(dot);
435     }
436     // cout << "  Sky needs to rotate = " << angle << " rads = "
437     //      << angle * RAD_TO_DEG << " degrees." << endl;
438 }
439
440