https://mooseframework.inl.gov
Loading...
Searching...
No Matches
MooseMeshUtils.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
12#include "libmesh/replicated_mesh.h"
13#include "libmesh/boundary_info.h"
14
15#include "MooseUtils.h"
16#include "MooseTypes.h"
17#include "FaceInfo.h"
18#include "MeshGenerator.h"
19
20// Utilities for MeshBase
21// Many of these utilities could live in libMesh, and in fact, before adding a new one here
22// you should also check mesh_tools.h in libMesh to see if it does not exist there already.
23
25{
26
27// Used to temporarily store information about which lower-dimensional
28// sides to add and what subdomain id to use for the added sides.
30{
31 ElemSidePair(Elem * elem_in, unsigned short int side_in) : elem(elem_in), side(side_in) {}
32
33 Elem * elem;
34 unsigned short int side;
35};
36
42void mergeBoundaryIDsWithSameName(MeshBase & mesh);
43
52void changeBoundaryId(MeshBase & mesh,
53 const libMesh::boundary_id_type old_id,
54 const libMesh::boundary_id_type new_id,
55 bool delete_prev);
56
64void
65changeSubdomainId(MeshBase & mesh, const subdomain_id_type old_id, const subdomain_id_type new_id);
66
80std::vector<BoundaryID> getBoundaryIDs(const libMesh::MeshBase & mesh,
81 const std::vector<BoundaryName> & boundary_name,
82 bool generate_unknown,
83 const std::set<BoundaryID> & mesh_boundary_ids);
84
98std::vector<BoundaryID> getBoundaryIDs(const libMesh::MeshBase & mesh,
99 const std::vector<BoundaryName> & boundary_name,
100 bool generate_unknown);
101
116std::set<BoundaryID> getBoundaryIDSet(const libMesh::MeshBase & mesh,
117 const std::vector<BoundaryName> & boundary_name,
118 bool generate_unknown);
119
126BoundaryID getBoundaryID(const BoundaryName & boundary_name, const MeshBase & mesh);
127
134SubdomainID getSubdomainID(const SubdomainName & subdomain_name, const MeshBase & mesh);
135
143std::vector<subdomain_id_type> getSubdomainIDs(const libMesh::MeshBase & mesh,
144 const std::vector<SubdomainName> & subdomain_name);
145std::set<subdomain_id_type> getSubdomainIDs(const libMesh::MeshBase & mesh,
146 const std::set<SubdomainName> & subdomain_name);
147
153Point meshCentroidCalculator(const MeshBase & mesh);
154
161Point boundaryCentroidCalculator(const BoundaryName & boundary, MeshBase & mesh);
162
169RealVectorValue boundaryWeightedNormal(const BoundaryName & boundary, MeshBase & mesh);
170
181template <typename P, typename C>
182void
184 C & factor,
185 const Moose::CoordinateSystemType coord_type,
186 const unsigned int rz_radial_coord = libMesh::invalid_uint)
187{
188 switch (coord_type)
189 {
190 case Moose::COORD_XYZ:
191 factor = 1.0;
192 break;
193 case Moose::COORD_RZ:
194 {
195 mooseAssert(rz_radial_coord != libMesh::invalid_uint,
196 "Must pass in a valid rz radial coordinate");
197 factor = 2 * M_PI * point(rz_radial_coord);
198 break;
199 }
201 factor = 4 * M_PI * point(0) * point(0);
202 break;
203 default:
204 mooseError("Unknown coordinate system");
205 }
206}
207
215template <typename P, typename C>
216C
217computeDistanceToAxis(const P & point, const Point & origin, const RealVectorValue & direction)
218{
219 return (point - origin).cross(direction).norm();
220}
221
229Real computeMaxDistanceToAxis(const MeshBase & mesh,
230 const Point & origin,
231 const RealVectorValue & direction);
232
241template <typename P, typename C>
242void
244 const std::pair<Point, RealVectorValue> & axis,
245 C & factor)
246{
247 factor = 2 * M_PI * computeDistanceToAxis<P, C>(point, axis.first, axis.second);
248}
249
250inline void
252 const Moose::CoordinateSystemType coord_type,
253 const unsigned int rz_radial_coord = libMesh::invalid_uint)
254{
255 coordTransformFactor(fi.faceCentroid(), fi.faceCoord(), coord_type, rz_radial_coord);
256}
257
272std::unordered_map<dof_id_type, dof_id_type>
273getExtraIDUniqueCombinationMap(const MeshBase & mesh,
274 const std::set<SubdomainID> & block_ids,
275 std::vector<ExtraElementIDName> extra_ids);
276
285bool isCoPlanar(const std::vector<Point> & vec_pts, const Point plane_nvec, const Point fixed_pt);
286
293bool isCoPlanar(const std::vector<Point> & vec_pts, const Point plane_nvec);
294
300bool isCoPlanar(const std::vector<Point> & vec_pts);
301
307SubdomainID getNextFreeSubdomainID(MeshBase & input_mesh);
308
314BoundaryID getNextFreeBoundaryID(MeshBase & input_mesh);
315
321bool hasSubdomainID(const MeshBase & input_mesh, const SubdomainID & id);
322
328bool hasSubdomainName(const MeshBase & input_mesh, const SubdomainName & name);
329
335bool hasBoundaryID(const MeshBase & input_mesh, const BoundaryID id);
336
345bool hasBoundaryName(const MeshBase & mesh, const BoundaryName & name);
346
355bool hasBoundaryNameOrID(const MeshBase & mesh, const BoundaryName & name_or_id);
356
367void makeOrderedNodeList(std::vector<std::pair<dof_id_type, dof_id_type>> & node_assm,
368 std::vector<dof_id_type> & elem_id_list,
369 std::vector<dof_id_type> & midpoint_node_list,
370 std::vector<dof_id_type> & ordered_node_list,
371 std::vector<dof_id_type> & ordered_elem_id_list);
372
381void makeOrderedNodeList(std::vector<std::pair<dof_id_type, dof_id_type>> & node_assm,
382 std::vector<dof_id_type> & elem_id_list,
383 std::vector<dof_id_type> & ordered_node_list,
384 std::vector<dof_id_type> & ordered_elem_id_list);
385
393template <typename T, typename Q>
394Q
395getIDFromName(const T & name)
396{
397 if (!MooseUtils::isDigits(name))
399 "'name' ", name, " should only contain digits that can be converted to a numerical type.");
400 long long id = std::stoll(name);
401 Q id_Q = Q(id);
402 if (id < std::numeric_limits<Q>::min() || id > std::numeric_limits<Q>::max())
403 mooseError(MooseUtils::prettyCppType<T>(&name),
404 " ",
405 name,
406 " is not within the numeric limits of the expected ID type ",
407 MooseUtils::prettyCppType<Q>(&id_Q),
408 ".");
409
410 return id_Q;
411}
412
419void swapNodesInElem(Elem & elem, const unsigned int nd1, const unsigned int nd2);
420
430template <typename T>
431void
432idSwapParametersProcessor(const std::string & class_name,
433 const std::string & id_name,
434 const std::vector<std::vector<T>> & id_swaps,
435 std::vector<std::unordered_map<T, T>> & id_swap_pairs,
436 const unsigned int row_index_shift = 0)
437{
438 id_swap_pairs.resize(id_swaps.size());
439 for (const auto i : index_range(id_swaps))
440 {
441 const auto & swaps = id_swaps[i];
442 auto & swap_pairs = id_swap_pairs[i];
443
444 if (swaps.size() % 2)
445 throw MooseException("Row ",
446 row_index_shift + i + 1,
447 " of ",
448 id_name,
449 " in ",
450 class_name,
451 " does not contain an even number of entries! Num entries: ",
452 swaps.size());
453
454 swap_pairs.reserve(swaps.size() / 2);
455 for (unsigned int j = 0; j < swaps.size(); j += 2)
456 swap_pairs[swaps[j]] = swaps[j + 1];
457 }
458}
459
469 const std::string & class_name,
470 const unsigned int num_sections,
471 const unsigned int num_integers,
472 const std::vector<std::vector<std::vector<dof_id_type>>> & elem_integers_swaps,
473 std::vector<std::unordered_map<dof_id_type, dof_id_type>> & elem_integers_swap_pairs);
474
484std::unique_ptr<ReplicatedMesh> buildBoundaryMesh(const MeshBase & input_mesh,
485 const boundary_id_type boundary_id);
486
495std::unique_ptr<ReplicatedMesh> buildLoopBoundaryOf2DMesh(const MeshBase & input_mesh,
496 const boundary_id_type boundary_id);
497
504std::unordered_map<dof_id_type, std::unordered_set<dof_id_type>>
505buildBoundaryNodeToElemMap(const MeshBase & input_mesh, const boundary_id_type boundary_id);
506
514std::set<dof_id_type> getBoundaryNodes(const MeshBase & mesh, const BoundaryID boundary_id);
515
525void createSubdomainFromSidesets(MeshBase & mesh,
526 std::vector<BoundaryName> boundary_names,
527 const SubdomainID new_subdomain_id,
528 const SubdomainName new_subdomain_name,
529 const std::string type_name);
530
537void convertBlockToMesh(MeshBase & source_mesh,
538 MeshBase & target_mesh,
539 const std::vector<SubdomainName> & target_blocks);
540
553 UnstructuredMesh & destination,
554 const UnstructuredMesh & source,
555 const bool avoid_merging_subdomains,
556 const bool avoid_merging_boundaries,
557 const Parallel::Communicator & communicator);
558
571void buildPolyLineMesh(MeshBase & mesh,
572 const std::vector<Point> & points,
573 const bool loop,
574 const BoundaryName & start_boundary,
575 const BoundaryName & end_boundary,
576 const std::vector<unsigned int> & nums_edges_between_points);
577
595void buildPolyLineMesh(MeshBase & mesh,
596 const std::vector<Point> & points,
597 const std::vector<Point> & mid_points,
598 const bool loop,
599 const BoundaryName & start_boundary,
600 const BoundaryName & end_boundary,
601 const std::vector<unsigned int> & nums_edges_between_points);
602
616void buildPolyLineMesh(MeshBase & mesh,
617 const std::vector<Point> & points,
618 const bool loop,
619 const BoundaryName & start_boundary,
620 const BoundaryName & end_boundary,
621 const Real max_elem_size);
622
630void addExternalBoundary(MeshBase & mesh, const BoundaryID extern_bid, bool & has_external_bid);
631}
boundary_id_type BoundaryID
subdomain_id_type SubdomainID
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
Definition MooseError.h:311
This data structure is used to store geometric and variable related metadata about each cell face in ...
Definition FaceInfo.h:38
Real & faceCoord()
Sets/gets the coordinate transformation factor (for e.g.
Definition FaceInfo.h:68
const Point & faceCentroid() const
Returns the coordinates of the face centroid.
Definition FaceInfo.h:75
MeshGenerators are objects that can modify or add to an existing mesh.
Provides a way for users to bail out of the current solve.
void copyIntoMesh(MeshGenerator &mg, UnstructuredMesh &destination, const UnstructuredMesh &source, const bool avoid_merging_subdomains, const bool avoid_merging_boundaries, const Parallel::Communicator &communicator)
Helper function for copying one mesh into another.
bool hasBoundaryID(const MeshBase &input_mesh, const BoundaryID id)
Whether a particular boundary ID exists in the mesh.
Point boundaryCentroidCalculator(const BoundaryName &boundary, MeshBase &mesh)
Calculates the centroid of a boundary on a mesh.
bool hasBoundaryName(const MeshBase &mesh, const BoundaryName &name)
Whether a particular boundary name exists in the mesh.
void computeFiniteVolumeCoords(FaceInfo &fi, const Moose::CoordinateSystemType coord_type, const unsigned int rz_radial_coord=libMesh::invalid_uint)
void coordTransformFactorRZGeneral(const P &point, const std::pair< Point, RealVectorValue > &axis, C &factor)
Computes a coordinate transformation factor for a general axisymmetric axis.
void extraElemIntegerSwapParametersProcessor(const std::string &class_name, const unsigned int num_sections, const unsigned int num_integers, const std::vector< std::vector< std::vector< dof_id_type > > > &elem_integers_swaps, std::vector< std::unordered_map< dof_id_type, dof_id_type > > &elem_integers_swap_pairs)
Reprocess the elem_integers_swaps into maps so they are easier to use.
bool hasSubdomainName(const MeshBase &input_mesh, const SubdomainName &name)
Whether a particular subdomain name exists in the mesh.
void buildPolyLineMesh(MeshBase &mesh, const std::vector< Point > &points, const bool loop, const BoundaryName &start_boundary, const BoundaryName &end_boundary, const std::vector< unsigned int > &nums_edges_between_points)
Generates meshes from edges connecting a list of points.
void changeBoundaryId(MeshBase &mesh, const libMesh::boundary_id_type old_id, const libMesh::boundary_id_type new_id, bool delete_prev)
Changes the old boundary ID to a new ID in the mesh.
bool hasSubdomainID(const MeshBase &input_mesh, const SubdomainID &id)
Whether a particular subdomain ID exists in the mesh.
std::vector< subdomain_id_type > getSubdomainIDs(const libMesh::MeshBase &mesh, const std::vector< SubdomainName > &subdomain_name)
Get the associated subdomainIDs for the subdomain names that are passed in.
Q getIDFromName(const T &name)
Converts a given name (BoundaryName or SubdomainName) that is known to only contain digits into a cor...
std::unique_ptr< ReplicatedMesh > buildBoundaryMesh(const MeshBase &input_mesh, const boundary_id_type boundary_id)
Build a lower-dimensional mesh from a boundary of an input mesh Note: The lower-dimensional mesh will...
std::vector< BoundaryID > getBoundaryIDs(const libMesh::MeshBase &mesh, const std::vector< BoundaryName > &boundary_name, bool generate_unknown, const std::set< BoundaryID > &mesh_boundary_ids)
Gets the boundary IDs with their names.
std::unordered_map< dof_id_type, std::unordered_set< dof_id_type > > buildBoundaryNodeToElemMap(const MeshBase &input_mesh, const boundary_id_type boundary_id)
Build a map from the node ids to all element ids they are part of for the nodes on a particular nodes...
void changeSubdomainId(MeshBase &mesh, const subdomain_id_type old_id, const subdomain_id_type new_id)
Changes the old subdomain ID to a new ID in the mesh.
std::set< dof_id_type > getBoundaryNodes(const MeshBase &mesh, const BoundaryID boundary_id)
Get all the nodes on that particular boundary, whether a nodeset or a sideset.
BoundaryID getNextFreeBoundaryID(MeshBase &input_mesh)
Checks input mesh and returns the largest boundary ID in the mesh plus one, which is a boundary ID in...
void addExternalBoundary(MeshBase &mesh, const BoundaryID extern_bid, bool &has_external_bid)
Adds a sideset for the external boundary of the mesh (e.g.
void swapNodesInElem(Elem &elem, const unsigned int nd1, const unsigned int nd2)
Swap two nodes within an element.
void convertBlockToMesh(MeshBase &source_mesh, MeshBase &target_mesh, const std::vector< SubdomainName > &target_blocks)
Convert a list of blocks in a given mesh to a standalone new mesh.
std::set< BoundaryID > getBoundaryIDSet(const libMesh::MeshBase &mesh, const std::vector< BoundaryName > &boundary_name, bool generate_unknown)
Gets the boundary IDs into a set with their names.
std::unordered_map< dof_id_type, dof_id_type > getExtraIDUniqueCombinationMap(const MeshBase &mesh, const std::set< SubdomainID > &block_ids, std::vector< ExtraElementIDName > extra_ids)
Create a new set of element-wise IDs by finding unique combinations of existing extra ID values.
void createSubdomainFromSidesets(MeshBase &mesh, std::vector< BoundaryName > boundary_names, const SubdomainID new_subdomain_id, const SubdomainName new_subdomain_name, const std::string type_name)
Create a new subdomain by generating new side elements from a list of sidesets in a given mesh.
void idSwapParametersProcessor(const std::string &class_name, const std::string &id_name, const std::vector< std::vector< T > > &id_swaps, std::vector< std::unordered_map< T, T > > &id_swap_pairs, const unsigned int row_index_shift=0)
Reprocess the swap related input parameters to make pairs out of them to ease further processing.
void mergeBoundaryIDsWithSameName(MeshBase &mesh)
Merges the boundary IDs of boundaries that have the same names but different IDs.
C computeDistanceToAxis(const P &point, const Point &origin, const RealVectorValue &direction)
Computes the distance to a general axis.
SubdomainID getNextFreeSubdomainID(MeshBase &input_mesh)
Checks input mesh and returns max(block ID) + 1, which represents a block ID that is not currently in...
BoundaryID getBoundaryID(const BoundaryName &boundary_name, const MeshBase &mesh)
Gets the boundary ID associated with the given BoundaryName.
bool isCoPlanar(const std::vector< Point > &vec_pts, const Point plane_nvec, const Point fixed_pt)
Decides whether all the Points of a vector of Points are in a plane that is defined by a normal vecto...
void coordTransformFactor(const P &point, C &factor, const Moose::CoordinateSystemType coord_type, const unsigned int rz_radial_coord=libMesh::invalid_uint)
Compute a coordinate transformation volume integration factor.
std::unique_ptr< ReplicatedMesh > buildLoopBoundaryOf2DMesh(const MeshBase &input_mesh, const boundary_id_type boundary_id)
Build a loop mesh of edges from the contiguous 2D boundary of 2D input mesh Note: The lower-dimension...
RealVectorValue boundaryWeightedNormal(const BoundaryName &boundary, MeshBase &mesh)
Calculates the side-volume weighted (side-vertex) average normal of a boundary on a mesh.
void makeOrderedNodeList(std::vector< std::pair< dof_id_type, dof_id_type > > &node_assm, std::vector< dof_id_type > &elem_id_list, std::vector< dof_id_type > &midpoint_node_list, std::vector< dof_id_type > &ordered_node_list, std::vector< dof_id_type > &ordered_elem_id_list)
Convert a list of sides in the form of a vector of pairs of node ids into a list of ordered nodes bas...
SubdomainID getSubdomainID(const SubdomainName &subdomain_name, const MeshBase &mesh)
Gets the subdomain ID associated with the given SubdomainName.
Point meshCentroidCalculator(const MeshBase &mesh)
Calculates the centroid of a MeshBase.
bool hasBoundaryNameOrID(const MeshBase &mesh, const BoundaryName &name_or_id)
Whether a particular boundary name or ID exists in the mesh.
Real computeMaxDistanceToAxis(const MeshBase &mesh, const Point &origin, const RealVectorValue &direction)
Computes the maximum distance from all nodes of a mesh to a general axis.
CoordinateSystemType
Definition MooseTypes.h:864
@ COORD_RZ
Definition MooseTypes.h:866
@ COORD_RSPHERICAL
Definition MooseTypes.h:867
@ COORD_XYZ
Definition MooseTypes.h:865
int8_t boundary_id_type
const unsigned int invalid_uint
ElemSidePair(Elem *elem_in, unsigned short int side_in)