Shamrock 2025.10.0
Astrophysical Code
Loading...
Searching...
No Matches
ComputeMass.hpp
Go to the documentation of this file.
1// -------------------------------------------------------//
2//
3// SHAMROCK code for hydrodynamics
4// Copyright (c) 2021-2026 Timothée David--Cléris <tim.shamrock@proton.me>
5// SPDX-License-Identifier: CeCILL Free Software License Agreement v2.1
6// Shamrock is licensed under the CeCILL 2.1 License, see LICENSE for more information
7//
8// -------------------------------------------------------//
9
10#pragma once
11
18
19#include "shambackends/vec.hpp"
25
26#define NODE_EDGES(X_RO, X_RW) \
27 /* ------------------- inputs ------------------- */ \
28 X_RO(shamrock::solvergraph::Indexes<u32>, sizes) \
29 X_RO(shamrock::solvergraph::IFieldSpan<Tscal>, spans_block_cell_sizes) \
30 X_RO(shamrock::solvergraph::IFieldSpan<Tscal>, spans_rhos) \
31 \
32 /* ------------------- outputs ------------------- */ \
33 X_RW(shamrock::solvergraph::IFieldSpan<Tscal>, spans_mass)
34
36
37 template<class Tvec, class TgridVec>
38 class NodeComputeMass : public shamrock::solvergraph::INode {
39 using Tscal = shambase::VecComponent<Tvec>;
40
41 u32 block_size;
42
43 public:
44 NodeComputeMass(u32 block_size) : block_size(block_size) {}
45
46 EXPAND_NODE_EDGES(NODE_EDGES)
47
49
50 inline virtual std::string _impl_get_label() const { return "NodeComputeMass"; }
51
52 virtual std::string _impl_get_tex() const;
53 };
54
55} // namespace shammodels::basegodunov::modules
56
57#undef NODE_EDGES
std::uint32_t u32
32 bit unsigned integer
virtual std::string _impl_get_label() const
get the label of the node
virtual std::string _impl_get_tex() const
get the tex of the node
Inode is node between data edges, takes multiple inputs, multiple outputs.
Definition INode.hpp:30
namespace for the basegodunov model modules