30 const unsigned integration_order,
const unsigned shapefunction_order,
31 std::vector<std::unique_ptr<ParameterLib::ParameterBase>>
const& parameters,
32 [[maybe_unused]] std::vector<std::reference_wrapper<ProcessVariable>>
const&
33 all_process_variables_for_this_process,
46 "Variable id or component id too high. Actual values: ({:d}, "
47 "{:d}), maximum values: ({:d}, {:d}).",
54 .template existsPropertyVector<std::size_t>(
56 (type !=
"EmbeddedAnchor"))
59 "The required bulk node ids map does not exist in the source term "
63 std::vector<MeshLib::Node*>
const& source_term_nodes =
66 "Found {:d} nodes for source term at mesh '{:s}' for the variable {:d} "
68 source_term_nodes.size(), source_term_mesh.
getName(), variable_id,
76 auto dof_table_source_term =
79 std::move(source_term_mesh_subset));
81 config.
config, config.
mesh, std::move(dof_table_source_term),
87 const int number_of_components =
89 std::vector<int> component_ids(number_of_components);
90 std::iota(std::begin(component_ids), std::end(component_ids), 0);
91 auto dof_table_source_term =
93 variable_id, component_ids, std::move(source_term_mesh_subset));
94 const int bulk_mesh_dimension =
98 if (bulk_mesh_dimension != number_of_components)
101 "For the Anchor source term type,"
102 "the bulk mesh dimension needs to be the same "
103 "as the number of process variable components.");
105 switch (bulk_mesh_dimension)
110 std::move(dof_table_source_term), source_term_mesh.
getID(),
111 variable_id, parameters);
115 std::move(dof_table_source_term), source_term_mesh.
getID(),
116 variable_id, parameters);
119 "Anchor can not be instantiated "
120 "for mesh dimensions other than two or three. "
121 "{}-dimensional mesh was given.",
122 bulk_mesh_dimension);
125 if (type ==
"EmbeddedAnchor")
127 const int number_of_components =
130 const int bulk_mesh_dimension = bulk_mesh.
getDimension();
131 if (bulk_mesh_dimension != number_of_components)
134 "For the EmbeddedAnchor source term type,"
135 "the bulk mesh dimension needs to be the same "
136 "as the number of process variable components.");
138 switch (bulk_mesh_dimension)
142 config.
config, config.
mesh, bulk_mesh, dof_table_bulk,
143 source_term_mesh.
getID(), variable_id, parameters);
146 config.
config, config.
mesh, bulk_mesh, dof_table_bulk,
147 source_term_mesh.
getID(), variable_id, parameters);
150 "Anchor can not be instantiated "
151 "for mesh dimensions other than two or three. "
152 "{}-dimensional mesh was given.",
153 bulk_mesh_dimension);
156 if (type ==
"Line" || type ==
"Volumetric")
158 auto dof_table_source_term =
161 std::move(source_term_mesh_subset));
162 auto const& bulk_mesh_dimension =
167 config.
config, bulk_mesh_dimension, config.
mesh,
168 std::move(dof_table_source_term), parameters, integration_order,
169 shapefunction_order);
171 if (type ==
"Python")
173 auto dof_table_source_term =
175 std::move(source_term_mesh_subset));
178 config.
config, config.
mesh, std::move(dof_table_source_term),
181 all_process_variables_for_this_process);
184 OGS_FATAL(
"Unknown source term type: `{:s}'.", type);
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)
T peekConfigParameter(std::string const ¶m) const
A subset of nodes on a single mesh.
Mesh const & getMesh() const
std::vector< Node * > const & getNodes() const
Get the nodes-vector for the mesh.
unsigned getDimension() const
Returns the dimension of the mesh (determined by the maximum dimension over all elements).
std::size_t getID() const
Get id of the mesh.
Properties & getProperties()
const std::string getName() const
Get name of the mesh.
int getNumberOfVariables() const
int getNumberOfVariableComponents(int variable_id) const
std::unique_ptr< LocalToGlobalIndexMap > deriveBoundaryConstrainedMap(int const variable_id, std::vector< int > const &component_ids, MeshLib::MeshSubset &&new_mesh_subset) const
MeshLib::MeshSubset const & getMeshSubset(int const variable_id, int const component_id) const
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)
std::unique_ptr< SourceTerm > createPythonSourceTerm(BaseLib::ConfigTree const &config, MeshLib::Mesh const &source_term_mesh, std::unique_ptr< NumLib::LocalToGlobalIndexMap > dof_table, int const variable_id, int const component_id, unsigned const integration_order, unsigned const shapefunction_order, unsigned const global_dim, std::vector< std::reference_wrapper< ProcessVariable > > const &all_process_variables_for_this_process)
template std::unique_ptr< SourceTermBase > createEmbeddedAnchor< 2 >(BaseLib::ConfigTree const &config, MeshLib::Mesh const &st_mesh, MeshLib::Mesh const &bulk_mesh, NumLib::LocalToGlobalIndexMap const &dof_table_bulk, std::size_t const source_term_mesh_id, const int variable_id, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters)
template std::unique_ptr< SourceTerm > createAnchorTerm< 3 >(BaseLib::ConfigTree const &config, MeshLib::Mesh const &st_mesh, std::unique_ptr< NumLib::LocalToGlobalIndexMap > dof_table, std::size_t const source_term_mesh_id, const int variable_id, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters)
template std::unique_ptr< SourceTermBase > createEmbeddedAnchor< 3 >(BaseLib::ConfigTree const &config, MeshLib::Mesh const &st_mesh, MeshLib::Mesh const &bulk_mesh, NumLib::LocalToGlobalIndexMap const &dof_table_bulk, std::size_t const source_term_mesh_id, const int variable_id, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters)
template std::unique_ptr< SourceTerm > createAnchorTerm< 2 >(BaseLib::ConfigTree const &config, MeshLib::Mesh const &st_mesh, std::unique_ptr< NumLib::LocalToGlobalIndexMap > dof_table, std::size_t const source_term_mesh_id, const int variable_id, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters)
std::unique_ptr< SourceTerm > createNodalSourceTerm(BaseLib::ConfigTree const &config, MeshLib::Mesh const &st_mesh, std::unique_ptr< NumLib::LocalToGlobalIndexMap > dof_table, std::size_t const source_term_mesh_id, const int variable_id, const int component_id, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters)
std::unique_ptr< SourceTerm > createVolumetricSourceTerm(BaseLib::ConfigTree const &config, unsigned const bulk_mesh_dimension, MeshLib::Mesh const &source_term_mesh, std::unique_ptr< NumLib::LocalToGlobalIndexMap > source_term_dof_table, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, unsigned const integration_order, unsigned const shapefunction_order)
std::unique_ptr< SourceTermBase > createSourceTerm(const SourceTermConfig &config, const NumLib::LocalToGlobalIndexMap &dof_table_bulk, const MeshLib::Mesh &source_term_mesh, const int variable_id, const unsigned integration_order, const unsigned shapefunction_order, std::vector< std::unique_ptr< ParameterLib::ParameterBase > > const ¶meters, std::vector< std::reference_wrapper< ProcessVariable > > const &all_process_variables_for_this_process, const MeshLib::Mesh &bulk_mesh)
BaseLib::ConfigTree config
MeshLib::Mesh const & mesh