Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wenqing
ogs
Commits
a920fe5a
Commit
a920fe5a
authored
6 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[MGTL] Add getMeshNodeIDs for point vector.
parent
23327ef0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MeshGeoToolsLib/MeshNodeSearcher.cpp
+35
-0
35 additions, 0 deletions
MeshGeoToolsLib/MeshNodeSearcher.cpp
MeshGeoToolsLib/MeshNodeSearcher.h
+8
-0
8 additions, 0 deletions
MeshGeoToolsLib/MeshNodeSearcher.h
with
43 additions
and
0 deletions
MeshGeoToolsLib/MeshNodeSearcher.cpp
+
35
−
0
View file @
a920fe5a
...
@@ -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
{
{
...
...
This diff is collapsed.
Click to expand it.
MeshGeoToolsLib/MeshNodeSearcher.h
+
8
−
0
View file @
a920fe5a
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment