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
//! Handle-based FFI API for numerical physics functions.
use cratephysics;
// ============================================================================
// Physical Constants
// ============================================================================
/// Returns the speed of light constant c via handle-based FFI.
///
/// # Returns
///
/// The speed of light c = 2.998 × 10⁸ m/s.
pub const extern "C"
/// Returns Planck's constant h via handle-based FFI.
///
/// # Returns
///
/// Planck's constant h = 6.626 × 10⁻³⁴ J·s.
pub const extern "C"
/// Returns the gravitational constant G via handle-based FFI.
///
/// # Returns
///
/// The gravitational constant G = 6.674 × 10⁻¹¹ N·m²/kg².
pub const extern "C"
/// Returns the Boltzmann constant `k_B` via handle-based FFI.
///
/// # Returns
///
/// The Boltzmann constant `k_B` = 1.381 × 10⁻²³ J/K.
pub const extern "C"
/// Returns the elementary charge e via handle-based FFI.
///
/// # Returns
///
/// The elementary charge e = 1.602 × 10⁻¹⁹ Coulombs.
pub const extern "C"
/// Returns the electron rest mass `m_e` via handle-based FFI.
///
/// # Returns
///
/// The electron rest mass `m_e` = 9.109 × 10⁻³¹ kg.
pub const extern "C"
// ============================================================================
// Classical Mechanics
// ============================================================================
/// Computes the displacement of a simple harmonic oscillator via handle-based FFI.
///
/// The displacement is given by x(t) = A cos(ωt + φ).
///
/// # Arguments
///
/// * `amplitude` - Oscillation amplitude A (m)
/// * `omega` - Angular frequency ω (rad/s)
/// * `phase` - Phase angle φ (radians)
/// * `time` - Time t at which to evaluate displacement (s)
///
/// # Returns
///
/// The displacement x(t) (m).
pub extern "C"
/// Computes the displacement of a damped harmonic oscillator via handle-based FFI.
///
/// The displacement is x(t) = A e⁻γᵗ cos(ω't + φ), where ω' = √(ω₀² - γ²).
///
/// # Arguments
///
/// * `amplitude` - Initial amplitude A (m)
/// * `omega0` - Natural angular frequency ω₀ (rad/s)
/// * `gamma` - Damping coefficient γ (1/s)
/// * `phase` - Phase angle φ (radians)
/// * `time` - Time t at which to evaluate displacement (s)
///
/// # Returns
///
/// The displacement x(t) for underdamped oscillation (m).
pub extern "C"
// ============================================================================
// Electromagnetism
// ============================================================================
/// Computes the Coulomb electrostatic force between two point charges via handle-based FFI.
///
/// The force is F = `k_e` q₁q₂ / r², where `k_e` = 8.99 × 10⁹ N·m²/C².
///
/// # Arguments
///
/// * `q1` - First charge q₁ (Coulombs)
/// * `q2` - Second charge q₂ (Coulombs)
/// * `r` - Separation distance r (m)
///
/// # Returns
///
/// The Coulomb force magnitude F (Newtons, positive for repulsion).
pub extern "C"
/// Computes the electric field magnitude of a point charge via handle-based FFI.
///
/// The electric field is E = `k_e` q / r².
///
/// # Arguments
///
/// * `q` - Point charge q (Coulombs)
/// * `r` - Distance from charge r (m)
///
/// # Returns
///
/// The electric field magnitude E (N/C or V/m).
pub extern "C"
/// Computes the electric potential of a point charge via handle-based FFI.
///
/// The potential is V = `k_e` q / r.
///
/// # Arguments
///
/// * `q` - Point charge q (Coulombs)
/// * `r` - Distance from charge r (m)
///
/// # Returns
///
/// The electric potential V (Volts).
pub extern "C"
/// Computes the magnetic field magnitude around an infinite straight current-carrying wire via handle-based FFI.
///
/// The magnetic field is B = (μ₀ I) / (2πr), where μ₀ is the permeability of free space.
///
/// # Arguments
///
/// * `current` - Electric current I (Amperes)
/// * `r` - Perpendicular distance from wire r (m)
///
/// # Returns
///
/// The magnetic field magnitude B (Tesla).
pub extern "C"
/// Computes the Lorentz force on a charged particle in electromagnetic fields via handle-based FFI.
///
/// The force is F = q(E + v × B), simplified for parallel fields.
///
/// # Arguments
///
/// * `charge` - Particle charge q (Coulombs)
/// * `velocity` - Particle velocity v (m/s)
/// * `e_field` - Electric field magnitude E (V/m)
/// * `b_field` - Magnetic field magnitude B (Tesla)
///
/// # Returns
///
/// The Lorentz force magnitude F (Newtons).
pub extern "C"
/// Computes the cyclotron radius for a charged particle in a magnetic field via handle-based FFI.
///
/// The radius is r = (mv) / (qB), representing circular motion radius in a uniform B-field.
///
/// # Arguments
///
/// * `mass` - Particle mass m (kg)
/// * `velocity` - Particle velocity v (m/s)
/// * `charge` - Particle charge q (Coulombs)
/// * `b_field` - Magnetic field magnitude B (Tesla)
///
/// # Returns
///
/// The cyclotron radius r (m).
pub extern "C"
// ============================================================================
// Thermodynamics
// ============================================================================
/// Computes the pressure of an ideal gas via handle-based FFI.
///
/// Uses the ideal gas law PV = nRT, where R = 8.314 J/(mol·K).
///
/// # Arguments
///
/// * `n` - Amount of substance (moles)
/// * `t` - Absolute temperature T (Kelvin)
/// * `v` - Volume V (m³)
///
/// # Returns
///
/// The gas pressure P (Pascals).
pub extern "C"
/// Computes the volume of an ideal gas via handle-based FFI.
///
/// Uses the ideal gas law V = nRT/P.
///
/// # Arguments
///
/// * `n` - Amount of substance (moles)
/// * `t` - Absolute temperature T (Kelvin)
/// * `p` - Pressure P (Pascals)
///
/// # Returns
///
/// The gas volume V (m³).
pub extern "C"
/// Computes the temperature of an ideal gas via handle-based FFI.
///
/// Uses the ideal gas law T = PV/(nR).
///
/// # Arguments
///
/// * `p` - Pressure P (Pascals)
/// * `v` - Volume V (m³)
/// * `n` - Amount of substance (moles)
///
/// # Returns
///
/// The absolute temperature T (Kelvin).
pub extern "C"
/// Computes the Maxwell-Boltzmann speed distribution probability density via handle-based FFI.
///
/// The distribution is f(v) = `4π(m/(2πk_BT))³¹²` v² exp(-mv²/(2k_BT)).
///
/// # Arguments
///
/// * `v` - Particle speed v (m/s)
/// * `mass` - Particle mass m (kg)
/// * `temperature` - Absolute temperature T (Kelvin)
///
/// # Returns
///
/// The probability density f(v) (s/m).
pub extern "C"
/// Computes the mean speed of particles in a Maxwell-Boltzmann distribution via handle-based FFI.
///
/// The mean speed is ⟨v⟩ = √(`8k_BT/(πm)`).
///
/// # Arguments
///
/// * `mass` - Particle mass m (kg)
/// * `temperature` - Absolute temperature T (Kelvin)
///
/// # Returns
///
/// The mean speed ⟨v⟩ (m/s).
pub extern "C"
/// Computes the root-mean-square speed of particles in a Maxwell-Boltzmann distribution via handle-based FFI.
///
/// The RMS speed is `v_rms` = √(`3k_BT/m`).
///
/// # Arguments
///
/// * `mass` - Particle mass m (kg)
/// * `temperature` - Absolute temperature T (Kelvin)
///
/// # Returns
///
/// The RMS speed `v_rms` (m/s).
pub extern "C"
/// Computes the total power radiated by a blackbody via handle-based FFI.
///
/// Uses the Stefan-Boltzmann law P = `σAT⁴`, where σ = 5.67 × 10⁻⁸ W/(m²·K⁴).
///
/// # Arguments
///
/// * `area` - Surface area A (m²)
/// * `temperature` - Absolute temperature T (Kelvin)
///
/// # Returns
///
/// The radiated power P (Watts).
pub extern "C"
/// Computes the peak wavelength of blackbody radiation using Wien's displacement law via handle-based FFI.
///
/// Wien's law states `λ_max` = b/T, where b = 2.898 × 10⁻³ m·K.
///
/// # Arguments
///
/// * `temperature` - Absolute temperature T (Kelvin)
///
/// # Returns
///
/// The peak wavelength `λ_max` (meters).
pub extern "C"
// ============================================================================
// Special Relativity
// ============================================================================
/// Computes the Lorentz factor for relativistic transformations via handle-based FFI.
///
/// The Lorentz factor is γ = 1 / √(1 - v²/c²).
///
/// # Arguments
///
/// * `velocity` - Velocity v (m/s)
///
/// # Returns
///
/// The Lorentz factor γ (dimensionless, ≥ 1).
pub extern "C"
/// Computes relativistic time dilation via handle-based FFI.
///
/// The dilated time is t = γt₀, where γ is the Lorentz factor.
///
/// # Arguments
///
/// * `proper_time` - Proper time t₀ (s)
/// * `velocity` - Relative velocity v (m/s)
///
/// # Returns
///
/// The dilated time t (s).
pub extern "C"
/// Computes relativistic length contraction via handle-based FFI.
///
/// The contracted length is L = L₀/γ, where γ is the Lorentz factor.
///
/// # Arguments
///
/// * `proper_length` - Proper length L₀ (m)
/// * `velocity` - Relative velocity v (m/s)
///
/// # Returns
///
/// The contracted length L (m).
pub extern "C"
/// Computes relativistic momentum via handle-based FFI.
///
/// The momentum is p = γmv, where γ is the Lorentz factor.
///
/// # Arguments
///
/// * `mass` - Rest mass m (kg)
/// * `velocity` - Velocity v (m/s)
///
/// # Returns
///
/// The relativistic momentum p (kg·m/s).
pub extern "C"
/// Computes relativistic kinetic energy via handle-based FFI.
///
/// The kinetic energy is K = (γ - 1)mc².
///
/// # Arguments
///
/// * `mass` - Rest mass m (kg)
/// * `velocity` - Velocity v (m/s)
///
/// # Returns
///
/// The kinetic energy K (Joules).
pub extern "C"
/// Computes rest mass energy using Einstein's mass-energy equivalence via handle-based FFI.
///
/// The rest energy is E = mc².
///
/// # Arguments
///
/// * `mass` - Rest mass m (kg)
///
/// # Returns
///
/// The rest energy E (Joules).
pub extern "C"
/// Computes relativistic velocity addition via handle-based FFI.
///
/// The combined velocity is u = (v + w) / (1 + vw/c²).
///
/// # Arguments
///
/// * `v` - First velocity (m/s)
/// * `w` - Second velocity (m/s)
///
/// # Returns
///
/// The combined velocity u (m/s).
pub extern "C"
// ============================================================================
// Quantum Mechanics
// ============================================================================
/// Computes the energy eigenvalue of a quantum harmonic oscillator via handle-based FFI.
///
/// The energy is `E_n` = ℏω(n + 1/2), where ℏ is the reduced Planck constant.
///
/// # Arguments
///
/// * `n` - Quantum number n (non-negative integer, ground state = 0)
/// * `omega` - Angular frequency ω (rad/s)
///
/// # Returns
///
/// The energy eigenvalue `E_n` (Joules).
pub extern "C"
/// Computes the energy level of the hydrogen atom using the Bohr model via handle-based FFI.
///
/// The energy is `E_n` = -13.6 eV / n², where n is the principal quantum number.
///
/// # Arguments
///
/// * `n` - Principal quantum number n (positive integer, ground state = 1)
///
/// # Returns
///
/// The energy level `E_n` (Joules, negative for bound states).
pub extern "C"
/// Computes the de Broglie wavelength of a particle via handle-based FFI.
///
/// The wavelength is λ = h/p, where h is Planck's constant and p is momentum.
///
/// # Arguments
///
/// * `momentum` - Particle momentum p (kg·m/s)
///
/// # Returns
///
/// The de Broglie wavelength λ (meters).
pub extern "C"
/// Computes the energy of a photon from its wavelength via handle-based FFI.
///
/// The energy is E = hc/λ.
///
/// # Arguments
///
/// * `wavelength` - Photon wavelength λ (meters)
///
/// # Returns
///
/// The photon energy E (Joules).
pub extern "C"
/// Computes the wavelength of a photon from its energy via handle-based FFI.
///
/// The wavelength is λ = hc/E.
///
/// # Arguments
///
/// * `energy` - Photon energy E (Joules)
///
/// # Returns
///
/// The photon wavelength λ (meters).
pub extern "C"
/// Computes the Compton wavelength of a particle via handle-based FFI.
///
/// The Compton wavelength is `λ_C` = h/(mc), characteristic of quantum scattering.
///
/// # Arguments
///
/// * `mass` - Particle rest mass m (kg)
///
/// # Returns
///
/// The Compton wavelength `λ_C` (meters).
pub extern "C"