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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/* nutation.cpp: implements 1980 IAU nutation theory
Copyright (C) 2010, Project Pluto
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA. */
#ifdef TEST_PROGRAM
#include <stdio.h>
#endif
#include <stdint.h>
#include <math.h>
#include "watdefs.h"
#include "lunar.h"
/* 2013 Jul 22: switched to int8_t, int16_t, and int32_t for char,
short, and long constants. Also made them 'const' instead of
'static'. */
/* 21 Sep 2003: James Miller and Mark Huss pointed out an error in the
coefficients for the 52rd term, now shown (correctly) as 0, 0, 3, 2, 2.
This could lead to an error in the nutation in longitude of up to
.0006 degrees, or about 2.5 arcseconds. In order to fix this, I had
to make some small improvements to "de-gibberish-ize" the code, at
least a little. */
#ifdef MEEUS
/* Meeus' _Astronomical Algorithms_ gives a truncated version */
/* of the full IAU 1980 nutation series : */
#define N_NUTATION_COEFFS 62
#else
#define N_NUTATION_COEFFS 105
/* Really 106, but the first and largest term is handled separately */
#endif
#define PI 3.1415926535897932384626433832795028841971693993751058209749445923
#define NUTATION_COMPACT( D, M, Mp, F, Om) \
(int16_t)((D+4) * 9*9*9*9 + (M+4) * 9*9*9 + (Mp+4) * 9*9 + (F+4) * 9 + Om+4)
/* nutation formula comes from p 132-5, Meeus, Astro Algor */
/* input is time in julian centuries from 2000. */
/* *d_lon is nutation (delta phi) in arcseconds */
/* *d_obliq is nutation (delta epsilon) in arcseconds */
/* Either pointer can be NULL, in which case that value is */
/* not computed. (I added this because sometimes, you want */
/* only d_lon or d_obliq; in such cases, computing _both_ */
/* is a waste of perfectly good CPU time) */
/* Note that the coefficients are "compacted" using the above */
/* NUTATION_COMPACT macro. Had the coeffs been stored as five */
/* bytes per line instead of compacted into a 16-bit int, three */
/* bytes per line would have been wasted, for a total of 186 */
/* bytes. Back in the early 1990s, when this code was written, */
/* that actually mattered. It's obviously not something I'd do */
/* today. But I'm reluctant to modify code that works Just Fine. */
int DLL_FUNC nutation( const double t, double DLLPTR *d_lon,
double DLLPTR *d_obliq)
{
const double linear_part[5] = {445267.111480, 35999.050340,
477198.867398, 483202.017538, -1934.136261 };
const int32_t coeffs[5 * 3] = { 29785036L, -19142L, 189474L,
35752772L, - 1603L, -300000L,
13496298L, 86972L, 56250L,
9327191L, -36825L, 327270L,
12504452L, 20708L, 450000L };
const int16_t args[3 * N_NUTATION_COEFFS + 1] = {
/* D M Mp F Om */
NUTATION_COMPACT(-2, 0, 0, 2, 2),-13187,5736, /* 01 */
NUTATION_COMPACT( 0, 0, 0, 2, 2), -2274, 977, /* 02 */
NUTATION_COMPACT( 0, 0, 0, 0, 2), 2062,-895, /* 03 */
NUTATION_COMPACT( 0, 1, 0, 0, 0), 1426, 54, /* 04 */
NUTATION_COMPACT( 0, 0, 1, 0, 0), 712, -7, /* 05 */
NUTATION_COMPACT(-2, 1, 0, 2, 2), -517, 224, /* 06 */
NUTATION_COMPACT( 0, 0, 0, 2, 1), -386, 200, /* 07 */
NUTATION_COMPACT( 0, 0, 1, 2, 2), -301, 129, /* 08 */
NUTATION_COMPACT(-2,-1, 0, 2, 2), 217, -95, /* 09 */
NUTATION_COMPACT(-2, 0, 1, 0, 0), -158, 0, /* 10 */
NUTATION_COMPACT(-2, 0, 0, 2, 1), 129, -70, /* 11 */
NUTATION_COMPACT( 0, 0,-1, 2, 2), 123, -53, /* 12 */
NUTATION_COMPACT( 2, 0, 0, 0, 0), 63, 0, /* 13 */
NUTATION_COMPACT( 0, 0, 1, 0, 1), 63, -33, /* 14 */
NUTATION_COMPACT( 2, 0,-1, 2, 2), -59, 26, /* 15 */
NUTATION_COMPACT( 0, 0,-1, 0, 1), -58, 32, /* 16 */
NUTATION_COMPACT( 0, 0, 1, 2, 1), -51, 27, /* 17 */
NUTATION_COMPACT(-2, 0, 2, 0, 0), 48, 0, /* 18 */
NUTATION_COMPACT( 0, 0,-2, 2, 1), 46, -24, /* 19 */
NUTATION_COMPACT( 2, 0, 0, 2, 2), -38, 16, /* 20 */
NUTATION_COMPACT( 0, 0, 2, 2, 2), -31, 13, /* 21 */
NUTATION_COMPACT( 0, 0, 2, 0, 0), 29, 0, /* 22 */
NUTATION_COMPACT(-2, 0, 1, 2, 2), 29, -12, /* 23 */
NUTATION_COMPACT( 0, 0, 0, 2, 0), 26, 0, /* 24 */
NUTATION_COMPACT(-2, 0, 0, 2, 0), -22, 0, /* 25 */
NUTATION_COMPACT( 0, 0,-1, 2, 1), 21, -10, /* 26 */
NUTATION_COMPACT( 0, 2, 0, 0, 0), 17, 0, /* 27 */
NUTATION_COMPACT( 2, 0,-1, 0, 1), 16, -8, /* 28 */
NUTATION_COMPACT(-2, 2, 0, 2, 2), -16, 7, /* 29 */
NUTATION_COMPACT( 0, 1, 0, 0, 1), -15, 9, /* 30 */
NUTATION_COMPACT(-2, 0, 1, 0, 1), -13, 7, /* 31 */
NUTATION_COMPACT( 0,-1, 0, 0, 1), -12, 6, /* 32 */
NUTATION_COMPACT( 0, 0, 2,-2, 0), 11, 0, /* 33 */
NUTATION_COMPACT( 2, 0,-1, 2, 1), -10, 5, /* 34 */
NUTATION_COMPACT( 2, 0, 1, 2, 2), -8, 3, /* 35 */
NUTATION_COMPACT( 0, 1, 0, 2, 2), 7, -3, /* 36 */
NUTATION_COMPACT(-2, 1, 1, 0, 0), -7, 0, /* 37 */
NUTATION_COMPACT( 0,-1, 0, 2, 2), -7, 3, /* 38 */
NUTATION_COMPACT( 2, 0, 0, 2, 1), -7, 3, /* 39 */
NUTATION_COMPACT( 2, 0, 1, 0, 0), 6, 0, /* 40 */
NUTATION_COMPACT(-2, 0, 2, 2, 2), 6, -3, /* 41 */
NUTATION_COMPACT(-2, 0, 1, 2, 1), 6, -3, /* 42 */
NUTATION_COMPACT( 2, 0,-2, 0, 1), -6, 3, /* 43 */
NUTATION_COMPACT( 2, 0, 0, 0, 1), -6, 3, /* 44 */
NUTATION_COMPACT( 0,-1, 1, 0, 0), 5, 0, /* 45 */
NUTATION_COMPACT(-2,-1, 0, 2, 1), -5, 3, /* 46 */
NUTATION_COMPACT(-2, 0, 0, 0, 1), -5, 3, /* 47 */
NUTATION_COMPACT( 0, 0, 2, 2, 1), -5, 3, /* 48 */
NUTATION_COMPACT( 0, 0,-2, 2, 2), -3, 0, /* 49 */
NUTATION_COMPACT(-2, 0, 2, 0, 1), 4, 0, /* 50 */
NUTATION_COMPACT(-2, 1, 0, 2, 1), 4, 0, /* 51 */
NUTATION_COMPACT( 0, 0, 3, 2, 2), -3, 0, /* 52 */
NUTATION_COMPACT( 2,-1,-1, 2, 2), -3, 0, /* 53 */
NUTATION_COMPACT( 0,-1, 1, 2, 2), -3, 0, /* 54 */
NUTATION_COMPACT( 2,-1, 0, 2, 2), -3, 0, /* 55 */
NUTATION_COMPACT(-1,-1, 1, 0, 0), -3, 0, /* 56 */
NUTATION_COMPACT(-1, 0, 1, 0, 0), -4, 0, /* 57 */
NUTATION_COMPACT(-2, 1, 0, 0, 0), -4, 0, /* 58 */
NUTATION_COMPACT( 0, 0, 1,-2, 0), 4, 0, /* 59 */
NUTATION_COMPACT( 1, 0, 0, 0, 0), -4, 0, /* 60 */
NUTATION_COMPACT( 0, 1, 1, 0, 0), -3, 0, /* 61 */
NUTATION_COMPACT( 0, 0, 1, 2, 0), 3, 0, /* 62 */
#ifndef MEEUS
NUTATION_COMPACT( 1, 0, 0, 2, 2), 2, -1,
NUTATION_COMPACT( 0, 0, 2, 0, 1), 2, -1,
NUTATION_COMPACT( 0, 1, 1, 2, 2), 2, -1,
NUTATION_COMPACT(-2, 0,-1, 2, 1), -2, 1,
NUTATION_COMPACT(-2,-2, 0, 2, 1), -2, 1,
NUTATION_COMPACT( 4, 0,-1, 2, 2), -2, 1,
NUTATION_COMPACT( 0, 0,-2, 0, 1), -2, 1,
NUTATION_COMPACT( 0, 0, 1, 0, 2), -2, 1,
NUTATION_COMPACT( 0, 0, 3, 0, 0), 2, 0,
NUTATION_COMPACT(-2, 0, 2, 2, 1), 1, -1,
NUTATION_COMPACT(-2, 1, 1, 2, 2), 1, -1,
NUTATION_COMPACT( 0, 0,-1, 0, 2), 1, -1,
NUTATION_COMPACT( 2, 0,-2, 2, 2), 1, -1,
NUTATION_COMPACT( 4, 0,-2, 2, 2), -1, 1,
NUTATION_COMPACT( 2, 0, 1, 2, 1), -1, 1,
NUTATION_COMPACT(-4, 0, 1, 0, 0), -1, 0,
NUTATION_COMPACT( 2, 0, 1,-2, 0), -1, 0,
NUTATION_COMPACT( 0, 0, 0,-2, 1), -1, 0,
NUTATION_COMPACT(-2, 0, 1,-2, 0), -1, 0,
NUTATION_COMPACT(-4, 0, 2, 0, 0), -1, 0,
NUTATION_COMPACT(-1, 0, 0, 2, 2), -1, 0,
NUTATION_COMPACT( 2, 1, 0,-2, 0), -1, 0,
NUTATION_COMPACT( 2, 0, 1, 0, 1), -1, 0,
NUTATION_COMPACT( 2, 1, 0, 0, 0), -1, 0,
NUTATION_COMPACT( 2, 0, 2, 2, 2), -1, 0,
NUTATION_COMPACT(-2, 1, 0, 2, 0), -1, 0,
NUTATION_COMPACT(-2, 0, 1, 2, 0), -1, 0,
NUTATION_COMPACT( 0,-1, 0, 2, 1), -1, 0,
NUTATION_COMPACT( 4, 0, 0, 2, 2), -1, 0,
NUTATION_COMPACT(-2, 1, 1, 0, 1), -1, 0,
NUTATION_COMPACT( 2, 0, 0,-2, 1), 1, 0,
NUTATION_COMPACT( 0, 1, 0, 2, 1), 1, 0,
NUTATION_COMPACT( 2,-1,-1, 0, 1), 1, 0,
NUTATION_COMPACT( 0, 0, 2,-2, 1), 1, 0,
NUTATION_COMPACT(-2,-1, 1, 0, 0), 1, 0,
NUTATION_COMPACT(-2, 0, 3, 2, 2), 1, 0,
NUTATION_COMPACT( 0, 0,-1, 4, 2), 1, 0,
NUTATION_COMPACT(-2, 0, 0, 4, 2), 1, 0,
NUTATION_COMPACT( 0, 1, 0, 0, 2), 1, 0,
NUTATION_COMPACT( 2, 0, 2, 0, 0), 1, 0,
NUTATION_COMPACT( 1, 0,-1, 0, 1), 1, 0,
NUTATION_COMPACT(-2, 1, 2, 0, 0), 1, 0,
NUTATION_COMPACT( 1, 1, 0, 0, 0), 1, 0,
#endif
0 };
const int8_t time_dependent[16] = {
-16, -2, 2, -34, 1, 12, -4, 0, -5, 0, 1, 0, 0, 1, 0, -1 };
double terms[5];
double t2;
int i;
t2 = t * t;
for( i = 0; i < 5; i++)
{
terms[i] = linear_part[i] * t + (double)coeffs[i * 3] / 100000.;
terms[i] += t2 * (double)coeffs[i * 3 + 1] * 1.e-7;
terms[i] += t2 * t / (double)coeffs[i * 3 + 2];
terms[i] *= PI / 180.;
}
/* The largest term in d_lon won't fit into a short int. */
/* Everything else does, luckily. */
if( d_lon)
*d_lon = (-171996. - 174.2 * t) * sin( terms[4]);
if( d_obliq)
*d_obliq = (92025. + 8.9 * t) * cos( terms[4]);
for( i = 0; args[i]; i += 3)
{
double total_arg = 0., coeff;
int j, mult = (uint16_t)args[i];
for( j = 4; j >= 0; j--, mult /= 9)
if( mult % 9 != 4)
total_arg += (double)( mult % 9 - 4) * terms[j];
coeff = (double)args[i + 1];
if( i < 16 && time_dependent[i])
coeff += (double)time_dependent[i] * t / 10.;
if( i == 26 || i == 28)
coeff += (double)(27 - i) * t / 10.;
if( d_lon)
*d_lon += coeff * sin( total_arg);
if( args[i + 2])
{
const int8_t time_coeffs[9] = { -31, -5, 5, -1, 0, -6, 0, -1, 3 };
coeff = (double)args[i + 2];
if( i < 9 && time_coeffs[i])
coeff += (double)time_coeffs[i] * t / 10;
if( d_obliq)
*d_obliq += coeff * cos( total_arg);
}
}
if( d_lon)
*d_lon *= .0001;
if( d_obliq)
*d_obliq *= .0001;
return( 0);
}
#ifdef TEST_PROGRAM
#include <stdlib.h>
int main( const int argc, const char **argv)
{
double d_lon, d_obliq;
double year = atof( argv[1]);
if( year > 5000.) /* t isn't a year; it's a JD. So cvt to a year : */
year = (year - 2451545.) / 365.25 + 2000.;
nutation( (year - 2000.) / 100., &d_lon, &d_obliq);
printf( "%.9lf %.9lf\n", d_lon, d_obliq);
return( 0);
}
#endif
/*
phred@phred:~/lunar$ ./nutation 2458000
-9.685270220 -6.970770659
phred@phred:~/lunar$ ./nutation 2459000
-17.852363976 -0.314304680
phred@phred:~/lunar$ ./nutation 2409000
11.621021825 -7.708706984
*/
|