erfa 0.2.1

A pure-Rust equivalent to the ERFA C library.
Documentation
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

//! Fundamental argument code.

use std::ops::Rem;

use crate::constants::*;

/// Fundamental argument, IERS Conventions (2003): mean anomaly of the Moon.
/// (`eraFal03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * `l`, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and is from
///    Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
pub fn l03(t: f64) -> f64 {
    /* Mean anomaly of the Moon (IERS Conventions 2003). */
    #[rustfmt::skip]
    let a =
        (     485868.249036  +
    t * ( 1717915923.2178 +
    t * (         31.8792 +
    t * (          0.051635 +
    t * (        - 0.00024470 ) ) ) ) ).rem(ERFA_TURNAS) * ERFA_DAS2R;
    a
}

/// Fundamental argument, IERS Conventions (2003): mean anomaly of the Sun. (`eraFalp03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * `l'`, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and is from
///    Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
pub fn lp03(t: f64) -> f64 {
    /* Mean anomaly of the Sun (IERS Conventions 2003). */
    #[rustfmt::skip]
   let a =
       (         1287104.793048 +
         t * ( 129596581.0481 +
         t * (       - 0.5532 +
         t * (         0.000136 +
         t * (       - 0.00001149 ) ) ) ) ).rem(ERFA_TURNAS) * ERFA_DAS2R;
    a
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of the Moon
/// minus mean longitude of the ascending node. (`eraFaf03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * `F`, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and is from
///    Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
pub fn f03(t: f64) -> f64 {
    /* Mean longitude of the Moon minus that of the ascending node */
    /* (IERS Conventions 2003).                                    */
    #[rustfmt::skip]
   let a =
   (           335779.526232 +
     t * ( 1739527262.8478 +
     t * (       - 12.7512 +
     t * (        - 0.001037 +
     t * (          0.00000417 ) ) ) ) ).rem(ERFA_TURNAS) * ERFA_DAS2R;
    a
}

/// Fundamental argument, IERS Conventions (2003): mean elongation of the Moon
/// from the Sun. (`eraFad03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * `D`, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and is from
///    Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
pub fn d03(t: f64) -> f64 {
    /* Mean elongation of the Moon from the Sun (IERS Conventions 2003). */
    #[rustfmt::skip]
    let a = ((   1072260.703692 +
        t * ( 1602961601.2090 +
        t * (        - 6.3706 +
        t * (          0.006593 +
        t * (        - 0.00003169 ) ) ) )) % ERFA_TURNAS )
        * ERFA_DAS2R;
    a
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of the Moon's
/// ascending node. (`eraFaom03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * `Omega`, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and is from
///    Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J., 1994, Astron.Astrophys. 282, 663-683.
///
pub fn om03(t: f64) -> f64 {
    /* Mean longitude of the Moon's ascending node */
    /* (IERS Conventions 2003).                    */
    #[rustfmt::skip]
    let a =
    ((          450160.398036 +
       t * ( - 6962890.5431 +
       t * (         7.4722 +
       t * (         0.007702 +
       t * (       - 0.00005939 ) ) ) )) % ERFA_TURNAS ) * ERFA_DAS2R;
    a
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of Mercury.
/// (`eraFame03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * mean longitude of Mercury, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and comes
///    from Souchay et al. (1999) after Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
/// * Souchay, J., Loysel, B., Kinoshita, H., Folgueira, M. 1999,
///   Astron.Astrophys.Supp.Ser. 135, 111
///
pub fn me03(t: f64) -> f64 {
    /* Mean longitude of Mercury (IERS Conventions 2003). */
    (4.402608842 + 2608.7903141574 * t) % ERFA_D2PI
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of Venus.
/// (`eraFave03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * mean longitude of Venus, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and comes
///    from Souchay et al. (1999) after Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
/// * Souchay, J., Loysel, B., Kinoshita, H., Folgueira, M. 1999,
///   Astron.Astrophys.Supp.Ser. 135, 111
///
pub fn ve03(t: f64) -> f64 {
    /* Mean longitude of Venus (IERS Conventions 2003). */
    (3.176146697 + 1021.3285546211 * t) % ERFA_D2PI
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of Earth.
/// (`eraFae03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * mean longitude of Earth, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and comes
///    from Souchay et al. (1999) after Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
/// * Souchay, J., Loysel, B., Kinoshita, H., Folgueira, M. 1999,
///   Astron.Astrophys.Supp.Ser. 135, 111
///
pub fn e03(t: f64) -> f64 {
    /* Mean longitude of Earth (IERS Conventions 2003). */
    (1.753470314 + 628.3075849991 * t) % ERFA_D2PI
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of Mars.
/// (`eraFama03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * mean longitude of Mars, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and comes
///    from Souchay et al. (1999) after Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
/// * Souchay, J., Loysel, B., Kinoshita, H., Folgueira, M. 1999,
///   Astron.Astrophys.Supp.Ser. 135, 111
///
pub fn ma03(t: f64) -> f64 {
    /* Mean longitude of Mars (IERS Conventions 2003). */
    (6.203480913 + 334.0612426700 * t) % ERFA_D2PI
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of Jupiter.
/// (`eraFaju03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * mean longitude of Jupiter, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and comes
///    from Souchay et al. (1999) after Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
/// * Souchay, J., Loysel, B., Kinoshita, H., Folgueira, M. 1999,
///   Astron.Astrophys.Supp.Ser. 135, 111
///
pub fn ju03(t: f64) -> f64 {
    /* Mean longitude of Jupiter (IERS Conventions 2003). */
    (0.599546497 + 52.9690962641 * t) % ERFA_D2PI
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of Saturn.
/// (`eraFasa03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * mean longitude of Saturn, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and comes
///    from Souchay et al. (1999) after Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
/// * Souchay, J., Loysel, B., Kinoshita, H., Folgueira, M. 1999,
///   Astron.Astrophys.Supp.Ser. 135, 111
///
pub fn sa03(t: f64) -> f64 {
    /* Mean longitude of Saturn (IERS Conventions 2003). */
    (0.874016757 + 21.3299104960 * t) % ERFA_D2PI
}

/// Fundamental argument, IERS Conventions (2003): mean longitude of Uranus.
/// (`eraFaur03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * mean longitude of Uranus, radians (Note 2)
///
/// # Notes:
///
/// 1) Though t is strictly TDB, it is usually more convenient to use TT, which
///    makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003) and is
///    adapted from Simon et al. (1994).
///
/// # References:
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
/// * Simon, J.-L., Bretagnon, P., Chapront, J., Chapront-Touze, M., Francou,
///   G., Laskar, J. 1994, Astron.Astrophys. 282, 663-683
///
pub fn ur03(t: f64) -> f64 {
    /* Mean longitude of Uranus (IERS Conventions 2003). */
    (5.481293872 + 7.4781598567 * t) % ERFA_D2PI
}

/// Fundamental argument, IERS Conventions (2003): general accumulated
/// precession in longitude. (`eraFapa03`)
///
/// Given:
///  * `t`: TDB, Julian centuries since J2000.0 (Note 1)
///
/// Returned:
///  * general precession in longitude, radians (Note 2)
///
/// # Notes:
///
/// 1) Though `t` is strictly TDB, it is usually more convenient to use TT,
///    which makes no significant difference.
///
/// 2) The expression used is as adopted in IERS Conventions (2003).  It is
///    taken from Kinoshita & Souchay (1990) and comes originally from Lieske et
///    al. (1977).
///
/// # References:
///
/// * Kinoshita, H. and Souchay J. 1990, Celest.Mech. and Dyn.Astron. 48, 187
///
/// * Lieske, J.H., Lederle, T., Fricke, W. & Morando, B. 1977,
///   Astron.Astrophys. 58, 1-16
///
/// * McCarthy, D. D., Petit, G. (eds.), IERS Conventions (2003), IERS Technical
///   Note No. 32, BKG (2004)
///
pub fn pa03(t: f64) -> f64 {
    /* General accumulated precession in longitude. */
    (0.024381750 + 0.00000538691 * t) * t
}