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
/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
*/
//! Fluid-dynamics theories: the Navier–Stokes regimes (incompressible,
//! compressible, Euler, Stokes) and the DEC-native incompressible rate.
//!
//! What lives where, precisely:
//!
//! * **The four pointwise regime evaluators live here**, as free functions
//! (`incompressible_ns_rhs`, `compressible_ns_*_rhs`, `euler_*_rhs`,
//! `stokes_rhs`), each with a causal `PropagatingEffect` wrapper
//! (`*_rhs_effect`) in [`wrappers`].
//! * **The shared sub-kernels stay in `deep_causality_physics`**:
//! `convective_acceleration_kernel`, `pressure_gradient_force_kernel`,
//! `viscous_diffusion_kernel` and `continuity_rhs_kernel`. The evaluators here
//! compose those kernels rather than reimplementing them.
//! * **`DecIncompressible` is the only `FluidTheory` realization in this module**;
//! it wraps the DEC rate kernel. The pointwise evaluators are free functions and
//! do not implement that trait.
// The pointwise NS regime evaluators (`*_rhs`) and their causal `PropagatingEffect`
// wrappers (`*_rhs_effect`), plus the DEC-native `FluidTheory` realization.
pub use ;
pub use euler_momentum_rhs;
pub use DecIncompressible;
pub use incompressible_ns_rhs;
pub use stokes_momentum_rhs;
pub use ;