Shamrock 2025.10.0
Astrophysical Code
Loading...
Searching...
No Matches
AddForcePaczynskiWiita.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>, constant_c) \
29 X_RO(shamrock::solvergraph::IDataEdge<Tscal>, central_mass) \
30 X_RO(shamrock::solvergraph::IDataEdge<Tvec>, central_pos) \
31 X_RO(shamrock::solvergraph::IFieldSpan<Tvec>, spans_positions) \
32 X_RO(shamrock::solvergraph::Indexes<u32>, sizes) \
33 \
34 /* ------------------- outputs ------------------- */ \
35 X_RW(shamrock::solvergraph::IFieldSpan<Tvec>, spans_accel_ext)
36
37namespace shammodels::common::modules {
38
39 template<class Tvec>
40 class AddForcePaczynskiWiita : public shamrock::solvergraph::INode {
41
42 using Tscal = shambase::VecComponent<Tvec>;
43
44 public:
45 AddForcePaczynskiWiita() = default;
46
47 EXPAND_NODE_EDGES(NODE_EDGES)
48
50
51 inline virtual std::string _impl_get_label() const { return "AddForcePaczynskiWiita"; }
52
53 virtual std::string _impl_get_tex() const;
54 };
55
56} // namespace shammodels::common::modules
57
58#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