deep_causality_physics 0.6.3

Standard library of physics formulas and engineering primitives for DeepCausality.
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
/*
 * SPDX-License-Identifier: MIT
 * Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
 */

use crate::PhysicsError;

/// Pressure (Pascals).
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct Pressure<R: deep_causality_num::RealField>(R);

impl<R: deep_causality_num::RealField> Default for Pressure<R> {
    fn default() -> Self {
        Self(R::zero())
    }
}

impl<R: deep_causality_num::RealField> Pressure<R> {
    pub fn new(val: R) -> Result<Self, PhysicsError> {
        if !val.is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Pressure must be finite".into(),
            ));
        }
        if val < R::zero() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Negative Pressure".into(),
            ));
        }
        Ok(Self(val))
    }
    pub fn new_unchecked(val: R) -> Self {
        Self(val)
    }
    pub fn value(&self) -> R {
        self.0
    }
}

impl<R: deep_causality_num::RealField + Into<f64>> From<Pressure<R>> for f64 {
    fn from(val: Pressure<R>) -> Self {
        val.0.into()
    }
}

/// Density (kg/m^3).
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct Density<R: deep_causality_num::RealField>(R);

impl<R: deep_causality_num::RealField> Default for Density<R> {
    fn default() -> Self {
        Self(R::zero())
    }
}

impl<R: deep_causality_num::RealField> Density<R> {
    pub fn new(val: R) -> Result<Self, PhysicsError> {
        if !val.is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Density must be finite".into(),
            ));
        }
        if val < R::zero() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Negative Density".into(),
            ));
        }
        Ok(Self(val))
    }
    pub fn new_unchecked(val: R) -> Self {
        Self(val)
    }
    pub fn value(&self) -> R {
        self.0
    }
}

impl<R: deep_causality_num::RealField + Into<f64>> From<Density<R>> for f64 {
    fn from(val: Density<R>) -> Self {
        val.0.into()
    }
}

/// Dynamic Viscosity (Pa·s).
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct Viscosity<R: deep_causality_num::RealField>(R);

impl<R: deep_causality_num::RealField> Default for Viscosity<R> {
    fn default() -> Self {
        Self(R::zero())
    }
}

impl<R: deep_causality_num::RealField> Viscosity<R> {
    pub fn new(val: R) -> Result<Self, PhysicsError> {
        if !val.is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Viscosity must be finite".into(),
            ));
        }
        if val < R::zero() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Negative Viscosity".into(),
            ));
        }
        Ok(Self(val))
    }
    pub fn new_unchecked(val: R) -> Self {
        Self(val)
    }
    pub fn value(&self) -> R {
        self.0
    }
}

impl<R: deep_causality_num::RealField + Into<f64>> From<Viscosity<R>> for f64 {
    fn from(val: Viscosity<R>) -> Self {
        val.0.into()
    }
}

/// Kinematic Viscosity (m^2/s). Equals dynamic viscosity divided by density.
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct KinematicViscosity<R: deep_causality_num::RealField>(R);

impl<R: deep_causality_num::RealField> Default for KinematicViscosity<R> {
    fn default() -> Self {
        Self(R::zero())
    }
}

impl<R: deep_causality_num::RealField> KinematicViscosity<R> {
    pub fn new(val: R) -> Result<Self, PhysicsError> {
        if !val.is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "KinematicViscosity must be finite".into(),
            ));
        }
        if val < R::zero() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Negative KinematicViscosity".into(),
            ));
        }
        Ok(Self(val))
    }
    pub fn new_unchecked(val: R) -> Self {
        Self(val)
    }
    pub fn value(&self) -> R {
        self.0
    }
}

impl<R: deep_causality_num::RealField + Into<f64>> From<KinematicViscosity<R>> for f64 {
    fn from(val: KinematicViscosity<R>) -> Self {
        val.0.into()
    }
}

/// Specific Enthalpy (J/kg). Reference-state dependent; may be negative.
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct SpecificEnthalpy<R: deep_causality_num::RealField>(R);

impl<R: deep_causality_num::RealField> Default for SpecificEnthalpy<R> {
    fn default() -> Self {
        Self(R::zero())
    }
}

impl<R: deep_causality_num::RealField> SpecificEnthalpy<R> {
    pub fn new(val: R) -> Result<Self, PhysicsError> {
        if !val.is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "SpecificEnthalpy must be finite".into(),
            ));
        }
        Ok(Self(val))
    }
    pub fn new_unchecked(val: R) -> Self {
        Self(val)
    }
    pub fn value(&self) -> R {
        self.0
    }
}

impl<R: deep_causality_num::RealField + Into<f64>> From<SpecificEnthalpy<R>> for f64 {
    fn from(val: SpecificEnthalpy<R>) -> Self {
        val.0.into()
    }
}

/// Wall Shear Stress magnitude (Pa). Stored as magnitude; sign convention is
/// carried by the calling context, not by this type.
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct WallShearStress<R: deep_causality_num::RealField>(R);

impl<R: deep_causality_num::RealField> Default for WallShearStress<R> {
    fn default() -> Self {
        Self(R::zero())
    }
}

impl<R: deep_causality_num::RealField> WallShearStress<R> {
    pub fn new(val: R) -> Result<Self, PhysicsError> {
        if !val.is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "WallShearStress must be finite".into(),
            ));
        }
        if val < R::zero() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Negative WallShearStress".into(),
            ));
        }
        Ok(Self(val))
    }
    pub fn new_unchecked(val: R) -> Self {
        Self(val)
    }
    pub fn value(&self) -> R {
        self.0
    }
}

impl<R: deep_causality_num::RealField + Into<f64>> From<WallShearStress<R>> for f64 {
    fn from(val: WallShearStress<R>) -> Self {
        val.0.into()
    }
}

// =============================================================================
// Typed vector newtypes — semantic-distinction wrappers around `[R; 3]`.
//
// Constructor invariant: every component must be finite. No magnitude or sign
// constraint (any finite real triple is a valid velocity, vorticity, etc.).
// =============================================================================

/// Fluid velocity vector (m/s).
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Velocity3<R: deep_causality_num::RealField>([R; 3]);

impl<R: deep_causality_num::RealField> Default for Velocity3<R> {
    fn default() -> Self {
        Self([R::zero(); 3])
    }
}

impl<R: deep_causality_num::RealField> Velocity3<R> {
    pub fn new(raw: [R; 3]) -> Result<Self, PhysicsError> {
        if !raw[0].is_finite() || !raw[1].is_finite() || !raw[2].is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "Velocity3 components must be finite".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [R; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[R; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [R; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<Velocity3<R>> for [R; 3] {
    fn from(val: Velocity3<R>) -> Self {
        val.0
    }
}

/// Vorticity vector `ω = ∇ × u` (1/s). Pseudovector under spatial reflection.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct VorticityVector<R: deep_causality_num::RealField>([R; 3]);

impl<R: deep_causality_num::RealField> Default for VorticityVector<R> {
    fn default() -> Self {
        Self([R::zero(); 3])
    }
}

impl<R: deep_causality_num::RealField> VorticityVector<R> {
    pub fn new(raw: [R; 3]) -> Result<Self, PhysicsError> {
        if !raw[0].is_finite() || !raw[1].is_finite() || !raw[2].is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "VorticityVector components must be finite".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [R; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[R; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [R; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<VorticityVector<R>> for [R; 3] {
    fn from(val: VorticityVector<R>) -> Self {
        val.0
    }
}

/// Acceleration vector (m/s²). Return type of momentum-equation RHS evaluators.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct AccelerationVector<R: deep_causality_num::RealField>([R; 3]);

impl<R: deep_causality_num::RealField> Default for AccelerationVector<R> {
    fn default() -> Self {
        Self([R::zero(); 3])
    }
}

impl<R: deep_causality_num::RealField> AccelerationVector<R> {
    pub fn new(raw: [R; 3]) -> Result<Self, PhysicsError> {
        if !raw[0].is_finite() || !raw[1].is_finite() || !raw[2].is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "AccelerationVector components must be finite".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [R; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[R; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [R; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<AccelerationVector<R>> for [R; 3] {
    fn from(val: AccelerationVector<R>) -> Self {
        val.0
    }
}

/// Body force per unit volume (N/m³).
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct BodyForceDensity<R: deep_causality_num::RealField>([R; 3]);

impl<R: deep_causality_num::RealField> Default for BodyForceDensity<R> {
    fn default() -> Self {
        Self([R::zero(); 3])
    }
}

impl<R: deep_causality_num::RealField> BodyForceDensity<R> {
    pub fn new(raw: [R; 3]) -> Result<Self, PhysicsError> {
        if !raw[0].is_finite() || !raw[1].is_finite() || !raw[2].is_finite() {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "BodyForceDensity components must be finite".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [R; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[R; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [R; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<BodyForceDensity<R>> for [R; 3] {
    fn from(val: BodyForceDensity<R>) -> Self {
        val.0
    }
}

// =============================================================================
// Typed rank-2 tensor newtypes — convention and algebraic-structure wrappers
// around `[[R; 3]; 3]`.
// =============================================================================

#[inline]
fn all_finite_3x3<R: deep_causality_num::RealField>(raw: &[[R; 3]; 3]) -> bool {
    raw[0][0].is_finite()
        && raw[0][1].is_finite()
        && raw[0][2].is_finite()
        && raw[1][0].is_finite()
        && raw[1][1].is_finite()
        && raw[1][2].is_finite()
        && raw[2][0].is_finite()
        && raw[2][1].is_finite()
        && raw[2][2].is_finite()
}

/// Velocity gradient tensor `∇u`. Pinned to the Jacobian convention:
/// `value[i][j] = ∂u_i / ∂x_j`. Construction-time check is finiteness only —
/// any finite 3×3 matrix is a valid velocity gradient.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct VelocityGradient<R: deep_causality_num::RealField>([[R; 3]; 3]);

impl<R: deep_causality_num::RealField> Default for VelocityGradient<R> {
    fn default() -> Self {
        Self([[R::zero(); 3]; 3])
    }
}

impl<R: deep_causality_num::RealField> VelocityGradient<R> {
    pub fn new(raw: [[R; 3]; 3]) -> Result<Self, PhysicsError> {
        if !all_finite_3x3(&raw) {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "VelocityGradient components must be finite".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [[R; 3]; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[[R; 3]; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [[R; 3]; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<VelocityGradient<R>> for [[R; 3]; 3] {
    fn from(val: VelocityGradient<R>) -> Self {
        val.0
    }
}

/// Strain-rate tensor `S = 0.5·(∇u + ∇uᵀ)`. Symmetric: `S_ij = S_ji`.
/// `new` checks the symmetry invariant by exact equality, matching what natural
/// construction `0.5·(G + Gᵀ)` produces in IEEE 754. Use `new_unchecked` to
/// bypass the check in hot kernels where symmetry is guaranteed by the algebra.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct StrainRateTensor<R: deep_causality_num::RealField>([[R; 3]; 3]);

impl<R: deep_causality_num::RealField> Default for StrainRateTensor<R> {
    fn default() -> Self {
        Self([[R::zero(); 3]; 3])
    }
}

impl<R: deep_causality_num::RealField> StrainRateTensor<R> {
    pub fn new(raw: [[R; 3]; 3]) -> Result<Self, PhysicsError> {
        if !all_finite_3x3(&raw) {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "StrainRateTensor components must be finite".into(),
            ));
        }
        if raw[0][1] != raw[1][0] || raw[0][2] != raw[2][0] || raw[1][2] != raw[2][1] {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "StrainRateTensor must be symmetric (S_ij == S_ji)".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [[R; 3]; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[[R; 3]; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [[R; 3]; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<StrainRateTensor<R>> for [[R; 3]; 3] {
    fn from(val: StrainRateTensor<R>) -> Self {
        val.0
    }
}

/// Rate-of-rotation (spin) tensor `Ω = 0.5·(∇u − ∇uᵀ)`. Antisymmetric:
/// `Ω_ji = −Ω_ij`, with `Ω_ii = 0`. `new` checks the antisymmetry invariant
/// by exact equality.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct RotationRateTensor<R: deep_causality_num::RealField>([[R; 3]; 3]);

impl<R: deep_causality_num::RealField> Default for RotationRateTensor<R> {
    fn default() -> Self {
        Self([[R::zero(); 3]; 3])
    }
}

impl<R: deep_causality_num::RealField> RotationRateTensor<R> {
    pub fn new(raw: [[R; 3]; 3]) -> Result<Self, PhysicsError> {
        if !all_finite_3x3(&raw) {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "RotationRateTensor components must be finite".into(),
            ));
        }
        let zero = R::zero();
        if raw[0][0] != zero || raw[1][1] != zero || raw[2][2] != zero {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "RotationRateTensor diagonal must be zero (antisymmetric)".into(),
            ));
        }
        if raw[0][1] != -raw[1][0] || raw[0][2] != -raw[2][0] || raw[1][2] != -raw[2][1] {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "RotationRateTensor must be antisymmetric (Ω_ji == -Ω_ij)".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [[R; 3]; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[[R; 3]; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [[R; 3]; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<RotationRateTensor<R>> for [[R; 3]; 3] {
    fn from(val: RotationRateTensor<R>) -> Self {
        val.0
    }
}

/// Cauchy stress tensor (Pa). Symmetric, positive-in-tension sign convention.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct CauchyStress<R: deep_causality_num::RealField>([[R; 3]; 3]);

impl<R: deep_causality_num::RealField> Default for CauchyStress<R> {
    fn default() -> Self {
        Self([[R::zero(); 3]; 3])
    }
}

impl<R: deep_causality_num::RealField> CauchyStress<R> {
    pub fn new(raw: [[R; 3]; 3]) -> Result<Self, PhysicsError> {
        if !all_finite_3x3(&raw) {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "CauchyStress components must be finite".into(),
            ));
        }
        if raw[0][1] != raw[1][0] || raw[0][2] != raw[2][0] || raw[1][2] != raw[2][1] {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "CauchyStress must be symmetric (σ_ij == σ_ji)".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [[R; 3]; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[[R; 3]; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [[R; 3]; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<CauchyStress<R>> for [[R; 3]; 3] {
    fn from(val: CauchyStress<R>) -> Self {
        val.0
    }
}

/// Viscous (deviatoric) stress tensor `τ` (Pa). Symmetric. Distinct from the
/// full Cauchy stress `σ = −p I + τ` — only the viscous part appears in the
/// dissipation `Φ = τ:∇u ≥ 0` and entropy-production guarantees.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct ViscousStress<R: deep_causality_num::RealField>([[R; 3]; 3]);

impl<R: deep_causality_num::RealField> Default for ViscousStress<R> {
    fn default() -> Self {
        Self([[R::zero(); 3]; 3])
    }
}

impl<R: deep_causality_num::RealField> ViscousStress<R> {
    pub fn new(raw: [[R; 3]; 3]) -> Result<Self, PhysicsError> {
        if !all_finite_3x3(&raw) {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "ViscousStress components must be finite".into(),
            ));
        }
        if raw[0][1] != raw[1][0] || raw[0][2] != raw[2][0] || raw[1][2] != raw[2][1] {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "ViscousStress must be symmetric (τ_ij == τ_ji)".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [[R; 3]; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[[R; 3]; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [[R; 3]; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<ViscousStress<R>> for [[R; 3]; 3] {
    fn from(val: ViscousStress<R>) -> Self {
        val.0
    }
}

/// Reynolds stress tensor `R_ij = ⟨u'_i u'_j⟩` (Pa, after multiplication by ρ
/// in caller; here a kinematic Reynolds stress in m²/s² is also acceptable).
/// Symmetric. Diagonal entries are non-negative (variances) — *not* enforced
/// by the newtype to keep the constructor cheap; callers passing a tensor
/// that violates the diagonal-positivity property are responsible for
/// downstream interpretation.
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct ReynoldsStress<R: deep_causality_num::RealField>([[R; 3]; 3]);

impl<R: deep_causality_num::RealField> Default for ReynoldsStress<R> {
    fn default() -> Self {
        Self([[R::zero(); 3]; 3])
    }
}

impl<R: deep_causality_num::RealField> ReynoldsStress<R> {
    pub fn new(raw: [[R; 3]; 3]) -> Result<Self, PhysicsError> {
        if !all_finite_3x3(&raw) {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "ReynoldsStress components must be finite".into(),
            ));
        }
        if raw[0][1] != raw[1][0] || raw[0][2] != raw[2][0] || raw[1][2] != raw[2][1] {
            return Err(PhysicsError::PhysicalInvariantBroken(
                "ReynoldsStress must be symmetric (R_ij == R_ji)".into(),
            ));
        }
        Ok(Self(raw))
    }
    pub fn new_unchecked(raw: [[R; 3]; 3]) -> Self {
        Self(raw)
    }
    pub fn value(&self) -> &[[R; 3]; 3] {
        &self.0
    }
    pub fn into_inner(self) -> [[R; 3]; 3] {
        self.0
    }
}

impl<R: deep_causality_num::RealField> From<ReynoldsStress<R>> for [[R; 3]; 3] {
    fn from(val: ReynoldsStress<R>) -> Self {
        val.0
    }
}