]> git.mxchange.org Git - simgear.git/blob - simgear/magvar/coremag.cxx
Reduce compiler.h to almost nothing (but it's worth keeping around I think, for
[simgear.git] / simgear / magvar / coremag.cxx
1 // coremag.cxx -- compute local magnetic variation given position,
2 //                altitude, and date
3 //
4 // This is an implementation of the NIMA (formerly DMA) WMM2000
5 //
6 //    http://www.nima.mil/GandG/ngdc-wmm2000.html
7 //
8 // Copyright (C) 2000  Edward A Williams <Ed_Williams@compuserve.com>
9 //
10 // Adapted from Excel 3.0 version 3/27/94 EAW
11 // Recoded in C++ by Starry Chan
12 // WMM95 added and rearranged in ANSI-C EAW 7/9/95
13 // Put shell around program and made Borland & GCC compatible EAW 11/22/95
14 // IGRF95 added 2/96 EAW
15 // WMM2000 IGR2000 added 2/00 EAW
16 // Released under GPL 3/26/00 EAW
17 // Adaptions and modifications for the SimGear project  3/27/2000 CLO
18 //
19 // Removed all pow() calls and made static roots[][] arrays to
20 // save many sqrt() calls on subsequent invocations
21 // left old code as SGMagVarOrig() for testing purposes
22 // 3/28/2000  Norman Vine -- nhv@yahoo.com
23 //
24 // Put in some bullet-proofing to handle magnetic and geographic poles.
25 // 3/28/2000 EAW
26 //
27 // Updated coefficient arrays to use the current WMM2005 model,
28 // (valid between 2005.0 and 2010.0)
29 // Also removed unused variables and corrected earth radii constants
30 // to the values for WGS84 and WMM2005.
31 // Reference:
32 //     McLean, S., S. Macmillan, S. Maus, V. Lesur, A.
33 //     Thomson, and D. Dater, December 2004, The
34 //     US/UK World Magnetic Model for 2005-2010,
35 //     NOAA Technical Report NESDIS/NGDC-1.
36 //
37 // 25/10/2006  Wim Van Hoydonck -- wim.van.hoydonck@gmail.com
38 //
39
40 //  The routine uses a spherical harmonic expansion of the magnetic
41 // potential up to twelfth order, together with its time variation, as
42 // described in Chapter 4 of "Geomagnetism, Vol 1, Ed. J.A.Jacobs,
43 // Academic Press (London 1987)". The program first converts geodetic
44 // coordinates (lat/long on elliptic earth and altitude) to spherical
45 // geocentric (spherical lat/long and radius) coordinates. Using this,
46 // the spherical (B_r, B_theta, B_phi) magnetic field components are
47 // computed from the model. These are finally referred to surface (X, Y,
48 // Z) coordinates.
49 //
50 //   Fields are accurate to better than 200nT, variation and dip to
51 // better than 0.5 degrees, with the exception of the declination near
52 // the magnetic poles (where it is ill-defined) where the error may reach
53 // 4 degrees or more.
54 //
55 //   Variation is undefined at both the geographic and  
56 // magnetic poles, even though the field itself is well-behaved. To
57 // avoid the routine blowing up, latitude entries corresponding to
58 // the geographic poles are slightly offset. At the magnetic poles,
59 // the routine returns zero variation.
60
61
62 //
63 // This library is free software; you can redistribute it and/or
64 // modify it under the terms of the GNU Library General Public
65 // License as published by the Free Software Foundation; either
66 // version 2 of the License, or (at your option) any later version.
67 //
68 // This library is distributed in the hope that it will be useful,
69 // but WITHOUT ANY WARRANTY; without even the implied warranty of
70 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
71 // Library General Public License for more details.
72 //
73 // You should have received a copy of the GNU General Public License
74 // along with this program; if not, write to the Free Software
75 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
76 //
77 // $Id$
78
79
80 #include <stdio.h>
81 #include <stdlib.h>
82 #include <math.h>
83
84 #include <simgear/constants.h>
85 #include <simgear/sg_inlines.h>
86
87 #include "coremag.hxx"
88
89 static const double a = 6378.137;       /* semi-major axis (equatorial radius) of WGS84 ellipsoid */
90 static const double b = 6356.7523142;   /* semi-minor axis referenced to the WGS84 ellipsoid */
91 static const double r_0 = 6371.2;       /* standard Earth magnetic reference radius  */
92
93 static double gnm_wmm2005[13][13] =
94 {
95     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
96     {-29556.8, -1671.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
97     {-2340.6, 3046.9, 1657.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
98     {1335.4, -2305.1, 1246.7, 674.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
99     {919.8, 798.1, 211.3, -379.4, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
100     {-227.4, 354.6, 208.7, -136.5, -168.3, -14.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
101     {73.2, 69.7, 76.7, -151.2, -14.9, 14.6, -86.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
102     {80.1, -74.5, -1.4, 38.5, 12.4, 9.5, 5.7, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0},
103     {24.9, 7.7, -11.6, -6.9, -18.2, 10.0, 9.2, -11.6, -5.2, 0.0, 0.0, 0.0, 0.0},
104     {5.6, 9.9, 3.5, -7.0, 5.1, -10.8, -1.3, 8.8, -6.7, -9.1, 0.0, 0.0, 0.0},
105     {-2.3, -6.3, 1.6, -2.6, 0.0, 3.1, 0.4, 2.1, 3.9, -0.1, -2.3, 0.0, 0.0},
106     {2.8, -1.6, -1.7, 1.7, -0.1, 0.1, -0.7, 0.7, 1.8, 0.0, 1.1, 4.1, 0.0},
107     {-2.4, -0.4, 0.2, 0.8, -0.3, 1.1, -0.5, 0.4, -0.3, -0.3, -0.1, -0.3, -0.1},
108 };
109
110 static double hnm_wmm2005[13][13]=
111 {
112     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
113     {0.0, 5079.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
114     {0.0, -2594.7, -516.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
115     {0.0, -199.9, 269.3, -524.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
116     {0.0, 281.5, -226.0, 145.8, -304.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
117     {0.0, 42.4, 179.8, -123.0, -19.5, 103.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
118     {0.0, -20.3, 54.7, 63.6, -63.4, -0.1, 50.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
119     {0.0, -61.5, -22.4, 7.2, 25.4, 11.0, -26.4, -5.1, 0.0, 0.0, 0.0, 0.0, 0.0},
120     {0.0, 11.2, -21.0, 9.6, -19.8, 16.1, 7.7, -12.9, -0.2, 0.0, 0.0, 0.0, 0.0},
121     {0.0, -20.1, 12.9, 12.6, -6.7, -8.1, 8.0, 2.9, -7.9, 6.0, 0.0, 0.0, 0.0},
122     {0.0, 2.4, 0.2, 4.4, 4.8, -6.5, -1.1, -3.4, -0.8, -2.3, -7.9, 0.0, 0.0},
123     {0.0, 0.3, 1.2, -0.8, -2.5, 0.9, -0.6, -2.7, -0.9, -1.3, -2.0, -1.2, 0.0},
124     {0.0, -0.4, 0.3, 2.4, -2.6, 0.6, 0.3, 0.0, 0.0, 0.3, -0.9, -0.4, 0.8},
125 };
126
127 static double gtnm_wmm2005[13][13]=
128 {
129     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
130     {8.0, 10.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
131     {-15.1, -7.8, -0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
132     {0.4, -2.6, -1.2, -6.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
133     {-2.5, 2.8, -7.0, 6.2, -3.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
134     {-2.8, 0.7, -3.2, -1.1, 0.1, -0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
135     {-0.7, 0.4, -0.3, 2.3, -2.1, -0.6, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
136     {0.2, -0.1, -0.3, 1.1, 0.6, 0.5, -0.4, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0},
137     {0.1, 0.3, -0.4, 0.3, -0.3, 0.2, 0.4, -0.7, 0.4, 0.0, 0.0, 0.0, 0.0},
138     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
139     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
140     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
141     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
142 };
143
144 static double htnm_wmm2005[13][13]=
145 {
146     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
147     {0.0, -20.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
148     {0.0, -23.2, -14.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
149     {0.0, 5.0, -7.0, -0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
150     {0.0, 2.2, 1.6, 5.8, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
151     {0.0, 0.0, 1.7, 2.1, 4.8, -1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
152     {0.0, -0.6, -1.9, -0.4, -0.5, -0.3, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
153     {0.0, 0.6, 0.4, 0.2, 0.3, -0.8, -0.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0},
154     {0.0, -0.2, 0.1, 0.3, 0.4, 0.1, -0.2, 0.4, 0.4, 0.0, 0.0, 0.0, 0.0},
155     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
156     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
157     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
158     {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0},
159 };
160
161 static const int nmax = 12;
162
163 static double P[13][13];
164 static double DP[13][13];
165 static double gnm[13][13];
166 static double hnm[13][13];
167 static double sm[13];
168 static double cm[13];
169
170 static double root[13];
171 static double roots[13][13][2];
172
173 /* Convert date to Julian day    1950-2049 */
174 unsigned long int yymmdd_to_julian_days( int yy, int mm, int dd )
175 {
176     unsigned long jd;
177  
178     yy = (yy < 50) ? (2000 + yy) : (1900 + yy);
179     jd = dd - 32075L + 1461L * (yy + 4800L + (mm - 14) / 12 ) / 4;
180     jd = jd + 367L * (mm - 2 - (mm - 14) / 12*12) / 12;
181     jd = jd - 3 * ((yy + 4900L + (mm - 14) / 12) / 100) / 4;
182
183     /* printf("julian date = %d\n", jd ); */
184     return jd;
185
186
187
188 /*
189  * return variation (in radians) given geodetic latitude (radians),
190  * longitude(radians), height (km) and (Julian) date
191  * N and E lat and long are positive, S and W negative
192 */
193
194 double calc_magvar( double lat, double lon, double h, long dat, double* field )
195 {
196     /* output field B_r,B_th,B_phi,B_x,B_y,B_z */
197     int n,m;
198     /* reference date for current model is 1 januari 2005 */
199     long date0_wmm2005 = yymmdd_to_julian_days(5,1,1);
200
201     double yearfrac,sr,r,theta,c,s,psi,fn,fn_0,B_r,B_theta,B_phi,X,Y,Z;
202     double sinpsi, cospsi, inv_s;
203
204     static int been_here = 0;
205
206     double sinlat = sin(lat);
207     double coslat = cos(lat);
208
209     /* convert to geocentric coords: */
210     // sr = sqrt(pow(a*coslat,2.0)+pow(b*sinlat,2.0));
211     sr = sqrt(a*a*coslat*coslat + b*b*sinlat*sinlat);
212     /* sr is effective radius */
213     theta = atan2(coslat * (h*sr + a*a),
214                   sinlat * (h*sr + b*b));
215     /* theta is geocentric co-latitude */
216
217     r = h*h + 2.0*h * sr +
218         (a*a*a*a - ( a*a*a*a - b*b*b*b ) * sinlat*sinlat ) / 
219         (a*a - (a*a - b*b) * sinlat*sinlat );
220
221     r = sqrt(r);
222
223     /* r is geocentric radial distance */
224     c = cos(theta);
225     s = sin(theta);
226     /* protect against zero divide at geographic poles */
227     inv_s =  1.0 / (s + (s == 0.)*1.0e-8); 
228
229     /* zero out arrays */
230     for ( n = 0; n <= nmax; n++ ) {
231         for ( m = 0; m <= n; m++ ) {
232             P[n][m] = 0;
233             DP[n][m] = 0;
234         }
235     }
236
237     /* diagonal elements */
238     P[0][0] = 1;
239     P[1][1] = s;
240     DP[0][0] = 0;
241     DP[1][1] = c;
242     P[1][0] = c ;
243     DP[1][0] = -s;
244
245     // these values will not change for subsequent function calls
246     if( !been_here ) {
247         for ( n = 2; n <= nmax; n++ ) {
248             root[n] = sqrt((2.0*n-1) / (2.0*n));
249         }
250
251         for ( m = 0; m <= nmax; m++ ) {
252             double mm = m*m;
253             for ( n = SG_MAX2(m + 1, 2); n <= nmax; n++ ) {
254                 roots[m][n][0] = sqrt((n-1)*(n-1) - mm);
255                 roots[m][n][1] = 1.0 / sqrt( n*n - mm);
256             }
257         }
258         been_here = 1;
259     }
260
261     for ( n=2; n <= nmax; n++ ) {
262         // double root = sqrt((2.0*n-1) / (2.0*n));
263         P[n][n] = P[n-1][n-1] * s * root[n];
264         DP[n][n] = (DP[n-1][n-1] * s + P[n-1][n-1] * c) *
265             root[n];
266     }
267
268     /* lower triangle */
269     for ( m = 0; m <= nmax; m++ ) {
270         // double mm = m*m;
271         for ( n = SG_MAX2(m + 1, 2); n <= nmax; n++ ) {
272             // double root1 = sqrt((n-1)*(n-1) - mm);
273             // double root2 = 1.0 / sqrt( n*n - mm);
274             P[n][m] = (P[n-1][m] * c * (2.0*n-1) -
275                        P[n-2][m] * roots[m][n][0]) *
276                 roots[m][n][1];
277
278             DP[n][m] = ((DP[n-1][m] * c - P[n-1][m] * s) *
279                         (2.0*n-1) - DP[n-2][m] * roots[m][n][0]) *
280                 roots[m][n][1];
281         }
282     }
283
284     /* compute Gauss coefficients gnm and hnm of degree n and order m for the desired time
285        achieved by adjusting the coefficients at time t0 for linear secular variation */
286     /* WMM2005 */
287     yearfrac = (dat - date0_wmm2005) / 365.25;
288     for ( n = 1; n <= nmax; n++ ) {
289         for ( m = 0; m <= nmax; m++ ) {
290             gnm[n][m] = gnm_wmm2005[n][m] + yearfrac * gtnm_wmm2005[n][m];
291             hnm[n][m] = hnm_wmm2005[n][m] + yearfrac * htnm_wmm2005[n][m];
292         }
293     }
294
295     /* compute sm (sin(m lon) and cm (cos(m lon)) */
296     for ( m = 0; m <= nmax; m++ ) {
297         sm[m] = sin(m * lon);
298         cm[m] = cos(m * lon);
299     }
300
301     /* compute B fields */
302     B_r = 0.0;
303     B_theta = 0.0;
304     B_phi = 0.0;
305     fn_0 = r_0/r;
306     fn = fn_0 * fn_0;
307
308     for ( n = 1; n <= nmax; n++ ) {
309         double c1_n=0;
310         double c2_n=0;
311         double c3_n=0;
312         for ( m = 0; m <= n; m++ ) {
313             double tmp = (gnm[n][m] * cm[m] + hnm[n][m] * sm[m]); 
314             c1_n=c1_n + tmp * P[n][m];
315             c2_n=c2_n + tmp * DP[n][m];
316             c3_n=c3_n + m * (gnm[n][m] * sm[m] - hnm[n][m] * cm[m]) * P[n][m];
317         }
318         // fn=pow(r_0/r,n+2.0);
319         fn *= fn_0;
320         B_r = B_r + (n + 1) * c1_n * fn;
321         B_theta = B_theta - c2_n * fn;
322         B_phi = B_phi + c3_n * fn * inv_s;
323     }
324
325     /* Find geodetic field components: */
326     psi = theta - ((M_PI / 2.0) - lat);
327     sinpsi = sin(psi);
328     cospsi = cos(psi);
329     X = -B_theta * cospsi - B_r * sinpsi;
330     Y = B_phi;
331     Z = B_theta * sinpsi - B_r * cospsi;
332
333     field[0]=B_r;
334     field[1]=B_theta;
335     field[2]=B_phi;
336     field[3]=X;
337     field[4]=Y;
338     field[5]=Z;   /* output fields */
339
340     /* find variation in radians */
341     /* return zero variation at magnetic pole X=Y=0. */
342     /* E is positive */
343     return (X != 0. || Y != 0.) ? atan2(Y, X) : (double) 0.;  
344 }
345
346
347 #ifdef TEST_NHV_HACKS
348 double SGMagVarOrig( double lat, double lon, double h, long dat, double* field )
349 {
350     /* output field B_r,B_th,B_phi,B_x,B_y,B_z */
351     int n,m;
352     /* reference dates */
353     long date0_wmm2005 = yymmdd_to_julian_days(5,1,1);
354
355     double yearfrac,sr,r,theta,c,s,psi,fn,B_r,B_theta,B_phi,X,Y,Z;
356
357     /* convert to geocentric coords: */
358     sr = sqrt(pow(a*cos(lat),2.0)+pow(b*sin(lat),2.0));
359     /* sr is effective radius */
360     theta = atan2(cos(lat) * (h * sr + a * a),
361                   sin(lat) * (h * sr + b * b));
362     /* theta is geocentric co-latitude */
363
364     r = h * h + 2.0*h * sr +
365         (pow(a,4.0) - (pow(a,4.0) - pow(b,4.0)) * pow(sin(lat),2.0)) / 
366         (a * a - (a * a - b * b) * pow(sin(lat),2.0));
367
368     r = sqrt(r);
369
370     /* r is geocentric radial distance */
371     c = cos(theta);
372     s = sin(theta);
373
374     /* zero out arrays */
375     for ( n = 0; n <= nmax; n++ ) {
376         for ( m = 0; m <= n; m++ ) {
377             P[n][m] = 0;
378             DP[n][m] = 0;
379         }
380     }
381
382     /* diagonal elements */
383     P[0][0] = 1;
384     P[1][1] = s;
385     DP[0][0] = 0;
386     DP[1][1] = c;
387     P[1][0] = c ;
388     DP[1][0] = -s;
389
390     for ( n = 2; n <= nmax; n++ ) {
391         P[n][n] = P[n-1][n-1] * s * sqrt((2.0*n-1) / (2.0*n));
392         DP[n][n] = (DP[n-1][n-1] * s + P[n-1][n-1] * c) *
393             sqrt((2.0*n-1) / (2.0*n));
394     }
395
396     /* lower triangle */
397     for ( m = 0; m <= nmax; m++ ) {
398         for ( n = SG_MAX2(m + 1, 2); n <= nmax; n++ ) {
399             P[n][m] = (P[n-1][m] * c * (2.0*n-1) - P[n-2][m] *
400                        sqrt(1.0*(n-1)*(n-1) - m * m)) /
401                 sqrt(1.0* n * n - m * m);
402             DP[n][m] = ((DP[n-1][m] * c - P[n-1][m] * s) *
403                         (2.0*n-1) - DP[n-2][m] *
404                         sqrt(1.0*(n-1) * (n-1) - m * m)) /
405                 sqrt(1.0* n * n - m * m);
406         }
407     }
408
409     /* compute gnm, hnm at dat */
410     /* WMM2005 */
411     yearfrac = (dat - date0_wmm2005) / 365.25;
412     for ( n = 1; n <= nmax; n++ ) {
413         for ( m = 0; m <= nmax; m++ ) {
414             gnm[n][m] = gnm_wmm2005[n][m] + yearfrac * gtnm_wmm2005[n][m];
415             hnm[n][m] = hnm_wmm2005[n][m] + yearfrac * htnm_wmm2005[n][m];
416         }
417     }
418
419     /* compute sm (sin(m lon) and cm (cos(m lon)) */
420     for ( m = 0; m <= nmax; m++ ) {
421         sm[m] = sin(m * lon);
422         cm[m] = cos(m * lon);
423     }
424
425     /* compute B fields */
426     B_r = 0.0;
427     B_theta = 0.0;
428     B_phi = 0.0;
429
430     for ( n = 1; n <= nmax; n++ ) {
431         double c1_n=0;
432         double c2_n=0;
433         double c3_n=0;
434         for ( m = 0; m <= n; m++ ) {
435             c1_n=c1_n + (gnm[n][m] * cm[m] + hnm[n][m] * sm[m]) * P[n][m];
436             c2_n=c2_n + (gnm[n][m] * cm[m] + hnm[n][m] * sm[m]) * DP[n][m];
437             c3_n=c3_n + m * (gnm[n][m] * sm[m] - hnm[n][m] * cm[m]) * P[n][m];
438         }
439         fn=pow(r_0/r,n+2.0);
440         B_r = B_r + (n + 1) * c1_n * fn;
441         B_theta = B_theta - c2_n * fn;
442         B_phi = B_phi + c3_n * fn / s;
443     }
444
445     /* Find geodetic field components: */
446     psi = theta - (pi / 2.0 - lat);
447     X = -B_theta * cos(psi) - B_r * sin(psi);
448     Y = B_phi;
449     Z = B_theta * sin(psi) - B_r * cos(psi);
450
451     field[0]=B_r;
452     field[1]=B_theta;
453     field[2]=B_phi;
454     field[3]=X;
455     field[4]=Y;
456     field[5]=Z;   /* output fields */
457
458     /* find variation, leave in radians! */
459     return atan2(Y, X);  /* E is positive */
460 }
461 #endif // TEST_NHV_HACKS