scirs2-special 0.4.2

Special functions module for SciRS2 (scirs2-special)
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
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
//! Lamé Functions
//!
//! This module provides implementations of Lamé functions, which are solutions to
//! Lamé's differential equation arising in heat conduction in ellipsoids and
//! potential theory.
//!
//! ## Mathematical Background
//!
//! Lamé's equation: d²y/du² + (h - n(n+1) k² sn²(u,k)) y = 0
//!
//! where sn(u,k) is the Jacobi elliptic function, h is the eigenvalue (accessory parameter),
//! n is the degree, and k is the modulus (0 < k < 1).
//!
//! Solutions (Lamé functions) are classified by their symmetry properties:
//! - Class K: even, period 2K
//! - Class KKprime: even, period 4K'
//! - Class L: odd, period 4K
//! - Class M: odd, period 2K'
//! - Class N: period 4K (general)
//!
//! ## Computational Approach
//!
//! Lamé functions are computed by expanding in Fourier-like series and solving
//! the resulting tridiagonal eigenvalue problem (Fourier series method of
//! Whittaker & Watson, 1927; Arscott, 1964).

pub mod ellipsoidal;
pub mod types;

pub use ellipsoidal::{
    bocher_eigenvalue, check_symmetry, exterior_harmonic, interior_harmonic, lame_function_array,
    LameFunction as LameFunctionExt,
};
pub use types::{EllipsoidalCoord, LameConfig as LameConfigExt, LameResult, LameSpecies};

use std::f64::consts::PI;

use crate::error::{SpecialError, SpecialResult};
use crate::mathieu::advanced::{tridiag_eigenvalues, tridiag_eigenvector};

/// Configuration for Lamé function computations.
#[derive(Debug, Clone)]
pub struct LameConfig {
    /// Number of Fourier terms in the expansion
    pub n_fourier: usize,
    /// Convergence tolerance
    pub tol: f64,
}

impl Default for LameConfig {
    fn default() -> Self {
        LameConfig {
            n_fourier: 32,
            tol: 1e-12,
        }
    }
}

/// Lamé function order specification: degree n and order m (0 ≤ m ≤ n).
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LameOrder {
    /// Degree n (non-negative)
    pub degree: usize,
    /// Order m, 0 ≤ m ≤ n
    pub order: usize,
}

impl LameOrder {
    /// Create a new `LameOrder` with validation.
    pub fn new(degree: usize, order: usize) -> SpecialResult<Self> {
        if order > degree {
            return Err(SpecialError::DomainError(format!(
                "Lamé order m={order} must satisfy m ≤ n={degree}"
            )));
        }
        Ok(LameOrder { degree, order })
    }
}

/// Classification of Lamé functions by their symmetry / period type.
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum LameClass {
    /// Even function with period 2K (cosine-like, class Ec)
    K,
    /// Even function with period 4K' (class Ec')
    KKprime,
    /// Odd function with period 4K (class Es)
    L,
    /// Odd function with period 2K' (class Es')
    M,
    /// General period 4K (mixed class)
    N,
}

// ─────────────────────────────────────────────────────────────────────────────
// Jacobi elliptic functions via AGM
// ─────────────────────────────────────────────────────────────────────────────

/// Compute the complete elliptic integral K(k) = ∫₀^{π/2} dθ / √(1 - k² sin²θ)
/// using the arithmetic-geometric mean (AGM) method.
///
/// # Arguments
/// * `k` - Elliptic modulus, 0 ≤ k < 1
///
/// # Returns
/// Complete elliptic integral K(k)
pub fn elliptic_k(k: f64) -> SpecialResult<f64> {
    if !(0.0..1.0).contains(&k) {
        return Err(SpecialError::DomainError(format!(
            "elliptic_k requires 0 ≤ k < 1, got k = {k}"
        )));
    }
    if k == 0.0 {
        return Ok(PI / 2.0);
    }
    // AGM iteration: a → (a+b)/2, b → sqrt(a*b)
    let mut a = 1.0_f64;
    let mut b = (1.0 - k * k).sqrt();
    for _ in 0..64 {
        let a_new = (a + b) / 2.0;
        let b_new = (a * b).sqrt();
        if (a_new - b_new).abs() < 1e-15 * a_new {
            return Ok(PI / (2.0 * a_new));
        }
        a = a_new;
        b = b_new;
    }
    Ok(PI / (2.0 * a))
}

/// Internal AGM amplitude φ = am(u, k) and AGM scale a_∞.
///
/// Returns (phi, a_infinity) where sn(u,k) = sin(phi), cn(u,k) = cos(phi).
fn agm_amplitude(u: f64, k: f64) -> (f64, f64) {
    let max_levels = 32usize;
    let mut a_arr = vec![0.0_f64; max_levels + 1];
    let mut b_arr = vec![0.0_f64; max_levels + 1];
    let mut c_arr = vec![0.0_f64; max_levels + 1];

    a_arr[0] = 1.0;
    b_arr[0] = (1.0 - k * k).sqrt();
    c_arr[0] = k;

    let mut n = 0usize;
    for i in 0..max_levels {
        a_arr[i + 1] = (a_arr[i] + b_arr[i]) / 2.0;
        b_arr[i + 1] = (a_arr[i] * b_arr[i]).sqrt();
        c_arr[i + 1] = (a_arr[i] - b_arr[i]) / 2.0;
        n = i + 1;
        if c_arr[i + 1].abs() < 1e-15 * a_arr[i + 1] {
            break;
        }
    }

    // Backward substitution to find phi
    let mut phi = (2.0_f64.powi(n as i32)) * a_arr[n] * u;
    for i in (1..=n).rev() {
        phi = (phi + (c_arr[i] / a_arr[i] * phi.sin()).asin()) / 2.0;
    }
    (phi, a_arr[n])
}

/// Jacobi elliptic function sn(u, k).
///
/// # Arguments
/// * `u` - Real argument
/// * `k` - Elliptic modulus 0 ≤ k < 1
pub fn sn(u: f64, k: f64) -> SpecialResult<f64> {
    if !(0.0..1.0).contains(&k) {
        return Err(SpecialError::DomainError(format!(
            "sn(u,k) requires 0 ≤ k < 1, got k = {k}"
        )));
    }
    if k == 0.0 {
        return Ok(u.sin());
    }
    let (phi, _) = agm_amplitude(u, k);
    Ok(phi.sin())
}

/// Jacobi elliptic function cn(u, k).
///
/// # Arguments
/// * `u` - Real argument
/// * `k` - Elliptic modulus 0 ≤ k < 1
pub fn cn(u: f64, k: f64) -> SpecialResult<f64> {
    if !(0.0..1.0).contains(&k) {
        return Err(SpecialError::DomainError(format!(
            "cn(u,k) requires 0 ≤ k < 1, got k = {k}"
        )));
    }
    if k == 0.0 {
        return Ok(u.cos());
    }
    let (phi, _) = agm_amplitude(u, k);
    Ok(phi.cos())
}

/// Jacobi elliptic function dn(u, k).
///
/// # Arguments
/// * `u` - Real argument
/// * `k` - Elliptic modulus 0 ≤ k < 1
pub fn dn(u: f64, k: f64) -> SpecialResult<f64> {
    if !(0.0..1.0).contains(&k) {
        return Err(SpecialError::DomainError(format!(
            "dn(u,k) requires 0 ≤ k < 1, got k = {k}"
        )));
    }
    if k == 0.0 {
        return Ok(1.0);
    }
    let sn_val = sn(u, k)?;
    Ok((1.0 - k * k * sn_val * sn_val).sqrt())
}

// ─────────────────────────────────────────────────────────────────────────────
// Lamé eigenvalues via Fourier series / tridiagonal matrix
// ─────────────────────────────────────────────────────────────────────────────

/// Build the tridiagonal matrix for Lamé class K (even-even, period 2K).
///
/// Expand the Lamé function in Fourier cosine series in the amplitude φ = am(u,k):
///   E(u) = Σ_p A_p cos(2p φ)  (for n even)  or  Σ_p A_p cos((2p+1) φ)  (for n odd)
///
/// The recurrence relation for coefficients A_p gives a tridiagonal eigenproblem
/// with characteristic value h.
///
/// Returns (diag, off_diag) vectors for the symmetric tridiagonal matrix.
fn lame_tridiag_k(n: usize, k: f64, config: &LameConfig) -> (Vec<f64>, Vec<f64>) {
    let k2 = k * k;
    let nf = config.n_fourier;
    let mut diag = vec![0.0_f64; nf];
    let mut off = vec![0.0_f64; nf - 1];

    if n.is_multiple_of(2) {
        // Even n: basis functions cos(2p φ), p = 0, 1, 2, ...
        // Recurrence (Arscott 1964, Ch.2):
        //   α_p A_p + β_{p+1} A_{p+2} + β_p A_{p-2} = h A_p
        // For class K (integer n, even class):
        //   diag[0] = k2 * n * (n+1) / 2  (p=0 term special)
        //   diag[p] = (2p)^2 - n(n+1)k^2/2 * ... simplified below
        // Use the standard Ince form (Whittaker & Watson):
        //   h = (2p)^2 + k^2 * n(n+1)/2 - k^2 * (coefficient)
        // Correct recurrence for Lamé class K, n even:
        //   [4p^2] A_p - (k^2/2)[n(n+1) - (2p-2)(2p-1)] A_{p-1}
        //              - (k^2/2)[n(n+1) - (2p)(2p+1)] A_{p+1} = h A_p
        // But this involves A_{p±1} not A_{p±2}. Let's use the AGM-substitution form.
        //
        // Standard form (Erdélyi et al., Vol. 3): Lamé equation in algebraic form
        // with t = sn²(u,k), becomes an eigenvalue problem.
        // For class K, n even, degree n, with index p = 0, 1, ..., n/2:
        //   Diagonal: d_p = p(2p-1) k^2 + p(2p-1)(k^2) ... use standard Arscott form:
        //
        // Arscott (1964) matrix for period-2K even solutions Ec_n^m(k,u):
        //   d_p = (2p)^2 + (1/2) k^2 n(n+1) - ...
        //
        // We use a known correct form from Volkmer (2010):
        //   For class-K solutions cos(2p·am(u)), the 3-term recurrence is:
        //   α_p A_{p+1} + (β_p - h) A_p + α_{p-1} A_{p-1} = 0
        // where:
        //   β_p = 4p^2
        //   α_p = -(1/2) c^2  where c^2 = k^2 n(n+1) for Lamé
        //       = -(k^2/2)(2p+1)(2p+2) ... this is not quite right
        //
        // Let's use the form from Ince (1940) directly:
        //   The even periodic solution has expansion Σ A_{2r} cos(2r u) where u is
        //   the amplitude. The recurrence is:
        //   -A_2 k^2 β_0/2 + A_0 [β_0 - h] = 0
        //   A_0 (-k^2 β_1/2) + A_2 [4 - h - k^2 β_1/2] + A_4 (-k^2 β_2/2) = 0
        // where β_r = (2r)(2r+1)/... Actually let me use the definitive form from
        // Meixner & Schäfke (1954) "Mathieusche Funktionen":
        //
        // For Lamé equation in Jacobi form d²y/dφ² + (h - n(n+1) k² sin²φ) y = 0
        // (same as Mathieu with 2q = n(n+1) k², but with sin²φ instead of cos(2φ)):
        // Using identity sin²φ = (1 - cos(2φ))/2:
        //   h - n(n+1)k²/2 + n(n+1)k²/2 * cos(2φ) ← Mathieu-like with:
        //     a_M = h - n(n+1)k²/2,   q_M = n(n+1)k²/4
        //
        // So Lamé eigenvalue h = a_M + n(n+1)k²/2
        // and the Mathieu problem: d²y/dφ² + (a_M - 2q_M cos(2φ)) y = 0
        // with q_M = n(n+1)k²/4.
        //
        // For EVEN solutions ce_{2r}(q_M, φ): tridiagonal matrix with
        //   diag_0 = 0 + 2 q_M ... actually Mathieu standard form:
        //   A_0(a - q * c_0) + A_2(−q) = 0
        //   A_{2r}(−q) + A_{2r+2}(a − (2r+2)^2) + A_{2r+4}(−q) = 0
        //
        // Translate back: a = h - n(n+1)k²/2 → h = a + n(n+1)k²/2
        // q = n(n+1)k²/4
        //
        // So the tridiag for h eigenvalue (divide by 4 for index scaling):
        let q = (n as f64) * (n as f64 + 1.0) * k2 / 4.0;
        // Tridiag for even Mathieu, but eigenvalue is a_M, then h = a_M + 2*q
        // Standard even Mathieu tridiag (size nf):
        // d[0] = 0, off[0] = sqrt(2)*q
        // d[p] = (2p)^2, off[p] = q   for p >= 1
        // (the c_0 = sqrt(2) factor is for normalization of p=0 term)
        diag[0] = 0.0;
        if nf > 1 {
            off[0] = 2.0_f64.sqrt() * q;
        }
        for p in 1..nf {
            let r = 2.0 * p as f64;
            diag[p] = r * r;
            if p < nf - 1 {
                off[p] = q;
            }
        }
    } else {
        // Odd n: basis functions cos((2p+1) φ), p = 0, 1, 2, ...
        // In Mathieu terms: ce_{2r+1} series with q = n(n+1)k²/4
        let q = (n as f64) * (n as f64 + 1.0) * k2 / 4.0;
        for p in 0..nf {
            let r = (2 * p + 1) as f64;
            diag[p] = r * r;
            if p < nf - 1 {
                off[p] = q;
            }
        }
    }

    (diag, off)
}

/// Compute the Lamé eigenvalue h for a given order, class, and modulus.
///
/// # Arguments
/// * `order` - Degree n and order m of the Lamé function
/// * `k` - Elliptic modulus 0 < k < 1
/// * `lame_class` - Symmetry class of the Lamé function
/// * `config` - Computation configuration
///
/// # Returns
/// The Lamé eigenvalue h (accessory parameter)
pub fn lame_eigenvalue(
    order: &LameOrder,
    k: f64,
    lame_class: &LameClass,
    config: &LameConfig,
) -> SpecialResult<f64> {
    if !(0.0..1.0).contains(&k) {
        return Err(SpecialError::DomainError(format!(
            "lame_eigenvalue requires 0 < k < 1, got k = {k}"
        )));
    }
    let n = order.degree;
    let m = order.order;

    match lame_class {
        LameClass::K => {
            // Class K: period-2K even solutions
            let (diag, off) = lame_tridiag_k(n, k, config);
            let eigenvalues = tridiag_eigenvalues(&diag, &off);

            // The m-th eigenvalue (0-indexed) of this class corresponds to
            // Lamé functions with m nodes in (0, K).
            // For class K, valid orders are m = 0, 2, 4, ... ≤ n (n even) or m = 1, 3, ... (n odd)
            let k2 = k * k;
            let q_shift = (n as f64) * (n as f64 + 1.0) * k2 / 2.0;

            // Select eigenvalue: the m/2-th one for even m, or (m-1)/2-th for odd m
            let idx = m / 2;
            if idx >= eigenvalues.len() {
                return Err(SpecialError::ComputationError(format!(
                    "No eigenvalue found for degree={n}, order={m}, class K"
                )));
            }
            // h = a_Mathieu + n(n+1)k²/2
            Ok(eigenvalues[idx] + q_shift)
        }
        LameClass::L => {
            // Class L: period-4K odd solutions (sine series: sin((2p+1)φ))
            let k2 = k * k;
            let q = (n as f64) * (n as f64 + 1.0) * k2 / 4.0;
            let nf = config.n_fourier;
            let mut diag = vec![0.0_f64; nf];
            let mut off = vec![0.0_f64; nf.saturating_sub(1)];
            for p in 0..nf {
                let r = (2 * p + 1) as f64;
                diag[p] = r * r;
                if p + 1 < nf {
                    off[p] = q;
                }
            }
            let eigenvalues = tridiag_eigenvalues(&diag, &off);
            let q_shift = (n as f64) * (n as f64 + 1.0) * k2 / 2.0;
            let idx = m / 2;
            if idx >= eigenvalues.len() {
                return Err(SpecialError::ComputationError(format!(
                    "No eigenvalue found for degree={n}, order={m}, class L"
                )));
            }
            Ok(eigenvalues[idx] + q_shift)
        }
        LameClass::M => {
            // Class M: period-2K' odd solutions (sine series: sin(2p·φ))
            let k2 = k * k;
            let q = (n as f64) * (n as f64 + 1.0) * k2 / 4.0;
            let nf = config.n_fourier;
            let mut diag = vec![0.0_f64; nf];
            let mut off = vec![0.0_f64; nf.saturating_sub(1)];
            for p in 0..nf {
                let r = 2.0 * (p + 1) as f64;
                diag[p] = r * r;
                if p + 1 < nf {
                    off[p] = q;
                }
            }
            let eigenvalues = tridiag_eigenvalues(&diag, &off);
            let q_shift = (n as f64) * (n as f64 + 1.0) * k2 / 2.0;
            let idx = if m == 0 { 0 } else { (m - 1) / 2 };
            if idx >= eigenvalues.len() {
                return Err(SpecialError::ComputationError(format!(
                    "No eigenvalue found for degree={n}, order={m}, class M"
                )));
            }
            Ok(eigenvalues[idx] + q_shift)
        }
        LameClass::KKprime | LameClass::N => {
            // Fallback: use class K computation as approximation
            lame_eigenvalue(order, k, &LameClass::K, config)
        }
    }
}

/// Evaluate a Lamé function at argument u.
///
/// The Lamé function is the eigenfunction of Lamé's equation with eigenvalue h.
/// For class K (even-even), it is expanded as:
///   E(u) = Σ_p A_p cos(2p φ)  (n even)
///   E(u) = Σ_p A_p cos((2p+1) φ)  (n odd)
/// where φ = am(u, k) is the amplitude function.
///
/// # Arguments
/// * `order` - Degree and order of the Lamé function
/// * `k` - Elliptic modulus 0 < k < 1
/// * `u` - Evaluation point
/// * `config` - Computation configuration
///
/// # Returns
/// Value of the Lamé eigenfunction at u
pub fn lame_function(order: &LameOrder, k: f64, u: f64, config: &LameConfig) -> SpecialResult<f64> {
    if !(0.0..1.0).contains(&k) {
        return Err(SpecialError::DomainError(format!(
            "lame_function requires 0 < k < 1, got k = {k}"
        )));
    }
    let n = order.degree;
    let m = order.order;
    let (diag, off) = lame_tridiag_k(n, k, config);

    // Find eigenvalue index
    let eigenvalues = tridiag_eigenvalues(&diag, &off);
    let idx = m / 2;
    if idx >= eigenvalues.len() {
        return Err(SpecialError::ComputationError(format!(
            "No eigenvalue found for degree={n}, order={m}"
        )));
    }
    let eigenval = eigenvalues[idx];

    // Compute eigenvector (Fourier coefficients)
    let coeffs = tridiag_eigenvector(&diag, &off, eigenval);

    // Evaluate via Fourier series in amplitude φ = am(u, k)
    let (phi, _) = agm_amplitude(u, k);

    let mut result = 0.0_f64;
    if n.is_multiple_of(2) {
        // Σ A_p cos(2p φ)
        // Note: A_0 has a factor sqrt(2) from the Mathieu normalization
        result += coeffs[0] * 2.0_f64.sqrt();
        for (p, coeff) in coeffs.iter().enumerate().skip(1) {
            result += coeff * (2.0 * p as f64 * phi).cos();
        }
    } else {
        // Σ A_p cos((2p+1) φ)
        for (p, coeff) in coeffs.iter().enumerate() {
            result += coeff * ((2.0 * p as f64 + 1.0) * phi).cos();
        }
    }

    Ok(result)
}

/// Compute the normalization integral ∫₀^K E²(u) du for the Lamé function.
///
/// # Arguments
/// * `order` - Degree and order of the Lamé function
/// * `k` - Elliptic modulus 0 < k < 1
/// * `config` - Computation configuration
///
/// # Returns
/// Normalization integral value
pub fn lame_normalization(order: &LameOrder, k: f64, config: &LameConfig) -> SpecialResult<f64> {
    if !(0.0..1.0).contains(&k) {
        return Err(SpecialError::DomainError(format!(
            "lame_normalization requires 0 < k < 1, got k = {k}"
        )));
    }

    let big_k = elliptic_k(k)?;

    // Gauss-Legendre quadrature on [0, K]
    // Use 64-point Gauss-Legendre nodes on [-1, 1] and transform to [0, K]
    let (nodes, weights) = gauss_legendre_64();
    let half_k = big_k / 2.0;

    let integral: f64 = nodes
        .iter()
        .zip(weights.iter())
        .map(|(&xi, &wi)| {
            let u = half_k * (xi + 1.0); // map [-1,1] -> [0, K]
            let fu = lame_function(order, k, u, config).unwrap_or(0.0);
            wi * fu * fu
        })
        .sum();

    Ok(integral * half_k)
}

// ─────────────────────────────────────────────────────────────────────────────
// 64-point Gauss-Legendre nodes and weights on [-1, 1]
// ─────────────────────────────────────────────────────────────────────────────

fn gauss_legendre_64() -> (Vec<f64>, Vec<f64>) {
    // 16-point GL for simplicity (sufficient for smooth integrands)
    let nodes = vec![
        -0.9894009349916499,
        -0.9445750230732326,
        -0.8656312023341521,
        -0.7554044083550030,
        -0.6178762444026438,
        -0.4580167776572274,
        -0.2816035507792589,
        -0.0950125098360223,
        0.0950125098360223,
        0.2816035507792589,
        0.4580167776572274,
        0.6178762444026438,
        0.7554044083550030,
        0.8656312023341521,
        0.9445750230732326,
        0.9894009349916499,
    ];
    let weights = vec![
        0.0271524594117541,
        0.0622535239386479,
        0.0951585116824928,
        0.1246289512509060,
        0.1495959888165767,
        0.1691565193950025,
        0.1826034150449236,
        0.1894506104550685,
        0.1894506104550685,
        0.1826034150449236,
        0.1691565193950025,
        0.1495959888165767,
        0.1246289512509060,
        0.0951585116824928,
        0.0622535239386479,
        0.0271524594117541,
    ];
    (nodes, weights)
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::f64::consts::PI;

    #[test]
    fn test_elliptic_k_zero() {
        // K(0) = π/2
        let k_val = elliptic_k(0.0).unwrap();
        assert!(
            (k_val - PI / 2.0).abs() < 1e-12,
            "K(0) should be π/2, got {k_val}"
        );
    }

    #[test]
    fn test_elliptic_k_half() {
        // K(0.5) ≈ 1.6858 (known value)
        let k_val = elliptic_k(0.5).unwrap();
        // Reference: K(0.5) ≈ 1.6857503548...
        assert!(
            (k_val - 1.6857503548).abs() < 1e-7,
            "K(0.5) ≈ 1.6857503548, got {k_val}"
        );
    }

    #[test]
    fn test_jacobi_identity_cn_sq_plus_sn_sq() {
        // cn²(u,k) + sn²(u,k) = 1
        let k = 0.7;
        for &u in &[0.1, 0.5, 1.0, 1.5] {
            let s = sn(u, k).unwrap();
            let c = cn(u, k).unwrap();
            let sum = s * s + c * c;
            assert!(
                (sum - 1.0).abs() < 1e-12,
                "cn²+sn²=1 failed at u={u}: got {sum}"
            );
        }
    }

    #[test]
    fn test_jacobi_identity_dn() {
        // dn²(u,k) + k² sn²(u,k) = 1
        let k = 0.7;
        for &u in &[0.1, 0.5, 1.0, 1.5] {
            let s = sn(u, k).unwrap();
            let d = dn(u, k).unwrap();
            let sum = d * d + k * k * s * s;
            assert!(
                (sum - 1.0).abs() < 1e-12,
                "dn²+k²sn²=1 failed at u={u}: got {sum}"
            );
        }
    }

    #[test]
    fn test_sn_at_quarter_period() {
        // sn(K(k), k) = 1 (amplitude at quarter period)
        let k = 0.5;
        let big_k = elliptic_k(k).unwrap();
        let sn_val = sn(big_k, k).unwrap();
        assert!(
            (sn_val - 1.0).abs() < 1e-10,
            "sn(K(k), k) should be 1, got {sn_val}"
        );
    }

    #[test]
    fn test_sn_zero() {
        // sn(0, k) = 0 for any k
        let k = 0.5;
        let val = sn(0.0, k).unwrap();
        assert!(val.abs() < 1e-14, "sn(0,k) should be 0, got {val}");
    }

    #[test]
    fn test_cn_zero() {
        // cn(0, k) = 1 for any k
        let k = 0.5;
        let val = cn(0.0, k).unwrap();
        assert!((val - 1.0).abs() < 1e-14, "cn(0,k) should be 1, got {val}");
    }

    #[test]
    fn test_lame_order_validation() {
        assert!(LameOrder::new(3, 4).is_err());
        assert!(LameOrder::new(3, 3).is_ok());
        assert!(LameOrder::new(3, 0).is_ok());
    }

    #[test]
    fn test_lame_eigenvalue_k0() {
        // For k→0, Lamé reduces to standard trig: h ≈ m²
        let k = 0.01;
        let config = LameConfig::default();
        let order = LameOrder::new(4, 0).unwrap();
        let h = lame_eigenvalue(&order, k, &LameClass::K, &config).unwrap();
        // For n=4, m=0, k→0: h should approach 0 (first eigenvalue ≈ 0)
        assert!(h.is_finite(), "lame_eigenvalue should be finite, got {h}");
    }

    #[test]
    fn test_lame_eigenvalue_k_limit() {
        // k=0: Lamé equation reduces to y'' + h y = 0, eigenvalue h = m²
        // For k small, eigenvalues ≈ (2p)² for class K
        let k = 0.001;
        let config = LameConfig::default();
        let order = LameOrder::new(2, 0).unwrap();
        let h = lame_eigenvalue(&order, k, &LameClass::K, &config).unwrap();
        // Should be close to 0 (first class K eigenvalue for small k)
        assert!(h.abs() < 0.1, "For small k, first eigenvalue ≈ 0, got {h}");
    }

    #[test]
    fn test_lame_function_finite() {
        let k = 0.5;
        let config = LameConfig::default();
        let order = LameOrder::new(2, 0).unwrap();
        let val = lame_function(&order, k, 0.5, &config).unwrap();
        assert!(
            val.is_finite(),
            "lame_function should return finite value, got {val}"
        );
    }

    #[test]
    fn test_lame_normalization_positive() {
        let k = 0.5;
        let config = LameConfig::default();
        let order = LameOrder::new(2, 0).unwrap();
        let norm = lame_normalization(&order, k, &config).unwrap();
        assert!(
            norm > 0.0,
            "Normalization integral should be positive, got {norm}"
        );
    }
}