deep_causality_cfd 0.2.0

Counterfactual Computational fluid dynamics solvers and the Flow DSL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * SPDX-License-Identifier: MIT
 * Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
 */

use deep_causality_tensor::CausalTensorTrain;

/// The physical gradient triple `(∂/∂x, ∂/∂y, ∂/∂z)` a 3-D metric returns.
pub type PhysicalGradient3d<R> = (
    CausalTensorTrain<R>,
    CausalTensorTrain<R>,
    CausalTensorTrain<R>,
);