rsspice 0.1.0

Pure Rust port of the SPICE Toolkit for space geometry
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
//
// GENERATED FILE
//

use super::*;
use f2rust_std::*;

const EMAX: f64 = 306.0;
const LIMIT: f64 = 0.0000000000001;
const LINLEN: i32 = 80;
const UBEL: i32 = 9;
const MSGLEN: i32 = 240;
const NCASE: i32 = 500;
const NPT: i32 = 10;

struct SaveVars {
    CENTER: StackArray<f64, 3>,
}

impl SaveInit for SaveVars {
    fn new() -> Self {
        let mut CENTER = StackArray::<f64, 3>::new(1..=3);

        {
            use f2rust_std::data::Val;

            let mut clist = []
                .into_iter()
                .chain(std::iter::repeat_n(Val::D(0.0), 3 as usize))
                .chain([]);

            CENTER
                .iter_mut()
                .for_each(|n| *n = clist.next().unwrap().into_f64());

            debug_assert!(clist.next().is_none(), "DATA not fully initialised");
        }

        Self { CENTER }
    }
}

//$Procedure F_SAELGV ( SAELGV tests )
pub fn F_SAELGV(OK: &mut bool, ctx: &mut Context) -> f2rust_std::Result<()> {
    let save = ctx.get_vars::<SaveVars>();
    let save = &mut *save.borrow_mut();

    let mut TITLE = [b' '; MSGLEN as usize];
    let mut ANGLE: f64 = 0.0;
    let mut DIST: f64 = 0.0;
    let mut ELLIPS = StackArray::<f64, 9>::new(1..=UBEL);
    let mut EV1: f64 = 0.0;
    let mut EV2: f64 = 0.0;
    let mut EXPMAJ = StackArray::<f64, 3>::new(1..=3);
    let mut EXPMIN = StackArray::<f64, 3>::new(1..=3);
    let mut PNEAR = StackArray::<f64, 3>::new(1..=3);
    let mut POINT = StackArray::<f64, 3>::new(1..=3);
    let mut SCALE: f64 = 0.0;
    let mut SEP: f64 = 0.0;
    let mut SMAJOR = StackArray::<f64, 3>::new(1..=3);
    let mut SMINOR = StackArray::<f64, 3>::new(1..=3);
    let mut VEC1 = StackArray::<f64, 3>::new(1..=3);
    let mut VEC2 = StackArray::<f64, 3>::new(1..=3);
    let mut SEED: i32 = 0;

    //
    // SPICELIB functions
    //

    //
    // Other functions
    //

    //
    // Local Parameters
    //

    //
    // Local Variables
    //

    //
    // Saved values
    //

    //
    // Initial values
    //

    //
    // Open the test family.
    //
    testutil::TOPEN(b"F_SAELGV", ctx)?;

    //
    // --- Case: ------------------------------------------------------
    //
    fstr::assign(&mut TITLE, b"A case that can be checked by inspection.");
    testutil::TCASE(&TITLE, ctx)?;

    VEC1[1] = 1.0;
    VEC1[2] = 1.0;
    VEC1[3] = 0.0;

    VEC2[1] = 1.0;
    VEC2[2] = 0.0;
    VEC2[3] = 0.0;

    //
    // The equation of this ellipse is
    //
    //             2       2
    //    ( x - y )    +  y       =   1
    //
    // or
    //
    //     2                   2
    //    x    -   2xy   +   2y   =  1
    //
    // The left hand side is
    //
    //    ( x  y ) (  1   -1 ) ( x )
    //             ( -1    2 ) ( y )
    //
    // The eigenvalues of the matrix are
    //
    //                   ___
    //     3     +     \/ 5
    //    ---    _     ------
    //     2              2
    //
    // Letting these be EV1 and EV2, some orthogonal eigenvectors are
    //
    //    (    1    )     ( EV1 - 1 )
    //    ( 1 - EV1 )     (    1    )
    //
    // A rotation to a basis formed from the eigenvectors gives
    // us the ellipse equation
    //
    //          2             2
    //    EV1  u    +    EV2 v    =   1
    //
    // The semi-major axis length is the square root of 1/EV2;
    // The semi-minor axis length is the square root of 1/EV1.
    //

    EV1 = ((3.0 + f64::sqrt(5.0)) / 2.0);
    EV2 = ((3.0 - f64::sqrt(5.0)) / 2.0);

    EXPMAJ[1] = (EV1 - 1.0);
    EXPMAJ[2] = 1.0;
    EXPMAJ[3] = 0.0;

    spicelib::VHATIP(EXPMAJ.as_slice_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;
    spicelib::VSCLIP((1.0 / f64::sqrt(EV2)), EXPMAJ.as_slice_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    EXPMIN[1] = -1.0;
    EXPMIN[2] = (EV1 - 1.0);
    EXPMIN[3] = 0.0;

    spicelib::VHATIP(EXPMIN.as_slice_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;
    spicelib::VSCLIP((1.0 / f64::sqrt(EV1)), EXPMIN.as_slice_mut());
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::SAELGV(
        VEC1.as_slice(),
        VEC2.as_slice(),
        SMAJOR.as_slice_mut(),
        SMINOR.as_slice_mut(),
        ctx,
    )?;
    testutil::CHCKXC(false, b" ", OK, ctx)?;

    SEP = spicelib::VSEP(SMAJOR.as_slice(), EXPMAJ.as_slice(), ctx);

    if (SEP < spicelib::PI(ctx)) {
        testutil::CHCKAD(
            b"SMAJOR",
            SMAJOR.as_slice(),
            b"~~/",
            EXPMAJ.as_slice(),
            3,
            LIMIT,
            OK,
            ctx,
        )?;
    } else {
        spicelib::VSCLIP(-1.0, EXPMAJ.as_slice_mut());
        testutil::CHCKAD(
            b"SMAJOR",
            SMAJOR.as_slice(),
            b"~~/",
            EXPMAJ.as_slice(),
            3,
            LIMIT,
            OK,
            ctx,
        )?;
    }

    SEP = spicelib::VSEP(SMINOR.as_slice(), EXPMIN.as_slice(), ctx);

    if (SEP < spicelib::PI(ctx)) {
        testutil::CHCKAD(
            b"SMINOR",
            SMINOR.as_slice(),
            b"~~/",
            EXPMIN.as_slice(),
            3,
            LIMIT,
            OK,
            ctx,
        )?;
    } else {
        spicelib::VSCLIP(-1.0, EXPMIN.as_slice_mut());
        testutil::CHCKAD(
            b"SMINOR",
            SMINOR.as_slice(),
            b"~~/",
            EXPMIN.as_slice(),
            3,
            LIMIT,
            OK,
            ctx,
        )?;
    }

    //
    // --- Case: ------------------------------------------------------
    //
    fstr::assign(
        &mut TITLE,
        b"Exceptional case: one zero-length generating vector.",
    );
    testutil::TCASE(&TITLE, ctx)?;

    VEC1[1] = 0.0;
    VEC1[2] = 0.0;
    VEC1[3] = 0.0;

    VEC2[1] = 1.0;
    VEC2[2] = 2.0;
    VEC2[3] = 3.0;

    spicelib::SAELGV(
        VEC1.as_slice(),
        VEC2.as_slice(),
        SMAJOR.as_slice_mut(),
        SMINOR.as_slice_mut(),
        ctx,
    )?;

    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::VEQU(VEC1.as_slice(), EXPMIN.as_slice_mut());
    spicelib::VEQU(VEC2.as_slice(), EXPMAJ.as_slice_mut());

    testutil::CHCKAD(
        b"SMAJOR",
        SMAJOR.as_slice(),
        b"~~/",
        EXPMAJ.as_slice(),
        3,
        LIMIT,
        OK,
        ctx,
    )?;
    testutil::CHCKAD(
        b"SMINOR",
        SMINOR.as_slice(),
        b"~~/",
        EXPMIN.as_slice(),
        3,
        LIMIT,
        OK,
        ctx,
    )?;

    //
    // --- Case: ------------------------------------------------------
    //
    fstr::assign(
        &mut TITLE,
        b"Exceptional case: two zero-length generating vectors.",
    );
    testutil::TCASE(&TITLE, ctx)?;

    VEC1[1] = 0.0;
    VEC1[2] = 0.0;
    VEC1[3] = 0.0;

    spicelib::VEQU(VEC1.as_slice(), VEC2.as_slice_mut());

    spicelib::SAELGV(
        VEC1.as_slice(),
        VEC2.as_slice(),
        SMAJOR.as_slice_mut(),
        SMINOR.as_slice_mut(),
        ctx,
    )?;

    testutil::CHCKXC(false, b" ", OK, ctx)?;

    spicelib::VEQU(VEC1.as_slice(), EXPMIN.as_slice_mut());
    spicelib::VEQU(VEC2.as_slice(), EXPMAJ.as_slice_mut());

    testutil::CHCKAD(
        b"SMAJOR",
        SMAJOR.as_slice(),
        b"~~/",
        EXPMAJ.as_slice(),
        3,
        LIMIT,
        OK,
        ctx,
    )?;
    testutil::CHCKAD(
        b"SMINOR",
        SMINOR.as_slice(),
        b"~~/",
        EXPMIN.as_slice(),
        3,
        LIMIT,
        OK,
        ctx,
    )?;

    //
    // Now we perform the pseudo-random test cases.
    //
    SEED = -1;

    //
    // Determine the number of general cases from the dimensions
    // of the parameter set.
    //
    for CASE in 1..=NCASE {
        //
        // --- Case: ------------------------------------------------------
        //
        fstr::assign(&mut TITLE, b"Create two generating vectors whose components range over the unit sphere; also select a scale factor in the range 1.e-306: 1.e306; case #.");

        spicelib::REPMI(&TITLE.clone(), b"#", CASE, &mut TITLE, ctx);
        testutil::CHCKXC(false, b" ", OK, ctx)?;
        testutil::TCASE(&TITLE, ctx)?;

        //
        // Make up some generating vectors.
        //
        VEC1[1] = testutil::T_RANDD(-1.0, 1.0, &mut SEED, ctx)?;
        VEC1[2] = testutil::T_RANDD(-1.0, 1.0, &mut SEED, ctx)?;
        VEC1[3] = testutil::T_RANDD(-1.0, 1.0, &mut SEED, ctx)?;

        VEC2[1] = testutil::T_RANDD(-1.0, 1.0, &mut SEED, ctx)?;
        VEC2[2] = testutil::T_RANDD(-1.0, 1.0, &mut SEED, ctx)?;
        VEC2[3] = testutil::T_RANDD(-1.0, 1.0, &mut SEED, ctx)?;

        // WRITE (*,*) 'VEC1  = ', VEC1
        // WRITE (*,*) 'VEC2  = ', VEC2

        SEP = spicelib::VSEP(VEC1.as_slice(), VEC2.as_slice(), ctx);

        if ((SEP > LIMIT) && (f64::abs((spicelib::PI(ctx) - SEP)) > LIMIT)) {
            //
            // Now let's get a scale factor.
            //
            SCALE = f64::powf(10.0, testutil::T_RANDD(-EMAX, EMAX, &mut SEED, ctx)?);

            //  WRITE (*,*) 'VEC1  = ', VEC1
            //  WRITE (*,*) 'VEC2  = ', VEC2
            //  WRITE (*,*) 'SCALE = ', SCALE
            //
            // Scale the generating vectors.
            //
            spicelib::VSCLIP(SCALE, VEC1.as_slice_mut());
            spicelib::VSCLIP(SCALE, VEC2.as_slice_mut());

            //
            // The call.
            //
            spicelib::SAELGV(
                VEC1.as_slice(),
                VEC2.as_slice(),
                SMAJOR.as_slice_mut(),
                SMINOR.as_slice_mut(),
                ctx,
            )?;

            testutil::CHCKXC(false, b" ", OK, ctx)?;

            //
            // Make sure the semi-axes are ordered properly.
            //
            testutil::CHCKSD(
                b"VNORM(SMAJOR)-VNORM(SMINOR)",
                (spicelib::VNORM(SMAJOR.as_slice()) - spicelib::VNORM(SMINOR.as_slice())),
                b">=",
                0.0,
                0.0,
                OK,
                ctx,
            )?;
            //
            // Make an ellipse out of the center and generating vectors.
            // This involves a call to SAELGV.
            //
            spicelib::CGV2EL(
                save.CENTER.as_slice(),
                VEC1.as_slice(),
                VEC2.as_slice(),
                ELLIPS.as_slice_mut(),
                ctx,
            )?;
            testutil::CHCKXC(false, b" ", OK, ctx)?;

            //
            // Take a sample of points on the original ellipse, and
            // find the scaled distance of each one from ELLIPS.  The
            // scaled distances should not exceed our chosen limit.
            //
            for J in 0..=(NPT - 1) {
                ANGLE = (((J as f64) * spicelib::TWOPI(ctx)) / NPT as f64);

                spicelib::VLCOM(
                    f64::cos(ANGLE),
                    VEC1.as_slice(),
                    f64::sin(ANGLE),
                    VEC2.as_slice(),
                    POINT.as_slice_mut(),
                );
                testutil::CHCKXC(false, b" ", OK, ctx)?;

                spicelib::NPELPT(
                    POINT.as_slice(),
                    ELLIPS.as_slice(),
                    PNEAR.as_slice_mut(),
                    &mut DIST,
                    ctx,
                )?;
                testutil::CHCKXC(false, b" ", OK, ctx)?;

                testutil::CHCKSD(b"DIST/SCALE", (DIST / SCALE), b"~", 0.0, LIMIT, OK, ctx)?;
            }
        }
    }

    //
    // Close out the test family.
    //
    testutil::T_SUCCESS(OK, ctx);
    Ok(())
}