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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
//
// GENERATED FILE
//
use super::*;
use crate::SpiceContext;
use f2rust_std::*;
const NABCOR: i32 = 15;
const ABATSZ: i32 = 6;
const GEOIDX: i32 = 1;
const LTIDX: i32 = (GEOIDX + 1);
const STLIDX: i32 = (LTIDX + 1);
const CNVIDX: i32 = (STLIDX + 1);
const XMTIDX: i32 = (CNVIDX + 1);
const RELIDX: i32 = (XMTIDX + 1);
const CORLEN: i32 = 5;
const RNAME: &[u8] = b"SPKACS";
const DELTA: f64 = 1.0;
const SSB: i32 = 0;
struct SaveVars {
PRVCOR: Vec<u8>,
FIRST: bool,
USESTL: bool,
}
impl SaveInit for SaveVars {
fn new() -> Self {
let mut PRVCOR = vec![b' '; CORLEN as usize];
let mut FIRST: bool = false;
let mut USESTL: bool = false;
FIRST = true;
fstr::assign(&mut PRVCOR, b" ");
Self {
PRVCOR,
FIRST,
USESTL,
}
}
}
/// SPK, aberration corrected state
///
/// Return the state (position and velocity) of a target body
/// relative to an observer, optionally corrected for light time
/// and stellar aberration, expressed relative to an inertial
/// reference frame.
///
/// # Required Reading
///
/// * [SPK](crate::required_reading::spk)
///
/// # Brief I/O
///
/// ```text
/// VARIABLE I/O DESCRIPTION
/// -------- --- --------------------------------------------------
/// TARG I Target body.
/// ET I Observer epoch.
/// REF I Inertial reference frame of output state.
/// ABCORR I Aberration correction flag.
/// OBS I Observer.
/// STARG O State of target.
/// LT O One way light time between observer and target.
/// DLT O Derivative of light time with respect to time.
/// ```
///
/// # Detailed Input
///
/// ```text
/// TARG is the NAIF ID code for a target body. The target
/// and observer define a state vector whose position
/// component points from the observer to the target.
///
/// ET is the ephemeris time, expressed as seconds past
/// J2000 TDB, at which the state of the target body
/// relative to the observer is to be computed. ET
/// refers to time at the observer's location.
///
/// REF is the inertial reference frame with respect to which
/// the output state STARG is expressed. REF must be
/// recognized by the SPICE Toolkit. The acceptable
/// frames are listed in the Frames Required Reading, as
/// well as in the SPICELIB routine CHGIRF.
///
/// Case and blanks are not significant in the string
/// REF.
///
/// ABCORR indicates the aberration corrections to be applied
/// to the state of the target body to account for one-way
/// light time and stellar aberration. See the discussion
/// in the $Particulars section for recommendations on
/// how to choose aberration corrections.
///
/// ABCORR may be any of the following:
///
/// 'NONE' Apply no correction. Return the
/// geometric state of the target body
/// relative to the observer.
///
/// The following values of ABCORR apply to the
/// "reception" case in which photons depart from the
/// target's location at the light-time corrected epoch
/// ET-LT and *arrive* at the observer's location at ET:
///
/// 'LT' Correct for one-way light time (also
/// called "planetary aberration") using a
/// Newtonian formulation. This correction
/// yields the state of the target at the
/// moment it emitted photons arriving at
/// the observer at ET.
///
/// The light time correction uses an
/// iterative solution of the light time
/// equation (see $Particulars for details).
/// The solution invoked by the 'LT' option
/// uses one iteration.
///
/// 'LT+S' Correct for one-way light time and
/// stellar aberration using a Newtonian
/// formulation. This option modifies the
/// state obtained with the 'LT' option to
/// account for the observer's velocity
/// relative to the solar system
/// barycenter. The result is the apparent
/// state of the target---the position and
/// velocity of the target as seen by the
/// observer.
///
/// 'CN' Converged Newtonian light time
/// correction. In solving the light time
/// equation, the 'CN' correction iterates
/// until the solution converges (three
/// iterations on all supported platforms).
/// Whether the 'CN+S' solution is
/// substantially more accurate than the
/// 'LT' solution depends on the geometry
/// of the participating objects and on the
/// accuracy of the input data. In all
/// cases this routine will execute more
/// slowly when a converged solution is
/// computed. See the $Particulars section of
/// SPKEZR for a discussion of precision of
/// light time corrections.
///
/// 'CN+S' Converged Newtonian light time
/// correction and stellar aberration
/// correction.
///
///
/// The following values of ABCORR apply to the
/// "transmission" case in which photons *depart* from
/// the observer's location at ET and arrive at the
/// target's location at the light-time corrected epoch
/// ET+LT:
///
/// 'XLT' "Transmission" case: correct for
/// one-way light time using a Newtonian
/// formulation. This correction yields the
/// state of the target at the moment it
/// receives photons emitted from the
/// observer's location at ET.
///
/// 'XLT+S' "Transmission" case: correct for
/// one-way light time and stellar
/// aberration using a Newtonian
/// formulation This option modifies the
/// state obtained with the 'XLT' option to
/// account for the observer's velocity
/// relative to the solar system
/// barycenter. The position component of
/// the computed target state indicates the
/// direction that photons emitted from the
/// observer's location must be "aimed" to
/// hit the target.
///
/// 'XCN' "Transmission" case: converged
/// Newtonian light time correction.
///
/// 'XCN+S' "Transmission" case: converged
/// Newtonian light time correction and
/// stellar aberration correction.
///
///
/// OBS is the NAIF ID code for the observer body. The
/// target and observer define a state vector whose
/// position component points from the observer to the
/// target.
/// ```
///
/// # Detailed Output
///
/// ```text
/// STARG is a Cartesian state vector representing the position
/// and velocity of the target body relative to the
/// specified observer. STARG is corrected for the
/// specified aberrations, and is expressed with respect
/// to the specified inertial reference frame. The first
/// three components of STARG represent the x-, y- and
/// z-components of the target's position; last three
/// components form the corresponding velocity vector.
///
/// The position component of STARG points from the
/// observer's location at ET to the aberration-corrected
/// location of the target. Note that the sense of the
/// position vector is independent of the direction of
/// radiation travel implied by the aberration
/// correction.
///
/// Units are always km and km/sec.
///
/// LT is the one-way light time between the observer and
/// target in seconds. If the target state is corrected
/// for aberrations, then LT is the one-way light time
/// between the observer and the light time corrected
/// target location.
///
/// DLT is the derivative with respect to barycentric
/// dynamical time of the one way light time between
/// target and observer:
///
/// DLT = d(LT)/d(ET)
///
/// DLT can also be described as the rate of change of
/// one way light time. DLT is unitless, since LT and
/// ET both have units of TDB seconds.
///
/// If the observer and target are at the same position,
/// then DLT is set to zero.
/// ```
///
/// # Exceptions
///
/// ```text
/// 1) If the value of ABCORR is not recognized, an error is signaled
/// by a routine in the call tree of this routine.
///
/// 2) If the reference frame requested is not a recognized
/// inertial reference frame, the error SPICE(BADFRAME)
/// is signaled.
///
/// 3) If the state of the target relative to the solar system
/// barycenter cannot be computed, an error is signaled by a
/// routine in the call tree of this routine.
///
/// 4) If the observer and target are at the same position,
/// then DLT is set to zero. This situation could arise,
/// for example, when the observer is Mars and the target
/// is the Mars barycenter.
/// ```
///
/// # Files
///
/// ```text
/// This routine computes states using SPK files that have been
/// loaded into the SPICE system, normally via the kernel loading
/// interface routine FURNSH. Application programs typically load
/// kernels once before this routine is called, for example during
/// program initialization; kernels need not be loaded repeatedly.
/// See the routine FURNSH and the SPK and KERNEL Required Reading
/// for further information on loading (and unloading) kernels.
///
/// If any of the ephemeris data used to compute STARG are expressed
/// relative to a non-inertial frame in the SPK files providing those
/// data, additional kernels may be needed to enable the reference
/// frame transformations required to compute the state. Normally
/// these additional kernels are PCK files or frame kernels. Any
/// such kernels must already be loaded at the time this routine is
/// called.
/// ```
///
/// # Particulars
///
/// ```text
/// This routine supports higher-level SPK API routines that can
/// perform both light time and stellar aberration corrections.
/// User applications normally will not need to call this routine
/// directly.
///
/// See the header of the routine SPKEZR for a detailed discussion
/// of aberration corrections.
/// ```
///
/// # Examples
///
/// ```text
/// The numerical results shown for this example may differ across
/// platforms. The results depend on the SPICE kernels used as
/// input, the compiler and supporting libraries, and the machine
/// specific arithmetic implementation.
///
/// 1) Look up a sequence of states of the Moon as seen from the
/// Earth. Use light time and stellar aberration corrections.
/// Compute the first state for the epoch 2000 JAN 1 12:00:00 TDB;
/// compute subsequent states at intervals of 1 hour. For each
/// epoch, display the states, the one way light time between
/// target and observer, and the rate of change of the one way
/// light time.
///
/// Use the meta-kernel shown below to load the required SPICE
/// kernels.
///
///
/// KPL/MK
///
/// File name: spkacs_ex1.tm
///
/// This meta-kernel is intended to support operation of SPICE
/// example programs. The kernels shown here should not be
/// assumed to contain adequate or correct versions of data
/// required by SPICE-based user applications.
///
/// In order for an application to use this meta-kernel, the
/// kernels referenced here must be present in the user's
/// current working directory.
///
/// The names and contents of the kernels referenced
/// by this meta-kernel are as follows:
///
/// File name Contents
/// --------- --------
/// de418.bsp Planetary ephemeris
/// pck00008.tpc Planet orientation and
/// radii
/// naif0008.tls Leapseconds
///
///
/// \begindata
///
/// KERNELS_TO_LOAD = ( 'de418.bsp',
/// 'pck00008.tpc',
/// 'naif0008.tls' )
///
/// \begintext
///
/// End of meta-kernel
///
///
/// Example code begins here.
///
///
/// PROGRAM SPKACS_EX1
/// IMPLICIT NONE
/// C
/// C Local constants
/// C
/// C The meta-kernel name shown here refers to a file whose
/// C contents are those shown above. This file and the
/// C kernels it references must exist in your current working
/// C directory.
/// C
/// C
/// CHARACTER*(*) META
/// PARAMETER ( META = 'spkacs_ex1.tm' )
/// C
/// C Use a time step of 1 hour; look up 5 states.
/// C
/// DOUBLE PRECISION STEP
/// PARAMETER ( STEP = 3600.0D0 )
///
/// INTEGER MAXITR
/// PARAMETER ( MAXITR = 5 )
/// C
/// C Local variables
/// C
/// DOUBLE PRECISION DLT
/// DOUBLE PRECISION ET
/// DOUBLE PRECISION ET0
/// DOUBLE PRECISION LT
/// DOUBLE PRECISION STATE ( 6 )
/// INTEGER I
///
/// C
/// C Load the SPK and LSK kernels via the meta-kernel.
/// C
/// CALL FURNSH ( META )
/// C
/// C Convert the start time to seconds past J2000 TDB.
/// C
/// CALL STR2ET ( '2000 JAN 1 12:00:00 TDB', ET0 )
/// C
/// C Step through a series of epochs, looking up a
/// C state vector at each one.
/// C
/// DO I = 1, MAXITR
///
/// ET = ET0 + (I-1)*STEP
/// C
/// C Look up a state vector at epoch ET using the
/// C following inputs:
/// C
/// C Target: Moon (NAIF ID code 301)
/// C Reference frame: J2000
/// C Aberration correction: Light time and stellar
/// C aberration ('LT+S')
/// C Observer: Earth (NAIF ID code 399)
/// C
///
/// CALL SPKACS ( 301, ET, 'J2000', 'LT+S',
/// . 399, STATE, LT, DLT )
///
/// WRITE (*,*) 'ET = ', ET
/// WRITE (*,*) 'J2000 x-position (km): ', STATE(1)
/// WRITE (*,*) 'J2000 y-position (km): ', STATE(2)
/// WRITE (*,*) 'J2000 z-position (km): ', STATE(3)
/// WRITE (*,*) 'J2000 x-velocity (km/s): ', STATE(4)
/// WRITE (*,*) 'J2000 y-velocity (km/s): ', STATE(5)
/// WRITE (*,*) 'J2000 z-velocity (km/s): ', STATE(6)
/// WRITE (*,*) 'One-way light time (s): ', LT
/// WRITE (*,*) 'Light time rate: ', DLT
/// WRITE (*,*) ' '
///
/// END DO
///
/// END
///
///
/// When this program was executed on a Mac/Intel/gfortran/64-bit
/// platform, the output was:
///
///
/// ET = 0.0000000000000000
/// J2000 x-position (km): -291584.61369497533
/// J2000 y-position (km): -266693.40583162551
/// J2000 z-position (km): -76095.653209237149
/// J2000 x-velocity (km/s): 0.64343915743508395
/// J2000 y-velocity (km/s): -0.66606587365741410
/// J2000 z-velocity (km/s): -0.30131006342946742
/// One-way light time (s): 1.3423106103251679
/// Light time rate: 1.0731690869897750E-007
///
/// ET = 3600.0000000000000
/// J2000 x-position (km): -289256.45942322229
/// J2000 y-position (km): -269080.60545907740
/// J2000 z-position (km): -77177.352771302132
/// J2000 x-velocity (km/s): 0.64997032016926526
/// J2000 y-velocity (km/s): -0.66014825329341664
/// J2000 z-velocity (km/s): -0.29963041790724715
/// One-way light time (s): 1.3426939548635302
/// Light time rate: 1.0565259895222426E-007
///
/// ET = 7200.0000000000000
/// J2000 x-position (km): -286904.89654239739
/// J2000 y-position (km): -271446.41676468350
/// J2000 z-position (km): -78252.965533623050
/// J2000 x-velocity (km/s): 0.65644388315539315
/// J2000 y-velocity (km/s): -0.65418355204586442
/// J2000 z-velocity (km/s): -0.29792853294482308
/// One-way light time (s): 1.3430713117337547
/// Light time rate: 1.0399045689875861E-007
///
/// ET = 10800.000000000000
/// J2000 x-position (km): -284530.13302756584
/// J2000 y-position (km): -273790.67111559171
/// J2000 z-position (km): -79322.411703917489
/// J2000 x-velocity (km/s): 0.66285950473048116
/// J2000 y-velocity (km/s): -0.64817224685146524
/// J2000 z-velocity (km/s): -0.29620455846903732
/// One-way light time (s): 1.3434426890693671
/// Light time rate: 1.0233066524342374E-007
///
/// ET = 14400.000000000000
/// J2000 x-position (km): -282132.37807791750
/// J2000 y-position (km): -276113.20159697317
/// J2000 z-position (km): -80385.612030562901
/// J2000 x-velocity (km/s): 0.66921684649247459
/// J2000 y-velocity (km/s): -0.64211481528028158
/// J2000 z-velocity (km/s): -0.29445864490384888
/// One-way light time (s): 1.3438080956559786
/// Light time rate: 1.0067340363005083E-007
/// ```
///
/// # Restrictions
///
/// ```text
/// 1) The kernel files to be used by SPKACS must be loaded
/// (normally by the SPICELIB kernel loader FURNSH) before
/// this routine is called.
///
/// 2) Unlike most other SPK state computation routines, this
/// routine requires that the output state be relative to an
/// inertial reference frame.
/// ```
///
/// # Author and Institution
///
/// ```text
/// N.J. Bachman (JPL)
/// J. Diaz del Rio (ODC Space)
/// ```
///
/// # Version
///
/// ```text
/// - SPICELIB Version 1.1.0, 23-AUG-2021 (JDR) (NJB)
///
/// Edited the header to comply with NAIF standard. Updated
/// example's meta-kernel.
///
/// Bug fix: ABCORR now is parsed using ZZVALCOR. This improves
/// error checking.
///
/// - SPICELIB Version 1.0.1, 04-JUL-2014 (NJB)
///
/// Discussion of light time corrections was updated. Assertions
/// that converged light time corrections are unlikely to be
/// useful were removed.
///
/// - SPICELIB Version 1.0.0, 11-JAN-2008 (NJB)
/// ```
pub fn spkacs(
ctx: &mut SpiceContext,
targ: i32,
et: f64,
ref_: &str,
abcorr: &str,
obs: i32,
starg: &mut [f64; 6],
lt: &mut f64,
dlt: &mut f64,
) -> crate::Result<()> {
SPKACS(
targ,
et,
ref_.as_bytes(),
abcorr.as_bytes(),
obs,
starg,
lt,
dlt,
ctx.raw_context(),
)?;
ctx.handle_errors()?;
Ok(())
}
//$Procedure SPKACS ( SPK, aberration corrected state )
pub fn SPKACS(
TARG: i32,
ET: f64,
REF: &[u8],
ABCORR: &[u8],
OBS: i32,
STARG: &mut [f64],
LT: &mut f64,
DLT: &mut f64,
ctx: &mut Context,
) -> f2rust_std::Result<()> {
let save = ctx.get_vars::<SaveVars>();
let save = &mut *save.borrow_mut();
let mut STARG = DummyArrayMut::new(STARG, 1..=6);
let mut ACC = StackArray::<f64, 3>::new(1..=3);
let mut LTSSB: f64 = 0.0;
let mut SSBLT: f64 = 0.0;
let mut SSBOBS = StackArray::<f64, 6>::new(1..=6);
let mut STOBS = StackArray2D::<f64, 12>::new(1..=6, 1..=2);
let mut T: f64 = 0.0;
let mut REFID: i32 = 0;
let mut ATTBLK = StackArray::<bool, 15>::new(1..=NABCOR);
//
// SPICELIB functions
//
//
// Local parameters
//
//
// Local variables
//
//
// Saved variables
//
//
// Initial values
//
//
// Standard SPICE error handling.
//
if RETURN(ctx) {
return Ok(());
} else {
CHKIN(RNAME, ctx)?;
}
if (save.FIRST || fstr::ne(ABCORR, &save.PRVCOR)) {
//
// The aberration correction flag differs from the value it
// had on the previous call, if any. Analyze the new flag.
//
ZZVALCOR(ABCORR, ATTBLK.as_slice_mut(), ctx)?;
if FAILED(ctx) {
CHKOUT(RNAME, ctx)?;
return Ok(());
}
//
// The aberration correction flag is recognized; save it.
//
fstr::assign(&mut save.PRVCOR, ABCORR);
//
// Set logical flags indicating the attributes of the requested
// correction:
//
// USESTL is .TRUE. when stellar aberration correction is
// specified.
//
// The above definitions are consistent with those used by
// ZZPRSCOR.
//
save.USESTL = ATTBLK[STLIDX];
save.FIRST = false;
}
//
// See if the reference frame is a recognized inertial frame.
//
IRFNUM(REF, &mut REFID, ctx);
if (REFID == 0) {
SETMSG(
b"The requested frame \'#\' is not a recognized inertial frame. ",
ctx,
);
ERRCH(b"#", REF, ctx);
SIGERR(b"SPICE(BADFRAME)", ctx)?;
CHKOUT(RNAME, ctx)?;
return Ok(());
}
//
// Prepare to look up the apparent state of the target
// as seen by the observer. We'll need the geometric
// state of the observer relative to the solar system
// barycenter. If we're using stellar aberration
// corrections, we'll need the observer's acceleration
// as well.
//
// Get the geometric state of the observer relative to the SSB,
// which we'll call SSBOBS.
//
SPKGEO(OBS, ET, REF, SSB, SSBOBS.as_slice_mut(), &mut SSBLT, ctx)?;
if save.USESTL {
//
// Numerically differentiate the observer velocity relative to
// the SSB to obtain acceleration. We first evaluate the
// geometric state of the observer relative to the solar system
// barycenter at ET +/- DELTA.
for I in 1..=2 {
T = (ET + ((((2 * I) - 3) as f64) * DELTA));
SPKGEO(
OBS,
T,
REF,
SSB,
STOBS.subarray_mut([1, I]),
&mut LTSSB,
ctx,
)?;
}
QDERIV(
3,
STOBS.subarray([4, 1]),
STOBS.subarray([4, 2]),
DELTA,
ACC.as_slice_mut(),
ctx,
)?;
} else {
CLEARD(3, ACC.as_slice_mut());
}
//
// Look up the apparent state. The light time and light
// rate are returned as well.
//
SPKAPS(
TARG,
ET,
REF,
ABCORR,
SSBOBS.as_slice(),
ACC.as_slice(),
STARG.as_slice_mut(),
LT,
DLT,
ctx,
)?;
CHKOUT(RNAME, ctx)?;
Ok(())
}