Shamrock 2025.10.0
Astrophysical Code
Loading...
Searching...
No Matches
AddForceCentralGravPotential.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"
24
25#define NODE_EDGES(X_RO, X_RW) \
26 /* ------------------- inputs ------------------- */ \
27 X_RO(shamrock::solvergraph::IDataEdge<Tscal>, constant_G) \
28 X_RO(shamrock::solvergraph::IDataEdge<Tscal>, central_mass) \
29 X_RO(shamrock::solvergraph::IDataEdge<Tvec>, central_pos) \
30 X_RO(shamrock::solvergraph::IFieldSpan<Tvec>, spans_positions) \
31 X_RO(shamrock::solvergraph::Indexes<u32>, sizes) \
32 \
33 /* ------------------- outputs ------------------- */ \
34 X_RW(shamrock::solvergraph::IFieldSpan<Tvec>, spans_accel_ext)
35
36namespace shammodels::common::modules {
37
38 template<class Tvec>
39 class AddForceCentralGravPotential : public shamrock::solvergraph::INode {
40
41 using Tscal = shambase::VecComponent<Tvec>;
42
43 public:
44 AddForceCentralGravPotential() = default;
45
46 EXPAND_NODE_EDGES(NODE_EDGES)
47
49
50 inline virtual std::string _impl_get_label() const {
51 return "AddForceCentralGravPotential";
52 }
53
54 virtual std::string _impl_get_tex() const;
55 };
56
57} // namespace shammodels::common::modules
58
59#undef NODE_EDGES
virtual std::string _impl_get_tex() const
get the tex of the node
virtual std::string _impl_get_label() const
get the label of the node
Inode is node between data edges, takes multiple inputs, multiple outputs.
Definition INode.hpp:30