29 const unsigned integration_order,
const unsigned shapefunction_order,
30 std::vector<std::unique_ptr<ParameterLib::ParameterBase>>
const& parameters,
31 [[maybe_unused]] std::vector<std::reference_wrapper<ProcessVariable>>
const&
32 all_process_variables_for_this_process)
44 "Variable id or component id too high. Actual values: ({:d}, "
45 "{:d}), maximum values: ({:d}, {:d}).",
52 .template existsPropertyVector<std::size_t>(
56 "The required bulk node ids map does not exist in the source term "
60 std::vector<MeshLib::Node*>
const& source_term_nodes =
63 "Found {:d} nodes for source term at mesh '{:s}' for the variable {:d} "
65 source_term_nodes.size(), source_term_mesh.
getName(), variable_id,
73 auto dof_table_source_term =
76 std::move(source_term_mesh_subset));
78 config.
config, config.
mesh, std::move(dof_table_source_term),
84 const int number_of_components =
86 std::vector<int> component_ids(number_of_components);
87 std::iota(std::begin(component_ids), std::end(component_ids), 0);
88 auto dof_table_source_term =
90 variable_id, component_ids, std::move(source_term_mesh_subset));
91 const int bulk_mesh_dimension =
95 if (bulk_mesh_dimension != number_of_components)
98 "For the Anchor source term type,"
99 "the bulk mesh dimension needs to be the same "
100 "as the number of process variable components.");
102 switch (bulk_mesh_dimension)
107 std::move(dof_table_source_term), source_term_mesh.
getID(),
108 variable_id, parameters);
112 std::move(dof_table_source_term), source_term_mesh.
getID(),
113 variable_id, parameters);
116 "Anchor can not be instantiated "
117 "for mesh dimensions other than two or three. "
118 "{}-dimensional mesh was given.",
119 bulk_mesh_dimension);
122 if (type ==
"Line" || type ==
"Volumetric")
124 auto dof_table_source_term =
127 std::move(source_term_mesh_subset));
128 auto const& bulk_mesh_dimension =
133 config.
config, bulk_mesh_dimension, config.
mesh,
134 std::move(dof_table_source_term), parameters, integration_order,
135 shapefunction_order);
137 if (type ==
"Python")
139 auto dof_table_source_term =
141 std::move(source_term_mesh_subset));
144 config.
config, config.
mesh, std::move(dof_table_source_term),
147 all_process_variables_for_this_process);
150 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< 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< 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 > 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)
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)
BaseLib::ConfigTree config
MeshLib::Mesh const & mesh