Skip to content
Snippets Groups Projects
Commit a920fe5a authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MGTL] Add getMeshNodeIDs for point vector.

parent 23327ef0
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,41 @@ std::vector<std::size_t> MeshNodeSearcher::getMeshNodeIDs( ...@@ -76,6 +76,41 @@ std::vector<std::size_t> MeshNodeSearcher::getMeshNodeIDs(
return vec_nodes; return vec_nodes;
} }
std::vector<std::size_t> MeshNodeSearcher::getMeshNodeIDs(
std::vector<MathLib::Point3dWithID*> const& points) const
{
double const epsilon_radius = _search_length_algorithm->getSearchLength();
std::vector<std::size_t> node_ids;
node_ids.reserve(points.size());
for (auto const* const p_ptr : points)
{
auto const& p = *p_ptr;
std::vector<std::size_t> const ids =
_mesh_grid.getPointsInEpsilonEnvironment(p, epsilon_radius);
if (ids.empty())
{
OGS_FATAL(
"No nodes could be found in the mesh for point %d : (%g, %g, "
"%g) in %g epsilon radius in the mesh '%s'",
p.getID(), p[0], p[1], p[2], epsilon_radius,
_mesh.getName().c_str());
}
if (ids.size() != 1)
{
OGS_FATAL(
"Found %d nodes in the mesh for point %d : (%g, %g, %g) in %g "
"epsilon radius in the mesh '%s'. Expected to find exactly one "
"node.",
ids.size(), p.getID(), p[0], p[1], p[2], epsilon_radius,
_mesh.getName().c_str());
}
node_ids.push_back(ids.front());
}
return node_ids;
}
std::vector<std::size_t> const& MeshNodeSearcher::getMeshNodeIDsForPoint( std::vector<std::size_t> const& MeshNodeSearcher::getMeshNodeIDsForPoint(
GeoLib::Point const& pnt) const GeoLib::Point const& pnt) const
{ {
......
...@@ -76,6 +76,14 @@ public: ...@@ -76,6 +76,14 @@ public:
std::vector<std::size_t> getMeshNodeIDs( std::vector<std::size_t> getMeshNodeIDs(
GeoLib::GeoObject const& geoObj) const; GeoLib::GeoObject const& geoObj) const;
/**
* Finds unique mesh nodes of each of the input points.
*
* \return a vector of mesh node ids.
*/
std::vector<std::size_t> getMeshNodeIDs(
std::vector<MathLib::Point3dWithID*> const& points) const;
/** /**
* Searches for the node nearest by the given point. If there are two nodes * Searches for the node nearest by the given point. If there are two nodes
* with the same distance the id of the one that was first found will be * with the same distance the id of the one that was first found will be
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment