4#include <range/v3/algorithm/equal.hpp>
5#include <range/v3/range/conversion.hpp>
6#include <unordered_map>
25 auto const& nodes = subdomain_mesh.
getNodes();
26 std::vector<MathLib::Point3dWithID*> subdomain_points{begin(nodes),
29 auto const& bulk_node_ids =
35 "Expected to find exactly one node in the bulk mesh for each node "
36 "of the subdomain; Found {:d} nodes in the bulk mesh out of {:d} "
37 "nodes in the subdomain.",
48 std::vector<std::size_t>
const& node_ids,
49 std::vector<std::vector<std::size_t>>
const& connected_element_ids_per_node)
54 std::unordered_map<std::size_t, int> element_counts(8);
55 for (
auto const node_id : node_ids)
57 for (
auto const element_id : connected_element_ids_per_node[node_id])
59 element_counts[element_id]++;
67 auto const nnodes = node_ids.size();
68 std::vector<std::size_t> element_ids;
69 for (
auto const& pair : element_counts)
71 if (pair.second ==
static_cast<int>(nnodes))
73 element_ids.push_back(pair.first);
89 std::vector<std::vector<std::size_t>> bulk_element_ids_map(
93 std::vector<std::vector<std::size_t>> connected_element_ids_per_node(
97 connected_element_ids_per_node[node_id] =
102 auto const& elements = subdomain_mesh.
getElements();
103#pragma omp parallel for
104 for (std::ptrdiff_t j = 0; j < std::ssize(elements); ++j)
106 auto*
const e = elements[j];
107 std::vector<std::size_t> element_node_ids(e->getNumberOfBaseNodes());
108 for (
unsigned n = 0; n < e->getNumberOfBaseNodes(); ++n)
112 std::vector<std::size_t> element_node_ids_bulk(
113 e->getNumberOfBaseNodes());
114 std::transform(begin(element_node_ids), end(element_node_ids),
115 begin(element_node_ids_bulk),
116 [&bulk_node_ids](std::size_t
const id)
117 {
return bulk_node_ids[id]; });
120 element_node_ids_bulk, connected_element_ids_per_node);
122 if (bulk_element_ids.empty())
124 ERR(
"No element could be found for the subdomain element {:d}. "
125 "Corresponding bulk mesh node ids are:",
127 for (
auto const i : element_node_ids_bulk)
132 "Expect at least one element to be found in the bulk mesh.");
135 bulk_element_ids_map[e->getID()] = std::move(bulk_element_ids);
138 return bulk_element_ids_map;
144 std::vector<std::size_t>
const& values,
148 if (!properties.existsPropertyVector<std::size_t>(property_name,
151 addPropertyToMesh<std::size_t>(mesh, property_name, mesh_item_type, 1,
159 auto& original_property =
161 if (ranges::equal(original_property, values))
164 "There is already a '{:s}' property present in the subdomain mesh "
165 "'{:s}' and it is equal to the newly computed values.",
166 property_name, mesh.
getName());
174 "There is already a '{:s}' property present in the subdomain mesh "
175 "'{:s}' and it is not equal to the newly computed values.",
179 if (!force_overwrite)
181 OGS_FATAL(
"The force overwrite flag was not specified, exiting.");
184 INFO(
"Overwriting '{:s}' property.", property_name);
185 original_property.assign(values);
194 bool const force_overwrite =
false)
198 auto const& bulk_node_ids =
199 identifySubdomainMeshNodes(subdomain_mesh, mesh_node_searcher);
200 INFO(
"identifySubdomainMesh(): identifySubdomainMeshNodes took {:g} s",
203 updateOrCheckExistingSubdomainProperty(
208 auto const& bulk_element_ids =
209 identifySubdomainMeshElements(subdomain_mesh, bulk_mesh);
210 INFO(
"identifySubdomainMesh(): identifySubdomainMeshElements took {:g} s",
218 if (all_of(begin(bulk_element_ids), end(bulk_element_ids),
219 [](std::vector<std::size_t>
const& v) {
return v.size() == 1; }))
223 std::vector<std::size_t> unique_bulk_element_ids;
224 unique_bulk_element_ids.reserve(bulk_element_ids.size());
225 transform(begin(bulk_element_ids), end(bulk_element_ids),
226 back_inserter(unique_bulk_element_ids),
227 [](std::vector<std::size_t>
const& v) {
return v[0]; });
229 updateOrCheckExistingSubdomainProperty(
240 std::vector<std::size_t> flat_bulk_element_ids;
241 flat_bulk_element_ids.reserve(2 * bulk_element_ids.size());
242 std::vector<std::size_t> number_of_bulk_element_ids;
243 number_of_bulk_element_ids.reserve(bulk_element_ids.size());
245 for (std::vector<std::size_t>
const& v : bulk_element_ids)
247 number_of_bulk_element_ids.push_back(v.size());
248 flat_bulk_element_ids.insert(end(flat_bulk_element_ids), begin(v),
252 updateOrCheckExistingSubdomainProperty(
253 subdomain_mesh,
"number_bulk_elements", number_of_bulk_element_ids,
255 updateOrCheckExistingSubdomainProperty(
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
void ERR(fmt::format_string< Args... > fmt, Args &&... args)
void WARN(fmt::format_string< Args... > fmt, Args &&... args)
double elapsed() const
Get the elapsed time in seconds.
void start()
Start the timer.
std::vector< Node * > const & getNodes() const
Get the nodes-vector for the mesh.
std::vector< Element * > const & getElements() const
Get the element-vector for the mesh.
Properties & getProperties()
const std::string getName() const
Get name of the mesh.
std::size_t getNumberOfNodes() const
Get the number of nodes.
std::vector< Element const * > const & getElementsConnectedToNode(std::size_t node_id) const
std::size_t getNumberOfElements() const
Get the number of elements.
PropertyVector< T > const * getPropertyVector(std::string_view name) const
constexpr ranges::views::view_closure ids
For an element of a range view return its id.
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)
std::size_t getNodeIndex(Element const &element, unsigned const idx)
PropertyVector< std::size_t > const * bulkNodeIDs(Mesh const &mesh)
std::vector< std::size_t > identifySubdomainMeshNodes(MeshLib::Mesh const &subdomain_mesh, MeshGeoToolsLib::MeshNodeSearcher const &mesh_node_searcher)
void updateOrCheckExistingSubdomainProperty(MeshLib::Mesh &mesh, std::string_view property_name, std::vector< std::size_t > const &values, MeshLib::MeshItemType const mesh_item_type, bool const force_overwrite)
Updates or checks the existing mesh's property with the given values.
std::vector< std::vector< std::size_t > > identifySubdomainMeshElements(MeshLib::Mesh const &subdomain_mesh, MeshLib::Mesh const &bulk_mesh)
std::vector< std::size_t > findElementsInMesh(std::vector< std::size_t > const &node_ids, std::vector< std::vector< std::size_t > > const &connected_element_ids_per_node)