oxiflow 0.3.0

Generic PDE solving engine for transport, reaction and diffusion phenomena (∂u/∂t + ∇·F = S)
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
//! # Module `context::quantity`
//!
//! Type-safe physical quantity identifiers for multi-component fields (DD-010).
//!
//! ## Design
//!
//! [`PhysicalQuantity`] identifies a physical field by both its *kind*
//! (concentration, temperature, …) and its *component index* for multi-component
//! systems. This avoids the flat-enum anti-pattern seen in chrom-rs, where
//! `PhysicalQuantity::Concentration` was a single key for all species — forcing
//! an implicit column-ordering convention on the state matrix.
//!
//! | Variant | Component | Typical use |
//! |---------|-----------|-------------|
//! | `Concentration { component }` | species index | chromatography, Nernst-Planck |
//! | `Temperature` | — (always scalar) | heat conduction, thermo-mechanical coupling |
//! | `Pressure` | — (always scalar) | Darcy, Saint-Venant hydrostatic |
//! | `Velocity { component }` | spatial dimension | Saint-Venant `hv`, structural dynamics |
//! | `Custom { name, component }` | user-defined | `WaterDepth`, `MagneticFlux`, … |
//!
//! ## Convention
//!
//! `component: 0` is the canonical index for single-component models. Use the
//! constructor helpers (`PhysicalQuantity::concentration()`) to avoid boilerplate
//! in J1/J2 code.
//!
//! ## Serialisation
//!
//! Under `--features serde`, `PhysicalQuantity` serialises to a flat JSON object:
//!
//! ```json
//! { "quantity": "Concentration", "component": 0 }
//! { "quantity": "Temperature",   "component": 0 }
//! { "quantity": "WaterDepth",    "component": 0 }
//! ```
//!
//! `Temperature` and `Pressure` (intrinsically scalar) always serialise with
//! `"component": 0` for uniformity. `Custom` serialises the `name` field directly
//! as `"quantity"` — no `"Custom(...)"` wrapper — for maximum readability by
//! external tools.

use std::borrow::Cow;
use std::fmt;

// ── PhysicalQuantity ──────────────────────────────────────────────────────────

/// Type-safe identifier for a physical field in a multi-component system.
///
/// Used as part of the composite key `(DomainId, PhysicalQuantity)` in
/// [`MultiDomainState`](super::state::MultiDomainState).
///
/// # Examples
///
/// ```rust
/// use oxiflow::context::quantity::PhysicalQuantity;
///
/// // Single-component convenience constructors (component: 0)
/// let c   = PhysicalQuantity::concentration();
/// let t   = PhysicalQuantity::temperature();
/// let p   = PhysicalQuantity::pressure();
/// let v   = PhysicalQuantity::velocity();
///
/// // Multi-component — explicit index
/// let c1  = PhysicalQuantity::Concentration { component: 1 };
/// let hv  = PhysicalQuantity::Velocity { component: 0 };
///
/// // Custom field
/// let h   = PhysicalQuantity::custom("WaterDepth");
/// let b   = PhysicalQuantity::custom("MagneticFlux");
///
/// assert_ne!(c, c1);
/// assert_eq!(c, PhysicalQuantity::Concentration { component: 0 });
/// ```
#[non_exhaustive]
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum PhysicalQuantity {
    /// Species concentration — multi-component chromatography, Nernst-Planck,
    /// reaction-diffusion.
    ///
    /// `component: 0` for single-species models (J1/J2 default).
    Concentration {
        /// Species / component index (0-based).
        component: usize,
    },

    /// Temperature field — heat conduction, thermo-mechanical coupling.
    ///
    /// Intrinsically scalar: no `component` field. Serialises with
    /// `"component": 0` for format uniformity.
    Temperature,

    /// Pressure field — Darcy flow, Saint-Venant hydrostatic pressure.
    ///
    /// Intrinsically scalar: no `component` field. Serialises with
    /// `"component": 0` for format uniformity.
    Pressure,

    /// Velocity component — Saint-Venant momentum `hv`, structural dynamics.
    ///
    /// `component` indexes the spatial dimension (0 = axial for 1-D models).
    Velocity {
        /// Spatial dimension index (0-based).
        component: usize,
    },

    /// User-defined physical quantity.
    ///
    /// Use for fields that do not map to a standard variant: water depth `h`,
    /// magnetic flux density `B`, void fraction `θ`, etc.
    ///
    /// `name` is a `Cow<'static, str>` — zero allocation for compile-time
    /// literals, `Deserialize`-compatible for dynamic names (same pattern as
    /// `ContextVariable::External`).
    Custom {
        /// Field name. Serialises directly as the `"quantity"` JSON key.
        name: Cow<'static, str>,
        /// Component index (0-based). Use `0` for scalar custom fields.
        component: usize,
    },
}

impl PhysicalQuantity {
    // ── Convenience constructors ──────────────────────────────────────────────

    /// Concentration for single-component models (`component: 0`).
    #[inline]
    pub fn concentration() -> Self {
        Self::Concentration { component: 0 }
    }

    /// Temperature (scalar — no component index).
    #[inline]
    pub fn temperature() -> Self {
        Self::Temperature
    }

    /// Pressure (scalar — no component index).
    #[inline]
    pub fn pressure() -> Self {
        Self::Pressure
    }

    /// Velocity for 1-D models (`component: 0`).
    #[inline]
    pub fn velocity() -> Self {
        Self::Velocity { component: 0 }
    }

    /// Custom scalar field identified by `name` (`component: 0`).
    ///
    /// # Examples
    ///
    /// ```rust
    /// use oxiflow::context::quantity::PhysicalQuantity;
    ///
    /// let h = PhysicalQuantity::custom("WaterDepth");
    /// assert_eq!(h, PhysicalQuantity::Custom {
    ///     name: "WaterDepth".into(),
    ///     component: 0,
    /// });
    /// ```
    #[inline]
    pub fn custom(name: impl Into<Cow<'static, str>>) -> Self {
        Self::Custom {
            name: name.into(),
            component: 0,
        }
    }

    // ── Accessors ─────────────────────────────────────────────────────────────

    /// Returns the component index.
    ///
    /// `Temperature` and `Pressure` always return `0` (intrinsically scalar).
    ///
    /// # Examples
    ///
    /// ```rust
    /// use oxiflow::context::quantity::PhysicalQuantity;
    ///
    /// assert_eq!(PhysicalQuantity::concentration().component(), 0);
    /// assert_eq!(PhysicalQuantity::Concentration { component: 2 }.component(), 2);
    /// assert_eq!(PhysicalQuantity::temperature().component(), 0);
    /// ```
    pub fn component(&self) -> usize {
        match self {
            Self::Concentration { component } => *component,
            Self::Temperature => 0,
            Self::Pressure => 0,
            Self::Velocity { component } => *component,
            Self::Custom { component, .. } => *component,
        }
    }

    /// Returns the quantity name as a string slice.
    ///
    /// For `Custom`, returns the user-provided name. For standard variants,
    /// returns the variant name. This is the value written to the `"quantity"`
    /// field in the serialised JSON.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use oxiflow::context::quantity::PhysicalQuantity;
    ///
    /// assert_eq!(PhysicalQuantity::concentration().kind_str(), "Concentration");
    /// assert_eq!(PhysicalQuantity::temperature().kind_str(), "Temperature");
    /// assert_eq!(PhysicalQuantity::custom("WaterDepth").kind_str(), "WaterDepth");
    /// ```
    pub fn kind_str(&self) -> &str {
        match self {
            Self::Concentration { .. } => "Concentration",
            Self::Temperature => "Temperature",
            Self::Pressure => "Pressure",
            Self::Velocity { .. } => "Velocity",
            Self::Custom { name, .. } => name.as_ref(),
        }
    }
}

impl fmt::Display for PhysicalQuantity {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Concentration { component } => write!(f, "Concentration({component})"),
            Self::Temperature => write!(f, "Temperature"),
            Self::Pressure => write!(f, "Pressure"),
            Self::Velocity { component } => write!(f, "Velocity({component})"),
            Self::Custom { name, component } => write!(f, "{name}({component})"),
        }
    }
}

// ── Tests ─────────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;
    use std::collections::HashMap;

    // ── Constructors ──────────────────────────────────────────────────────────

    #[test]
    fn concentration_default_is_component_zero() {
        assert_eq!(
            PhysicalQuantity::concentration(),
            PhysicalQuantity::Concentration { component: 0 }
        );
    }

    #[test]
    fn temperature_equals_temperature() {
        assert_eq!(
            PhysicalQuantity::temperature(),
            PhysicalQuantity::Temperature
        );
    }

    #[test]
    fn pressure_equals_pressure() {
        assert_eq!(PhysicalQuantity::pressure(), PhysicalQuantity::Pressure);
    }

    #[test]
    fn velocity_default_is_component_zero() {
        assert_eq!(
            PhysicalQuantity::velocity(),
            PhysicalQuantity::Velocity { component: 0 }
        );
    }

    #[test]
    fn custom_default_is_component_zero() {
        assert_eq!(
            PhysicalQuantity::custom("WaterDepth"),
            PhysicalQuantity::Custom {
                name: "WaterDepth".into(),
                component: 0,
            }
        );
    }

    // ── Equality & distinctness ───────────────────────────────────────────────

    #[test]
    fn different_components_are_not_equal() {
        let c0 = PhysicalQuantity::Concentration { component: 0 };
        let c1 = PhysicalQuantity::Concentration { component: 1 };
        assert_ne!(c0, c1);
    }

    #[test]
    fn different_kinds_are_not_equal() {
        assert_ne!(
            PhysicalQuantity::concentration(),
            PhysicalQuantity::temperature()
        );
        assert_ne!(
            PhysicalQuantity::concentration(),
            PhysicalQuantity::pressure()
        );
        assert_ne!(
            PhysicalQuantity::concentration(),
            PhysicalQuantity::velocity()
        );
    }

    #[test]
    fn custom_different_names_not_equal() {
        assert_ne!(
            PhysicalQuantity::custom("WaterDepth"),
            PhysicalQuantity::custom("MagneticFlux")
        );
    }

    #[test]
    fn custom_same_name_different_component_not_equal() {
        let a = PhysicalQuantity::Custom {
            name: "B".into(),
            component: 0,
        };
        let b = PhysicalQuantity::Custom {
            name: "B".into(),
            component: 1,
        };
        assert_ne!(a, b);
    }

    // ── component() accessor ──────────────────────────────────────────────────

    #[test]
    fn component_returns_correct_index() {
        assert_eq!(
            PhysicalQuantity::Concentration { component: 2 }.component(),
            2
        );
        assert_eq!(PhysicalQuantity::Temperature.component(), 0);
        assert_eq!(PhysicalQuantity::Pressure.component(), 0);
        assert_eq!(PhysicalQuantity::Velocity { component: 1 }.component(), 1);
        assert_eq!(
            PhysicalQuantity::Custom {
                name: "B".into(),
                component: 3
            }
            .component(),
            3
        );
    }

    // ── kind_str() accessor ───────────────────────────────────────────────────

    #[test]
    fn kind_str_standard_variants() {
        assert_eq!(
            PhysicalQuantity::concentration().kind_str(),
            "Concentration"
        );
        assert_eq!(PhysicalQuantity::temperature().kind_str(), "Temperature");
        assert_eq!(PhysicalQuantity::pressure().kind_str(), "Pressure");
        assert_eq!(PhysicalQuantity::velocity().kind_str(), "Velocity");
    }

    #[test]
    fn kind_str_custom_returns_name() {
        assert_eq!(
            PhysicalQuantity::custom("WaterDepth").kind_str(),
            "WaterDepth"
        );
    }

    // ── Display ───────────────────────────────────────────────────────────────

    #[test]
    fn display_concentration() {
        assert_eq!(
            format!("{}", PhysicalQuantity::Concentration { component: 1 }),
            "Concentration(1)"
        );
    }

    #[test]
    fn display_temperature_and_pressure() {
        assert_eq!(format!("{}", PhysicalQuantity::Temperature), "Temperature");
        assert_eq!(format!("{}", PhysicalQuantity::Pressure), "Pressure");
    }

    #[test]
    fn display_velocity() {
        assert_eq!(
            format!("{}", PhysicalQuantity::Velocity { component: 0 }),
            "Velocity(0)"
        );
    }

    #[test]
    fn display_custom() {
        assert_eq!(
            format!(
                "{}",
                PhysicalQuantity::Custom {
                    name: "WaterDepth".into(),
                    component: 0
                }
            ),
            "WaterDepth(0)"
        );
    }

    // ── Hash (usable as HashMap key) ──────────────────────────────────────────

    #[test]
    fn usable_as_hashmap_key() {
        let mut map: HashMap<PhysicalQuantity, f64> = HashMap::new();
        map.insert(PhysicalQuantity::concentration(), 1.0);
        map.insert(PhysicalQuantity::Concentration { component: 1 }, 2.0);
        map.insert(PhysicalQuantity::temperature(), 298.15);
        map.insert(PhysicalQuantity::custom("WaterDepth"), 0.5);

        assert_eq!(map[&PhysicalQuantity::concentration()], 1.0);
        assert_eq!(map[&PhysicalQuantity::Concentration { component: 1 }], 2.0);
        assert_eq!(map[&PhysicalQuantity::temperature()], 298.15);
        assert_eq!(map[&PhysicalQuantity::custom("WaterDepth")], 0.5);
    }

    #[test]
    fn three_component_scenario() {
        // Validates the 3-component acceptance criterion from #38
        let mut map: HashMap<PhysicalQuantity, &str> = HashMap::new();
        map.insert(PhysicalQuantity::Concentration { component: 0 }, "Malic");
        map.insert(PhysicalQuantity::Concentration { component: 1 }, "Citric");
        map.insert(PhysicalQuantity::Concentration { component: 2 }, "Tartaric");

        assert_eq!(
            map[&PhysicalQuantity::Concentration { component: 0 }],
            "Malic"
        );
        assert_eq!(
            map[&PhysicalQuantity::Concentration { component: 1 }],
            "Citric"
        );
        assert_eq!(
            map[&PhysicalQuantity::Concentration { component: 2 }],
            "Tartaric"
        );
        assert_eq!(map.len(), 3);
    }

    // ── Clone ─────────────────────────────────────────────────────────────────

    #[test]
    fn clone_preserves_equality() {
        let variants = [
            PhysicalQuantity::Concentration { component: 0 },
            PhysicalQuantity::Temperature,
            PhysicalQuantity::Pressure,
            PhysicalQuantity::Velocity { component: 1 },
            PhysicalQuantity::Custom {
                name: "B".into(),
                component: 0,
            },
        ];
        for v in &variants {
            assert_eq!(v.clone(), *v);
        }
    }
}