https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Types | Protected Member Functions | Protected Attributes | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
MFEMMeshGeneratorMesh Class Reference

MooseMesh subclass that consumes the MeshGenerator pipeline to build an mfem::ParMesh. More...

#include <MFEMMeshGeneratorMesh.h>

Inheritance diagram for MFEMMeshGeneratorMesh:
[legend]

Public Types

enum class  ParallelType { DEFAULT , REPLICATED , DISTRIBUTED }
 
using PeriodicNodeInfo = std::pair< const Node *, BoundaryID >
 Helper type for building periodic node maps.
 
using DataFileParameterType = DataFileName
 The parameter type this interface expects for a data file name.
 

Public Member Functions

 MFEMMeshGeneratorMesh (const InputParameters &parameters)
 
std::unique_ptr< MooseMesh > safeClone () const override
 A safer version of the clone() method that hands back an allocated object wrapped in a smart pointer.
 
mfem::ParMesh & getMFEMParMesh ()
 Accessors for the _mfem_par_mesh object.
 
const mfem::ParMesh & getMFEMParMesh () const
 
std::shared_ptr< mfem::ParMesh > getMFEMParMeshPtr ()
 Copy a shared_ptr to the mfem::ParMesh object.
 
void init () override
 Initialize the MFEM ParMesh and placeholder MOOSE mesh.
 
std::vector< std::filesystem::path > writeRecoveryFiles (const std::filesystem::path &file_base) override
 Write the mesh files needed for recovery/checkpointing.
 
bool shouldDisplace () const
 Returns true if mesh displacement is required.
 
std::optional< std::reference_wrapper< std::string const > > getMeshDisplacementVariable () const
 Returns an optional reference to displacement variable name.
 
void displace (mfem::GridFunction const &displacement)
 Displace the nodes of the mesh by the given displacement.
 
bool isDistributedMesh () const override
 Returns the final Mesh distribution type.
 
unsigned int dimension () const override
 Returns MeshBase::mesh_dimension(), (not MeshBase::spatial_dimension()!) of the underlying libMesh mesh object.
 
unsigned int spatialDimension () const override
 Returns MeshBase::spatial_dimension.
 
SubdomainID nSubdomains () const override
 
dof_id_type nActiveElem () const override
 
dof_id_type nActiveLocalElem () const override
 
void buildMesh () override final
 Must be overridden by child classes.
 
virtual MooseMesh & clone () const
 Clone method.
 
void determineUseDistributedMesh ()
 Determine whether to use a distributed mesh.
 
std::unique_ptr< MeshBase > buildMeshBaseObject (unsigned int dim=libMesh::invalid_uint)
 Method to construct a libMesh::MeshBase object that is normally set and used by the MooseMesh object during the "init()" phase.
 
template<typename T >
std::unique_ptr< T > buildTypedMesh (unsigned int dim=libMesh::invalid_uint)
 Shortcut method to construct a unique pointer to a libMesh mesh instance.
 
void setMeshBase (std::unique_ptr< MeshBase > mesh_base)
 Method to set the mesh_base object.
 
virtual unsigned int effectiveSpatialDimension () const
 Returns the effective spatial dimension determined by the coordinates actually used by the mesh.
 
unsigned int getBlocksMaxDimension (const std::vector< SubdomainName > &blocks) const
 Returns the maximum element dimension on the given blocks.
 
std::vector< BoundaryID > getBoundaryIDs (const Elem *const elem, const unsigned short int side) const
 Returns a vector of boundary IDs for the requested element on the requested side.
 
std::vector< std::vector< BoundaryID > > getBoundaryIDs (const Elem *const elem) const
 Returns a vector of vector of boundary IDs for the requested element on each of its sides.
 
const std::set< BoundaryID > & getBoundaryIDs () const
 Returns a const reference to a set of all user-specified boundary IDs.
 
std::vector< BoundaryID > getBoundaryIDs (const std::vector< BoundaryName > &boundary_name, bool generate_unknown=false) const
 Get the associated BoundaryID for the boundary names that are passed in.
 
const Elem * getLowerDElem (const Elem *, unsigned short int) const
 Returns a const pointer to a lower dimensional element that corresponds to a side of a higher dimensional element.
 
unsigned int getHigherDSide (const Elem *elem) const
 Returns the local side ID of the interior parent aligned with the lower dimensional element.
 
void buildNodeList ()
 Calls BoundaryInfo::build_node_list()/build_side_list() and makes separate copies of Nodes/Elems in those lists.
 
void buildBndElemList ()
 
const std::unordered_map< dof_id_type, std::vector< dof_id_type > > & nodeToElemMap ()
 If not already created, creates a map from every node to all elements to which they are connected.
 
virtual bnd_node_iterator bndNodesBegin ()
 Return iterators to the beginning/end of the boundary nodes list.
 
virtual bnd_node_iterator bndNodesEnd ()
 
virtual bnd_elem_iterator bndElemsBegin ()
 Return iterators to the beginning/end of the boundary elements list.
 
virtual bnd_elem_iterator bndElemsEnd ()
 
void buildNodeListFromSideList ()
 Calls BoundaryInfo::build_node_list_from_side_list().
 
std::vector< std::tuple< dof_id_type, unsigned short int, boundary_id_type > > buildSideList ()
 Calls BoundaryInfo::build_side_list(), returns a std::vector of (elem-id, side-id, bc-id) tuples.
 
std::vector< std::tuple< dof_id_type, unsigned short int, boundary_id_type > > buildActiveSideList () const
 Calls BoundaryInfo::build_active_side_list.
 
unsigned int sideWithBoundaryID (const Elem *const elem, const BoundaryID boundary_id) const
 Calls BoundaryInfo::side_with_boundary_id().
 
MeshBase::node_iterator localNodesBegin ()
 Calls local_nodes_begin/end() on the underlying libMesh mesh object.
 
MeshBase::const_node_iterator localNodesBegin () const
 
MeshBase::node_iterator localNodesEnd ()
 
MeshBase::const_node_iterator localNodesEnd () const
 
MeshBase::element_iterator activeLocalElementsBegin ()
 Calls active_local_nodes_begin/end() on the underlying libMesh mesh object.
 
MeshBase::const_element_iterator activeLocalElementsBegin () const
 
const MeshBase::element_iterator activeLocalElementsEnd ()
 
const MeshBase::const_element_iterator activeLocalElementsEnd () const
 
virtual dof_id_type nNodes () const
 Calls n_nodes/elem() on the underlying libMesh mesh object.
 
virtual dof_id_type nElem () const
 
virtual dof_id_type nLocalNodes () const
 
virtual unsigned int nPartitions () const
 
virtual bool skipPartitioning () const
 
virtual bool skipNoncriticalPartitioning () const
 
virtual dof_id_type maxNodeId () const
 Calls max_node/elem_id() on the underlying libMesh mesh object.
 
virtual dof_id_type maxElemId () const
 
virtual const Node & node (const dof_id_type i) const
 Various accessors (pointers/references) for Node "i".
 
virtual Node & node (const dof_id_type i)
 
virtual const Node & nodeRef (const dof_id_type i) const
 
virtual Node & nodeRef (const dof_id_type i)
 
virtual const Node * nodePtr (const dof_id_type i) const
 
virtual Node * nodePtr (const dof_id_type i)
 
virtual const Node * queryNodePtr (const dof_id_type i) const
 
virtual Node * queryNodePtr (const dof_id_type i)
 
virtual Elem * elem (const dof_id_type i)
 Various accessors (pointers/references) for Elem "i".
 
virtual const Elem * elem (const dof_id_type i) const
 
virtual Elem * elemPtr (const dof_id_type i)
 
virtual const Elem * elemPtr (const dof_id_type i) const
 
virtual Elem * queryElemPtr (const dof_id_type i)
 
virtual const Elem * queryElemPtr (const dof_id_type i) const
 
bool prepared () const
 Setter/getter for whether the mesh is prepared.
 
virtual void prepared (bool state)
 
void needsPrepareForUse ()
 If this method is called, we will call libMesh's prepare_for_use method when we call Moose's prepare method.
 
void meshChanged ()
 Declares that the MooseMesh has changed, invalidates cached data and rebuilds caches.
 
virtual void onMeshChanged ()
 Declares a callback function that is executed at the conclusion of meshChanged().
 
void cacheChangedLists ()
 Cache information about what elements were refined and coarsened in the previous step.
 
ConstElemPointerRange * refinedElementRange () const
 Return a range that is suitable for threaded execution over elements that were just refined.
 
ConstElemPointerRange * coarsenedElementRange () const
 Return a range that is suitable for threaded execution over elements that were just coarsened.
 
const std::vector< const Elem * > & coarsenedElementChildren (const Elem *elem) const
 Get the newly removed children element ids for an element that was just coarsened.
 
void updateActiveSemiLocalNodeRange (std::set< dof_id_type > &ghosted_elems)
 Clears the "semi-local" node list and rebuilds it.
 
bool isSemiLocal (Node *const node) const
 Returns true if the node is semi-local.
 
const std::unordered_map< boundary_id_type, std::unordered_set< dof_id_type > > & getBoundariesToElems () const
 Returns a map of boundaries to ids of elements on the boundary.
 
const std::unordered_map< boundary_id_type, std::unordered_set< dof_id_type > > & getBoundariesToActiveSemiLocalElemIds () const
 Returns a map of boundaries to ids of elements on the boundary.
 
std::unordered_set< dof_id_type > getBoundaryActiveSemiLocalElemIds (BoundaryID bid) const
 Return all ids of elements which have a side which is part of a sideset.
 
std::unordered_set< dof_id_type > getBoundaryActiveNeighborElemIds (BoundaryID bid) const
 Return all ids of neighbors of elements which have a side which is part of a sideset.
 
bool isBoundaryFullyExternalToSubdomains (BoundaryID bid, const std::set< SubdomainID > &blk_group) const
 Returns whether a boundary (given by its id) is not crossing through a group of blocks, by which we mean that elements on both sides of the boundary are in those blocks.
 
const std::set< SubdomainID > & meshSubdomains () const
 Returns a read-only reference to the set of subdomains currently present in the Mesh.
 
const std::set< BoundaryID > & meshBoundaryIds () const
 Returns a read-only reference to the set of boundary IDs currently present in the Mesh.
 
const std::set< BoundaryID > & meshSidesetIds () const
 Returns a read-only reference to the set of sidesets currently present in the Mesh.
 
const std::set< BoundaryID > & meshNodesetIds () const
 Returns a read-only reference to the set of nodesets currently present in the Mesh.
 
void setBoundaryToNormalMap (std::unique_ptr< std::map< BoundaryID, RealVectorValue > > boundary_map)
 Sets the mapping between BoundaryID and normal vector Is called by AddAllSideSetsByNormals.
 
void setBoundaryToNormalMap (std::map< BoundaryID, RealVectorValue > *boundary_map)
 
void setMeshBoundaryIDs (std::set< BoundaryID > boundary_IDs)
 Sets the set of BoundaryIDs Is called by AddAllSideSetsByNormals.
 
const RealVectorValue & getNormalByBoundaryID (BoundaryID id) const
 Returns the normal vector associated with a given BoundaryID.
 
void prepare ()
 Calls prepare_for_use() if the underlying MeshBase object isn't prepared, then communicates various boundary information on parallel meshes.
 
void prepare (const MeshBase *mesh_to_clone)
 Deprecated method; mesh_to_clone is no longer supported and must be null.
 
void update ()
 Calls buildNodeListFromSideList(), buildNodeList(), and buildBndElemList().
 
unsigned int uniformRefineLevel () const
 Returns the level of uniform refinement requested (zero if AMR is disabled).
 
void setUniformRefineLevel (unsigned int, bool deletion=true)
 Set uniform refinement level.
 
bool skipDeletionRepartitionAfterRefine () const
 Return a flag indicating whether or not we should skip remote deletion and repartition after uniform refinements.
 
bool skipRefineWhenUseSplit () const
 Whether or not skip uniform refinements when using a pre-split mesh.
 
void addGhostedBoundary (BoundaryID boundary_id)
 This will add the boundary ids to be ghosted to this processor.
 
void setGhostedBoundaryInflation (const std::vector< Real > &inflation)
 This sets the inflation amount for the bounding box for each partition for use in ghosting boundaries.
 
const std::set< unsigned int > & getGhostedBoundaries () const
 Return a writable reference to the set of ghosted boundary IDs.
 
const std::vector< Real > & getGhostedBoundaryInflation () const
 Return a writable reference to the _ghosted_boundaries_inflation vector.
 
void ghostGhostedBoundaries ()
 Actually do the ghosting of boundaries that need to be ghosted to this processor.
 
void needGhostGhostedBoundaries (bool needghost)
 Whether or not we want to ghost ghosted boundaries.
 
unsigned int getPatchSize () const
 Getter for the patch_size parameter.
 
unsigned int getGhostingPatchSize () const
 Getter for the ghosting_patch_size parameter.
 
unsigned int getMaxLeafSize () const
 Getter for the maximum leaf size parameter.
 
void setPatchUpdateStrategy (Moose::PatchUpdateType patch_update_strategy)
 Set the patch size update strategy.
 
const Moose::PatchUpdateType & getPatchUpdateStrategy () const
 Get the current patch update strategy.
 
libMesh::BoundingBox getInflatedProcessorBoundingBox (Real inflation_multiplier=0.01) const
 Get a (slightly inflated) processor bounding box.
 
 operator libMesh::MeshBase & ()
 Implicit conversion operator from MooseMesh -> libMesh::MeshBase.
 
 operator const libMesh::MeshBase & () const
 
MeshBase & getMesh ()
 Accessor for the underlying libMesh Mesh object.
 
MeshBase & getMesh (const std::string &name)
 
const MeshBase & getMesh () const
 
const MeshBase & getMesh (const std::string &name) const
 
const MeshBase * getMeshPtr () const
 
Moose::Kokkos::Mesh * getKokkosMesh ()
 Accessor for Kokkos mesh object.
 
const Moose::Kokkos::Mesh * getKokkosMesh () const
 
void printInfo (std::ostream &os=libMesh::out, const unsigned int verbosity=0) const
 Calls print_info() on the underlying Mesh.
 
const std::set< SubdomainID > & getNodeBlockIds (const Node &node) const
 Return list of blocks to which the given node belongs.
 
const std::vector< dof_id_type > & getNodeList (boundary_id_type nodeset_id) const
 Return a writable reference to a vector of node IDs that belong to nodeset_id.
 
const Node * addUniqueNode (const Point &p, Real tol=1e-6)
 Add a new node to the mesh.
 
Node * addQuadratureNode (const Elem *elem, const unsigned short int side, const unsigned int qp, BoundaryID bid, const Point &point)
 Adds a fictitious "QuadratureNode".
 
Node * getQuadratureNode (const Elem *elem, const unsigned short int side, const unsigned int qp)
 Get a specified quadrature node.
 
void clearQuadratureNodes ()
 Clear out any existing quadrature nodes.
 
BoundaryID getBoundaryID (const BoundaryName &boundary_name) const
 Get the associated BoundaryID for the boundary name.
 
SubdomainID getSubdomainID (const SubdomainName &subdomain_name) const
 Get the associated subdomain ID for the subdomain name.
 
std::vector< SubdomainID > getSubdomainIDs (const std::vector< SubdomainName > &subdomain_names) const
 Get the associated subdomainIDs for the subdomain names that are passed in.
 
std::set< SubdomainID > getSubdomainIDs (const std::set< SubdomainName > &subdomain_names) const
 
void setSubdomainName (SubdomainID subdomain_id, const SubdomainName &name, const bool synchronous=false)
 This method sets the name for subdomain_id to name.
 
const std::string & getSubdomainName (SubdomainID subdomain_id) const
 Return the name of a block given an id.
 
std::vector< SubdomainName > getSubdomainNames (const std::vector< SubdomainID > &subdomain_ids) const
 Get the associated subdomainNames for the subdomain ids that are passed in.
 
void setBoundaryName (BoundaryID boundary_id, BoundaryName name)
 This method sets the boundary name of the boundary based on the id parameter.
 
const std::string & getBoundaryName (const BoundaryID boundary_id) const
 Return the name of the boundary given the id.
 
std::string getBoundaryString (const BoundaryID boundary_id) const
 Return the name of the boundary given the id, if it exists.
 
void buildPeriodicNodeMap (std::multimap< dof_id_type, dof_id_type > &periodic_node_map, unsigned int var_number, libMesh::PeriodicBoundaries *pbs) const
 This routine builds a multimap of boundary ids to matching boundary ids across all periodic boundaries in the system.
 
void buildPeriodicNodeSets (std::map< BoundaryID, std::set< dof_id_type > > &periodic_node_sets, unsigned int var_number, libMesh::PeriodicBoundaries *pbs) const
 This routine builds a datastructure of node ids organized by periodic boundary ids.
 
Real dimensionWidth (unsigned int component) const
 Returns the width of the requested dimension.
 
bool detectOrthogonalDimRanges (Real tol=1e-6)
 This routine determines whether the Mesh is a regular orthogonal mesh (i.e.
 
void addPeriodicVariable (const unsigned int sys_num, const unsigned int var_num, const BoundaryID primary, const BoundaryID secondary)
 For "regular orthogonal" meshes, determine if variable var_num is periodic with respect to the primary and secondary BoundaryIDs, record this fact in the _periodic_dim data structure.
 
const std::array< bool, 3 > & queryPeriodicDimensions (const unsigned int sys_num, const unsigned int var_num) const
 Query the translated periodic dimension flags for the given variable on the given system.
 
const std::array< bool, 3 > & queryPeriodicDimensions (const MooseVariableBase &var) const
 Query the translated periodic dimension flags for the given variable.
 
bool isTranslatedPeriodic (const unsigned int sys_num, const unsigned int var_num, const unsigned int component) const
 Returns whether this generated mesh is periodic in the given dimension for the given variable on the given system.
 
bool isTranslatedPeriodic (const MooseVariableBase &var, const unsigned int component) const
 Returns whether this generated mesh is periodic in the given dimension for the given variable.
 
bool isTranslatedPeriodic (const unsigned int var_num, const unsigned int component) const
 Returns whether this generated mesh is periodic in the given dimension for the given variable.
 
RealVectorValue minPeriodicVector (const unsigned int sys_num, const unsigned int var_num, Point p, Point q) const
 Returns the minimum vector between two points on the mesh taking into account periodicity for the given variable on the given system.
 
RealVectorValue minPeriodicVector (const MooseVariableBase &var, const Point &p, const Point &q) const
 Returns the minimum vector between two points on the mesh taking into account periodicity for the given variable.
 
RealVectorValue minPeriodicVector (const unsigned int var_num, const Point &p, const Point &q) const
 Returns the minimum vector between two points on the mesh taking into account periodicity for the given variable on the given system.
 
Real minPeriodicDistance (const unsigned int sys_num, const unsigned int var_num, const Point &p, const Point &q) const
 Returns the distance between two points on the mesh taking into account periodicity for the given variable on the given system.
 
Real minPeriodicDistance (const MooseVariableBase &var, const Point &p, const Point &q) const
 Returns the distance between two points on the mesh taking into account periodicity for the given variable.
 
Real minPeriodicDistance (const unsigned int var_num, const Point &p, const Point &q) const
 Returns the distance between two points on the mesh taking into account periodicity for the given variable.
 
void detectPairedSidesets ()
 This routine detects paired sidesets of a regular orthogonal mesh (.i.e.
 
bool hasDetectedPairedSidesets () const
 Whether or not detectedPairedSidesets() has been called.
 
const std::pair< BoundaryID, BoundaryID > * getPairedBoundaryMapping (unsigned int component) const
 This function attempts to return the paired boundary ids for the given component.
 
void buildRefinementAndCoarseningMaps (Assembly *assembly)
 Create the refinement and coarsening maps necessary for projection of stateful material properties when using adaptivity.
 
const std::vector< std::vector< QpMap > > & getRefinementMap (const Elem &elem, int parent_side, int child, int child_side)
 Get the refinement map for a given element type.
 
const std::vector< std::pair< unsigned int, QpMap > > & getCoarseningMap (const Elem &elem, int input_side)
 Get the coarsening map for a given element type.
 
void changeBoundaryId (const boundary_id_type old_id, const boundary_id_type new_id, bool delete_prev)
 Change all the boundary IDs for a given side from old_id to new_id.
 
const std::set< BoundaryID > & getSubdomainBoundaryIds (const SubdomainID subdomain_id) const
 Get the list of boundary ids associated with the given subdomain id.
 
std::set< BoundaryID > getSubdomainInterfaceBoundaryIds (const SubdomainID subdomain_id) const
 Get the list of boundaries that contact the given subdomain.
 
std::set< SubdomainID > getBoundaryConnectedBlocks (const BoundaryID bid) const
 Get the list of subdomains associated with the given boundary.
 
std::set< SubdomainID > getBoundaryConnectedSecondaryBlocks (const BoundaryID bid) const
 Get the list of subdomains associated with the given boundary of its secondary side.
 
std::set< SubdomainID > getInterfaceConnectedBlocks (const BoundaryID bid) const
 Get the list of subdomains contacting the given boundary.
 
const std::set< SubdomainID > & getBlockConnectedBlocks (const SubdomainID subdomain_id) const
 Get the list of subdomains neighboring a given subdomain.
 
bool isBoundaryNode (dof_id_type node_id) const
 Returns true if the requested node is in the list of boundary nodes, false otherwise.
 
bool isBoundaryNode (dof_id_type node_id, BoundaryID bnd_id) const
 Returns true if the requested node is in the list of boundary nodes for the specified boundary, false otherwise.
 
bool isBoundaryElem (dof_id_type elem_id) const
 Returns true if the requested element is in the list of boundary elements, false otherwise.
 
bool isBoundaryElem (dof_id_type elem_id, BoundaryID bnd_id) const
 Returns true if the requested element is in the list of boundary elements for the specified boundary, false otherwise.
 
void errorIfDistributedMesh (std::string name) const
 Generate a unified error message if the underlying libMesh mesh is a DistributedMesh.
 
bool isParallelTypeForced () const
 Tell the user if the distribution was overriden for any reason.
 
void setParallelType (ParallelType parallel_type)
 Allow to change parallel type.
 
ParallelType getParallelType () const
 
const MooseEnum & partitionerName () const
 
bool isPartitionerForced () const
 Tell the user if the partitioner was overriden for any reason.
 
void allowRecovery (bool allow)
 Set whether or not this mesh is allowed to read a recovery file.
 
void setCustomPartitioner (libMesh::Partitioner *partitioner)
 Setter for custom partitioner.
 
bool isRegularOrthogonal ()
 Getter to query if the mesh was detected to be regular and orthogonal.
 
bool hasSecondOrderElements ()
 check if the mesh has SECOND order elements
 
virtual std::unique_ptr< libMesh::PointLocatorBase > getPointLocator () const
 Proxy function to get a (sub)PointLocator from either the underlying libMesh mesh (default), or to allow derived meshes to return a custom point locator.
 
virtual std::string getFileName () const
 Returns the name of the mesh file read to produce this mesh if any or an empty string otherwise.
 
void needsRemoteElemDeletion (bool need_delete)
 Set whether we need to delete remote elements.
 
bool needsRemoteElemDeletion () const
 Whether we need to delete remote elements.
 
void allowRemoteElementRemoval (bool allow_removal)
 Set whether to allow remote element removal.
 
bool allowRemoteElementRemoval () const
 Whether we are allow remote element removal.
 
void deleteRemoteElements ()
 Delete remote elements.
 
bool hasMeshBase () const
 Whether mesh base object was constructed or not.
 
bool hasElementID (const std::string &id_name) const
 Whether mesh has an extra element integer with a given name.
 
unsigned int getElementIDIndex (const std::string &id_name) const
 Return the accessing integer for an extra element integer with its name.
 
dof_id_type maxElementID (unsigned int elem_id_index) const
 Return the maximum element ID for an extra element integer with its accessing index.
 
dof_id_type minElementID (unsigned int elem_id_index) const
 Return the minimum element ID for an extra element integer with its accessing index.
 
bool areElemIDsIdentical (const std::string &id_name1, const std::string &id_name2) const
 Whether or not two extra element integers are identical.
 
std::set< dof_id_type > getAllElemIDs (unsigned int elem_id_index) const
 Return all the unique element IDs for an extra element integer with its index.
 
std::set< dof_id_type > getElemIDsOnBlocks (unsigned int elem_id_index, const std::set< SubdomainID > &blks) const
 Return all the unique element IDs for an extra element integer with its index on a set of subdomains.
 
unsigned int getMaxSidesPerElem () const
 Get the maximum number of sides per element.
 
unsigned int getMaxNodesPerElem () const
 Get the maximum number of nodes per element.
 
unsigned int getMaxNodesPerSide () const
 Get the maximum number of nodes per side.
 
std::unordered_map< dof_id_type, std::set< dof_id_type > > getElemIDMapping (const std::string &from_id_name, const std::string &to_id_name) const
 
void cacheFaceInfoVariableOwnership () const
 Cache if variables live on the elements connected by the FaceInfo objects.
 
void cacheFVElementalDoFs () const
 Cache the DoF indices for FV variables on each element.
 
void computeFiniteVolumeCoords () const
 Compute the face coordinate value for all FaceInfo and ElemInfo objects.
 
void isDisplaced (bool is_displaced)
 Set whether this mesh is a displaced mesh.
 
bool isDisplaced () const
 whether this mesh is a displaced mesh
 
const std::map< boundary_id_type, std::vector< dof_id_type > > & nodeSetNodes () const
 
Moose::CoordinateSystemType getCoordSystem (SubdomainID sid) const
 Get the coordinate system type, e.g.
 
const std::map< SubdomainID, Moose::CoordinateSystemType > & getCoordSystem () const
 Get the map from subdomain ID to coordinate system type, e.g.
 
Moose::CoordinateSystemType getUniqueCoordSystem () const
 Get the coordinate system from the mesh, it must be the same in all subdomains otherwise this will error.
 
void setCoordSystem (const std::vector< SubdomainName > &blocks, const MultiMooseEnum &coord_sys)
 Set the coordinate system for the provided blocks to coord_sys.
 
void setAxisymmetricCoordAxis (const MooseEnum &rz_coord_axis)
 For axisymmetric simulations, set the symmetry coordinate axis.
 
void setGeneralAxisymmetricCoordAxes (const std::vector< SubdomainName > &blocks, const std::vector< std::pair< Point, RealVectorValue > > &axes)
 Sets the general coordinate axes for axisymmetric blocks.
 
const std::pair< Point, RealVectorValue > & getGeneralAxisymmetricCoordAxis (SubdomainID subdomain_id) const
 Gets the general axisymmetric coordinate axis for a block.
 
bool usingGeneralAxisymmetricCoordAxes () const
 Returns true if general axisymmetric coordinate axes are being used.
 
unsigned int getAxisymmetricRadialCoord () const
 Returns the desired radial direction for RZ coordinate transformation.
 
void checkCoordinateSystems ()
 Performs a sanity check for every element in the mesh.
 
void setCoordData (const MooseMesh &other_mesh)
 Set the coordinate system data to that of other_mesh.
 
void markFiniteVolumeInfoDirty ()
 Mark the finite volume information as dirty.
 
bool isFiniteVolumeInfoDirty () const
 
MooseAppCoordTransform & coordTransform ()
 
const MooseUnits & lengthUnit () const
 
const std::unordered_map< std::pair< const Elem *, unsigned short int >, const Elem * > & getLowerDElemMap () const
 This function attempts to return the map from a high-order element side to its corresponding lower-d element.
 
bool isSplit () const
 
void buildFiniteVolumeInfo () const
 Builds the face and elem info vectors that store meta-data needed for looping over and doing calculations based on mesh faces and elements in a finite volume setting.
 
void setupFiniteVolumeMeshData () const
 Sets up the additional data needed for finite volume computations.
 
void doingPRefinement (bool doing_p_refinement)
 Indicate whether the kind of adaptivity we're doing includes p-refinement.
 
bool doingPRefinement () const
 Query whether the kind of adaptivity we're doing includes p-refinement.
 
unsigned int maxPLevel () const
 Returns the maximum p-refinement level of all elements.
 
unsigned int maxHLevel () const
 Returns the maximum h-refinement level of all elements.
 
const std::vector< QpMap > & getPRefinementMap (const Elem &elem) const
 Get the map describing for each volumetric quadrature point (qp) on the refined level which qp on the previous coarser level the fine qp is closest to.
 
const std::vector< QpMap > & getPRefinementSideMap (const Elem &elem) const
 Get the map describing for each side quadrature point (qp) on the refined level which qp on the previous coarser level the fine qp is closest to.
 
const std::vector< QpMap > & getPCoarseningMap (const Elem &elem) const
 Get the map describing for each volumetric quadrature point (qp) on the coarse level which qp on the previous finer level the coarse qp is closest to.
 
const std::vector< QpMap > & getPCoarseningSideMap (const Elem &elem) const
 Get the map describing for each side quadrature point (qp) on the coarse level which qp on the previous finer level the coarse qp is closest to.
 
void buildPRefinementAndCoarseningMaps (Assembly *assembly)
 
bool hasLowerD () const
 
const std::set< SubdomainID > & interiorLowerDBlocks () const
 
const std::set< SubdomainID > & boundaryLowerDBlocks () const
 
bool getConstructNodeListFromSideList ()
 Return construct node list from side list boolean.
 
bool getDisplaceNodeListBySideList ()
 Return displace node list by side list boolean.
 
bool possiblyRebuildNodeToElemMap ()
 rebuild the node to element map if it's been requsted previously
 
virtual bool enabled () const
 Return the enabled status of the object.
 
std::shared_ptr< MooseObject > getSharedPtr ()
 Get another shared pointer to this object that has the same ownership group.
 
std::shared_ptr< const MooseObject > getSharedPtr () const
 
bool isKokkosObject () const
 Get whether this object is a Kokkos functor The parameter MooseBase::kokkos_object_param is set by the Kokkos base classes.
 
MooseApp & getMooseApp () const
 Get the MooseApp this class is associated with.
 
const std::string & type () const
 Get the type of this class.
 
const std::string & name () const
 Get the name of the class.
 
std::string typeAndName () const
 Get the class's combined type and name; useful in error handling.
 
MooseObjectParameterName uniqueParameterName (const std::string &parameter_name) const
 
MooseObjectName uniqueName () const
 
const InputParameters & parameters () const
 Get the parameters of the object.
 
const hit::Node * getHitNode () const
 
bool hasBase () const
 
const std::string & getBase () const
 
template<typename T >
const T & getParam (const std::string &name) const
 Retrieve a parameter for the object.
 
template<typename T1 , typename T2 >
std::vector< std::pair< T1, T2 > > getParam (const std::string &param1, const std::string &param2) const
 Retrieve two parameters and provide pair of parameters for the object.
 
template<typename T >
const T * queryParam (const std::string &name) const
 Query a parameter for the object.
 
template<typename T >
const T & getRenamedParam (const std::string &old_name, const std::string &new_name) const
 Retrieve a renamed parameter for the object.
 
template<typename T >
T getCheckedPointerParam (const std::string &name, const std::string &error_string="") const
 Verifies that the requested parameter exists and is not NULL and returns it to the caller.
 
bool isParamValid (const std::string &name) const
 Test if the supplied parameter is valid.
 
bool isParamSetByUser (const std::string &name) const
 Test if the supplied parameter is set by a user, as opposed to not set or set to default.
 
void connectControllableParams (const std::string &parameter, const std::string &object_type, const std::string &object_name, const std::string &object_parameter) const
 Connect controllable parameter of this action with the controllable parameters of the objects added by this action.
 
template<typename... Args>
void paramError (const std::string &param, Args... args) const
 Emits an error prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.
 
template<typename... Args>
void paramWarning (const std::string &param, Args... args) const
 Emits a warning prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.
 
template<typename... Args>
void paramWarning (const std::string &param, Args... args) const
 
template<typename... Args>
void paramInfo (const std::string &param, Args... args) const
 Emits an informational message prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.
 
std::string messagePrefix (const bool hit_prefix=true) const
 
std::string errorPrefix (const std::string &) const
 Deprecated message prefix; the error type is no longer used.
 
template<typename... Args>
void mooseError (Args &&... args) const
 Emits an error prefixed with object name and type and optionally a file path to the top-level block parameter if available.
 
template<typename... Args>
void mooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, Args &&... args) const
 
template<typename... Args>
void mooseErrorNonPrefixed (Args &&... args) const
 Emits an error without the prefixing included in mooseError().
 
template<typename... Args>
void mooseWarning (Args &&... args) const
 Emits a warning prefixed with object name and type.
 
template<typename... Args>
void mooseWarning (Args &&... args) const
 
template<typename... Args>
void mooseWarningNonPrefixed (Args &&... args) const
 Emits a warning without the prefixing included in mooseWarning().
 
template<typename... Args>
void mooseWarningNonPrefixed (Args &&... args) const
 
template<typename... Args>
void mooseDeprecated (Args &&... args) const
 Emits a deprecation warning prefixed with the object name and type, and a stack trace.
 
template<typename... Args>
void mooseDeprecated (Args &&... args) const
 
template<typename... Args>
void mooseDeprecatedNoTrace (Args &&... args) const
 Emits a deprecation warning prefixed with the object name and type, and no stack trace.
 
template<typename... Args>
void mooseInfo (Args &&... args) const
 
void callMooseError (std::string msg, const bool with_prefix, const hit::Node *node=nullptr, const bool show_trace=true) const
 External method for calling moose error with added object context.
 
const Parallel::Communicator & comm () const
 
processor_id_type n_processors () const
 
processor_id_type processor_id () const
 
std::string getDataFileName (const std::string &param) const
 Deprecated method.
 
std::string getDataFileNameByName (const std::string &relative_path) const
 Deprecated method.
 
std::string getDataFilePath (const std::string &relative_path) const
 Returns the path of a data file for a given relative file path.
 
PerfGraph & perfGraph ()
 Get the PerfGraph.
 
const libMesh::ConstElemRange * getActiveLocalElementRange ()
 Return pointers to range objects for various types of ranges (local nodes, boundary elems, etc.).
 
libMesh::NodeRange * getActiveNodeRange ()
 
SemiLocalNodeRange * getActiveSemiLocalNodeRange () const
 
libMesh::ConstNodeRange * getLocalNodeRange ()
 
libMesh::StoredRange< MooseMesh::const_bnd_node_iterator, const BndNode * > * getBoundaryNodeRange ()
 
libMesh::StoredRange< MooseMesh::const_bnd_elem_iterator, const BndElement * > * getBoundaryElementRange ()
 
virtual Real getMinInDimension (unsigned int component) const
 Returns the min or max of the requested dimension respectively.
 
virtual Real getMaxInDimension (unsigned int component) const
 
bool isCustomPartitionerRequested () const
 Setter and getter for _custom_partitioner_requested.
 
void setIsCustomPartitionerRequested (bool cpr)
 
unsigned int nFace () const
 accessors for the FaceInfo objects
 
const std::vector< const FaceInfo * > & faceInfo () const
 Accessor for local FaceInfo objects.
 
const FaceInfo * faceInfo (const Elem *elem, unsigned int side) const
 Accessor for the local FaceInfo object on the side of one element. Returns null if ghosted.
 
face_info_iterator ownedFaceInfoBegin ()
 Iterators to owned faceInfo objects.
 
face_info_iterator ownedFaceInfoEnd ()
 
elem_info_iterator ownedElemInfoBegin ()
 Iterators to owned faceInfo objects.
 
elem_info_iterator ownedElemInfoEnd ()
 
const ElemInfo & elemInfo (const dof_id_type id) const
 Accessor for the elemInfo object for a given element ID.
 
const std::vector< const ElemInfo * > & elemInfoVector () const
 Accessor for the element info objects owned by this process.
 
const std::vector< FaceInfo > & allFaceInfo () const
 Accessor for all FaceInfo objects.
 

Static Public Member Functions

static InputParameters validParams ()
 
static MooseEnum partitioning ()
 returns MooseMesh partitioning options so other classes can use it
 
static MooseEnum elemTypes ()
 returns MooseMesh element type options
 
static void setSubdomainName (MeshBase &mesh, SubdomainID subdomain_id, const SubdomainName &name, const bool synchronous=false)
 This method sets the name for subdomain_id on the provided mesh to name.
 
static void changeBoundaryId (MeshBase &mesh, const boundary_id_type old_id, const boundary_id_type new_id, bool delete_prev)
 Change all the boundary IDs for a given side from old_id to new_id for the given mesh.
 
static void setPartitioner (MeshBase &mesh_base, MooseEnum &partitioner, bool use_distributed_mesh, const InputParameters &params, MooseObject &context_obj)
 Method for setting the partitioner on the passed in mesh_base object.
 
static void callMooseError (MooseApp *const app, const InputParameters &params, std::string msg, const bool with_prefix, const hit::Node *node, const bool show_trace=true)
 External method for calling moose error with added object context.
 

Public Attributes

 usingCombinedWarningSolutionWarnings
 
const ConsoleStream _console
 An instance of helper class to write streams to the Console objects.
 

Static Public Attributes

static const std::array< bool, 3 > periodic_dim_default {false, false, false}
 Default value for the automatically detected paired boundaries for each unit dimension, in which the value for each unit dimension is false (not detected).
 
static const std::string type_param = "_type"
 The name of the parameter that contains the object type.
 
static const std::string name_param = "_object_name"
 The name of the parameter that contains the object name.
 
static const std::string unique_name_param = "_unique_name"
 The name of the parameter that contains the unique object name.
 
static const std::string app_param = "_moose_app"
 The name of the parameter that contains the MooseApp.
 
static const std::string moose_base_param = "_moose_base"
 The name of the parameter that contains the moose system base.
 
static const std::string kokkos_object_param = "_kokkos_object"
 The name of the parameter that indicates an object is a Kokkos functor.
 

Protected Types

enum  { X = 0 , Y , Z }
 Convenience enums. More...
 
enum  { MIN = 0 , MAX }
 
typedef std::vector< BndNode * >::iterator bnd_node_iterator_imp
 
typedef std::vector< BndNode * >::const_iterator const_bnd_node_iterator_imp
 
typedef std::vector< BndElement * >::iterator bnd_elem_iterator_imp
 
typedef std::vector< BndElement * >::const_iterator const_bnd_elem_iterator_imp
 

Protected Member Functions

mfem::Mesh buildSerialMFEMMesh () override
 Build and return the serial mfem::Mesh for this object.
 
void buildDummyMooseMesh ()
 Builds a dimension-compatible libMesh placeholder after initializing the MFEM mesh.
 
void uniformRefinement (mfem::Mesh &mesh, const unsigned int nref) const
 Performs a uniform refinement on the chosen mesh nref times.
 
bool allowRecovery () const
 Returns whether this mesh is allowed to read a recovery file.
 
void cacheInfo ()
 
void freeBndNodes ()
 
void freeBndElems ()
 
void setPartitionerHelper (MeshBase *mesh=nullptr)
 
template<bool warning>
void flagInvalidSolutionInternal (const InvalidSolutionID invalid_solution_id) const
 Set solution invalid mark for the given solution ID.
 
InvalidSolutionID registerInvalidSolutionInternal (const std::string &message, const bool warning) const
 
template<typename T , typename... Args>
T & declareRestartableData (const std::string &data_name, Args &&... args)
 Declare a piece of data as "restartable" and initialize it.
 
template<typename T , typename... Args>
ManagedValue< T > declareManagedRestartableDataWithContext (const std::string &data_name, void *context, Args &&... args)
 Declares a piece of "managed" restartable data and initialize it.
 
template<typename T , typename... Args>
const T & getRestartableData (const std::string &data_name) const
 Declare a piece of data as "restartable" and initialize it Similar to declareRestartableData but returns a const reference to the object.
 
template<typename T , typename... Args>
T & declareRestartableDataWithContext (const std::string &data_name, void *context, Args &&... args)
 Declare a piece of data as "restartable" and initialize it.
 
template<typename T , typename... Args>
T & declareRecoverableData (const std::string &data_name, Args &&... args)
 Declare a piece of data as "recoverable" and initialize it.
 
template<typename T , typename... Args>
T & declareRestartableDataWithObjectName (const std::string &data_name, const std::string &object_name, Args &&... args)
 Declare a piece of data as "restartable".
 
template<typename T , typename... Args>
T & declareRestartableDataWithObjectNameWithContext (const std::string &data_name, const std::string &object_name, void *context, Args &&... args)
 Declare a piece of data as "restartable".
 
std::string restartableName (const std::string &data_name) const
 Gets the name of a piece of restartable data given a data name, adding the system name and object name prefix.
 
PerfID registerTimedSection (const std::string &section_name, const unsigned int level) const
 Call to register a named section for timing.
 
PerfID registerTimedSection (const std::string &section_name, const unsigned int level, const std::string &live_message, const bool print_dots=true) const
 Call to register a named section for timing.
 
std::string timedSectionName (const std::string &section_name) const
 

Protected Attributes

std::optional< std::string > _mesh_displacement_variable
 Holds name of variable used for mesh displacement, if set.
 
std::shared_ptr< mfem::ParMesh > _mfem_par_mesh {nullptr}
 Smart pointer to mfem::ParMesh object.
 
std::vector< std::unique_ptr< libMesh::GhostingFunctor > > _ghosting_functors
 Deprecated (DO NOT USE)
 
std::vector< std::shared_ptr< RelationshipManager > > _relationship_managers
 The list of active geometric relationship managers (bound to the underlying MeshBase object).
 
bool _built_from_other_mesh = false
 Whether or not this mesh was built from another mesh.
 
ParallelType _parallel_type
 Can be set to DISTRIBUTED, REPLICATED, or DEFAULT.
 
bool _use_distributed_mesh
 False by default.
 
bool _distribution_overridden
 
bool _parallel_type_overridden
 
std::unique_ptr< libMesh::MeshBase > _mesh
 Pointer to underlying libMesh mesh object.
 
std::unique_ptr< Moose::Kokkos::Mesh > _kokkos_mesh
 Pointer to Kokkos mesh object.
 
MooseEnum _partitioner_name
 The partitioner used on this mesh.
 
bool _partitioner_overridden
 
std::unique_ptr< libMesh::Partitioner > _custom_partitioner
 The custom partitioner.
 
bool _custom_partitioner_requested
 
unsigned int _uniform_refine_level
 The level of uniform refinement requested (set to zero if AMR is disabled)
 
bool _skip_refine_when_use_split
 Whether or not to skip uniform refinements when using a pre-split mesh.
 
bool _skip_deletion_repartition_after_refine
 Whether or not skip remote deletion and repartition after uniform refinements.
 
bool _is_changed
 true if mesh is changed (i.e. after adaptivity step)
 
bool _is_nemesis
 True if a Nemesis Mesh was read in.
 
bool _moose_mesh_prepared = false
 True if prepare has been called on the mesh.
 
std::unique_ptr< ConstElemPointerRange > _refined_elements
 The elements that were just refined.
 
std::unique_ptr< ConstElemPointerRange > _coarsened_elements
 The elements that were just coarsened.
 
std::map< const Elem *, std::vector< const Elem * > > _coarsened_element_children
 Map of Parent elements to child elements for elements that were just coarsened.
 
std::set< Node * > _semilocal_node_list
 Used for generating the semilocal node range.
 
std::unique_ptr< SemiLocalNodeRange > _active_semilocal_node_range
 Ranges for use with threading, cached so they don't have to get rebuilt all the time (which takes time).
 
std::unique_ptr< libMesh::NodeRange > _active_node_range
 
std::unique_ptr< libMesh::ConstNodeRange > _local_node_range
 
std::unique_ptr< libMesh::StoredRange< MooseMesh::const_bnd_node_iterator, const BndNode * > > _bnd_node_range
 
std::unique_ptr< libMesh::StoredRange< MooseMesh::const_bnd_elem_iterator, const BndElement * > > _bnd_elem_range
 
std::unordered_map< dof_id_type, std::vector< dof_id_type > > _node_to_elem_map
 A map of all of the current nodes to the elements that they are connected to.
 
bool _node_to_elem_map_built = false
 Whether _node_to_elem_map has been built.
 
std::set< SubdomainID > _mesh_subdomains
 A set of subdomain IDs currently present in the mesh.
 
std::unique_ptr< std::map< BoundaryID, RealVectorValue > > _boundary_to_normal_map
 The boundary to normal map - valid only when AddAllSideSetsByNormals is active.
 
std::vector< BndNode * > _bnd_nodes
 array of boundary nodes
 
std::map< boundary_id_type, std::set< dof_id_type > > _bnd_node_ids
 Map of sets of node IDs in each boundary.
 
std::vector< BndElement * > _bnd_elems
 array of boundary elems
 
std::unordered_map< boundary_id_type, std::unordered_set< dof_id_type > > _bnd_elem_ids
 Map of set of elem IDs connected to each boundary.
 
std::map< dof_id_type, Node * > _quadrature_nodes
 
std::map< dof_id_type, std::map< unsigned int, std::map< dof_id_type, Node * > > > _elem_to_side_to_qp_to_quadrature_nodes
 
std::vector< BndNode > _extra_bnd_nodes
 
std::map< dof_id_type, std::set< SubdomainID > > _block_node_list
 list of nodes that belongs to a specified block (domain)
 
std::map< boundary_id_type, std::vector< dof_id_type > > _node_set_nodes
 list of nodes that belongs to a specified nodeset: indexing [nodeset_id] -> [array of node ids]
 
std::set< unsigned int > _ghosted_boundaries
 
std::vector< Real > _ghosted_boundaries_inflation
 
unsigned int _patch_size
 The number of nodes to consider in the NearestNode neighborhood.
 
unsigned int _ghosting_patch_size
 The number of nearest neighbors to consider for ghosting purposes when iteration patch update strategy is used.
 
unsigned int _max_leaf_size
 
Moose::PatchUpdateType _patch_update_strategy
 The patch update strategy.
 
std::vector< Node * > _node_map
 Vector of all the Nodes in the mesh for determining when to add a new point.
 
bool _regular_orthogonal_mesh
 Boolean indicating whether this mesh was detected to be regular and orthogonal.
 
std::vector< std::vector< Real > > _bounds
 The bounds in each dimension of the mesh for regular orthogonal meshes.
 
std::optional< std::vector< std::pair< BoundaryID, BoundaryID > > > _paired_boundary
 A vector holding the paired boundaries for a regular orthogonal mesh.
 
const bool _is_split
 Whether or not we are using a (pre-)split mesh (automatically DistributedMesh)
 
const bool & _enabled
 Reference to the "enable" InputParameters, used by Controls for toggling on/off MooseObjects.
 
MooseApp & _app
 The MOOSE application this is associated with.
 
Factory & _factory
 The Factory associated with the MooseApp.
 
ActionFactory & _action_factory
 Builds Actions.
 
const std::string & _type
 The type of this class.
 
const std::string & _name
 The name of this class.
 
const InputParameters & _pars
 The object's parameters.
 
const Parallel::Communicator & _communicator
 
MooseApp & _restartable_app
 Reference to the application.
 
const std::string _restartable_system_name
 The system name this object is in.
 
const THREAD_ID _restartable_tid
 The thread ID for this object.
 
const bool _restartable_read_only
 Flag for toggling read only status (see ReporterData)
 
MooseApp & _pg_moose_app
 The MooseApp that owns the PerfGraph.
 
const std::string _prefix
 A prefix to use for all sections.
 
std::set< BoundaryID > _mesh_boundary_ids
 A set of boundary IDs currently present in the mesh.
 
std::set< BoundaryID > _mesh_sideset_ids
 
std::set< BoundaryID > _mesh_nodeset_ids
 

Private Member Functions

std::unordered_map< dof_id_type, std::vector< dof_id_type > > & internalNodeToElemMap ()
 If not already created, creates a map from every node to all elements to which they are connected.
 
void buildRefinementMap (const Elem &elem, libMesh::QBase &qrule, libMesh::QBase &qrule_face, int parent_side, int child, int child_side)
 Build the refinement map for a given element type.
 
void buildCoarseningMap (const Elem &elem, libMesh::QBase &qrule, libMesh::QBase &qrule_face, int input_side)
 Build the coarsening map for a given element type.
 
void mapPoints (const std::vector< Point > &from, const std::vector< Point > &to, std::vector< QpMap > &qp_map)
 Find the closest points that map "from" to "to" and fill up "qp_map".
 
void findAdaptivityQpMaps (const Elem *template_elem, libMesh::QBase &qrule, libMesh::QBase &qrule_face, std::vector< std::vector< QpMap > > &refinement_map, std::vector< std::pair< unsigned int, QpMap > > &coarsen_map, int parent_side, int child, int child_side)
 Given an elem type, get maps that tell us what qp's are closest to each other between a parent and it's children.
 
void buildHRefinementAndCoarseningMaps (Assembly *assembly)
 
const std::vector< QpMap > & getPRefinementMapHelper (const Elem &elem, const std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > &) const
 
const std::vector< QpMap > & getPCoarseningMapHelper (const Elem &elem, const std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > &) const
 
void updateCoordTransform ()
 Update the coordinate transformation object based on our coordinate system data.
 
void checkDuplicateSubdomainNames ()
 Loop through all subdomain IDs and check if there is name duplication used for the subdomains with same ID.
 
void computeMaxPerElemAndSide ()
 Compute the maximum numbers per element and side.
 
void buildElemIDInfo ()
 Build extra data for faster access to the information of extra element integers.
 
void buildLowerDMesh ()
 Build lower-d mesh for all sides.
 
RestartableDataValue & registerRestartableDataOnApp (std::unique_ptr< RestartableDataValue > data, THREAD_ID tid) const
 Helper function for actually registering the restartable data.
 
void registerRestartableNameWithFilterOnApp (const std::string &name, Moose::RESTARTABLE_FILTER filter)
 Helper function for actually registering the restartable data.
 
template<typename T , typename... Args>
RestartableData< T > & declareRestartableDataHelper (const std::string &data_name, void *context, Args &&... args) const
 Helper function for declaring restartable data.
 

Static Private Member Functions

static const hit::Node * getHitNode (const InputParameters &params)
 Internal method for getting a hit node (if available) given a set of parameters.
 
static std::string messagePrefix (const InputParameters &params, const bool hit_prefix)
 Internal method for getting the message prefix for an object (object type, name, etc).
 

Private Attributes

std::unordered_map< dof_id_type, ElemInfo > _elem_to_elem_info
 Map connecting elems with their corresponding ElemInfo, we use the element ID as the key.
 
std::vector< const ElemInfo * > _elem_info
 Holds only those ElemInfo objects that have processor_id equal to this process's id, e.g.
 
std::vector< FaceInfo > _all_face_info
 FaceInfo object storing information for face based loops.
 
std::vector< const FaceInfo * > _face_info
 Holds only those FaceInfo objects that have processor_id equal to this process's id, e.g.
 
std::unordered_map< std::pair< const Elem *, unsigned int >, FaceInfo * > _elem_side_to_face_info
 Map from elem-side pair to FaceInfo.
 
bool _finite_volume_info_dirty = true
 
bool _linear_finite_volume_dofs_cached = false
 
std::map< std::pair< unsigned int, unsigned int >, std::array< bool, 3 > > _periodic_dim
 A map from (system number, vector number) to which dimensions are periodic in a regular orthogonal mesh.
 
RealVectorValue _half_range
 A convenience vector used to hold values in each dimension representing half of the range.
 
std::vector< Node * > _extreme_nodes
 A vector containing the nodes at the corners of a regular orthogonal mesh.
 
std::map< std::pair< int, libMesh::ElemType >, std::vector< std::vector< QpMap > > > _elem_type_to_refinement_map
 Holds mappings for volume to volume and parent side to child side Map key:
 
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_refinement_map
 
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_refinement_side_map
 
std::map< libMesh::ElemType, std::map< std::pair< int, int >, std::vector< std::vector< QpMap > > > > _elem_type_to_child_side_refinement_map
 Holds mappings for "internal" child sides to parent volume. The second key is (child, child_side).
 
std::map< std::pair< int, libMesh::ElemType >, std::vector< std::pair< unsigned int, QpMap > > > _elem_type_to_coarsening_map
 Holds mappings for volume to volume and parent side to child side Map key:
 
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_coarsening_map
 
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_coarsening_side_map
 
std::unordered_map< SubdomainID, SubdomainData > _sub_to_data
 Holds a map from subdomain ids to associated data.
 
std::unordered_map< SubdomainID, std::set< BoundaryID > > _neighbor_subdomain_boundary_ids
 Holds a map from neighbor subomdain ids to the boundary ids that are attached to it.
 
std::set< SubdomainID > _lower_d_interior_blocks
 Mesh blocks for interior lower-d elements in different types.
 
std::set< SubdomainID > _lower_d_boundary_blocks
 Mesh blocks for boundary lower-d elements in different types.
 
std::unordered_map< std::pair< const Elem *, unsigned short int >, const Elem * > _higher_d_elem_side_to_lower_d_elem
 Holds a map from a high-order element side to its corresponding lower-d element.
 
std::unordered_map< const Elem *, unsigned short int > _lower_d_elem_to_higher_d_elem_side
 
bool _allow_recovery
 Whether or not this Mesh is allowed to read a recovery file.
 
bool _construct_node_list_from_side_list
 Whether or not to allow generation of nodesets from sidesets.
 
bool _displace_node_list_by_side_list
 Whether or not to displace unrelated nodesets by nodesets constructed from sidesets.
 
bool _need_delete
 Whether we need to delete remote elements after init'ing the EquationSystems.
 
bool _allow_remote_element_removal
 Whether to allow removal of remote elements.
 
std::set< Elem * > _ghost_elems_from_ghost_boundaries
 Set of elements ghosted by ghostGhostedBoundaries.
 
bool _need_ghost_ghosted_boundaries
 A parallel mesh generator such as DistributedRectilinearMeshGenerator already make everything ready.
 
std::vector< std::unordered_map< SubdomainID, std::set< dof_id_type > > > _block_id_mapping
 Unique element integer IDs for each subdomain and each extra element integers.
 
std::vector< dof_id_type > _max_ids
 Maximum integer ID for each extra element integer.
 
std::vector< dof_id_type > _min_ids
 Minimum integer ID for each extra element integer.
 
std::vector< std::vector< bool > > _id_identical_flag
 Flags to indicate whether or not any two extra element integers are the same.
 
unsigned int _max_sides_per_elem
 The maximum number of sides per element.
 
unsigned int _max_nodes_per_elem
 The maximum number of nodes per element.
 
unsigned int _max_nodes_per_side
 The maximum number of nodes per side.
 
bool _is_displaced
 Whether this mesh is displaced.
 
std::map< SubdomainID, Moose::CoordinateSystemType > & _coord_sys
 Type of coordinate system per subdomain.
 
unsigned int _rz_coord_axis
 Storage for RZ axis selection.
 
std::unordered_map< SubdomainID, std::pair< Point, RealVectorValue > > _subdomain_id_to_rz_coord_axis
 Map of subdomain ID to general axisymmetric axis.
 
std::unique_ptr< MooseAppCoordTransform > _coord_transform
 A coordinate transformation object that describes how to transform this problem's coordinate system into the canonical/reference coordinate system.
 
bool _coord_system_set
 Whether the coordinate system has been set.
 
std::vector< SubdomainName > _provided_coord_blocks
 Set for holding user-provided coordinate system type block names.
 
bool _doing_p_refinement
 Whether we have p-refinement (whether exclusively p- or hp-refinement)
 
unsigned int _max_p_level
 Maximum p-refinement level of all elements.
 
unsigned int _max_h_level
 Maximum h-refinement level of all elements.
 
const ParallelParamObject & _parent
 
const MooseBase & _si_moose_base
 The MooseBase that owns this interface.
 
const FEProblemBase * _si_problem
 A pointer to FEProblem base.
 
const RestartableDataMapName _metaname
 Restartable metadata name.
 
std::string _restartable_name
 The name of the object.
 

Detailed Description

MooseMesh subclass that consumes the MeshGenerator pipeline to build an mfem::ParMesh.

It is the MFEM analog of MeshGeneratorMesh: use it as the [Mesh] type (or let SetupMeshAction auto-select it) whenever one or more MFEMMeshGenerator objects are present.

Common MFEM mesh infrastructure lives in the MFEMMesh base class; this class implements buildSerialMFEMMesh() to extract the mfem::Mesh from the MFEMMeshCarrier produced by the generator pipeline.

Definition at line 26 of file MFEMMeshGeneratorMesh.h.

Member Typedef Documentation

◆ bnd_elem_iterator_imp

typedef std::vector<BndElement*>::iterator MooseMesh::bnd_elem_iterator_imp
protectedinherited

Definition at line 1705 of file MooseMesh.h.

◆ bnd_node_iterator_imp

typedef std::vector<BndNode*>::iterator MooseMesh::bnd_node_iterator_imp
protectedinherited

Definition at line 1698 of file MooseMesh.h.

◆ const_bnd_elem_iterator_imp

typedef std::vector<BndElement*>::const_iterator MooseMesh::const_bnd_elem_iterator_imp
protectedinherited

Definition at line 1706 of file MooseMesh.h.

◆ const_bnd_node_iterator_imp

typedef std::vector<BndNode*>::const_iterator MooseMesh::const_bnd_node_iterator_imp
protectedinherited

Definition at line 1699 of file MooseMesh.h.

◆ DataFileParameterType

using DataFileInterface::DataFileParameterType = DataFileName
inherited

The parameter type this interface expects for a data file name.

Definition at line 27 of file DataFileInterface.h.

◆ PeriodicNodeInfo

using MooseMesh::PeriodicNodeInfo = std::pair<const Node *, BoundaryID>
inherited

Helper type for building periodic node maps.

Definition at line 1214 of file MooseMesh.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
protectedinherited

Convenience enums.

Enumerator
X 
Y 
Z 

Definition at line 1612 of file MooseMesh.h.

1613 {
1614 X = 0,
1615 Y,
1616 Z
1617 };

◆ anonymous enum

anonymous enum
protectedinherited
Enumerator
MIN 
MAX 

Definition at line 1618 of file MooseMesh.h.

1619 {
1620 MIN = 0,
1621 MAX
1622 };

◆ ParallelType

enum class MooseMesh::ParallelType
stronginherited
Enumerator
DEFAULT 
REPLICATED 
DISTRIBUTED 

Definition at line 117 of file MooseMesh.h.

Constructor & Destructor Documentation

◆ MFEMMeshGeneratorMesh()

MFEMMeshGeneratorMesh::MFEMMeshGeneratorMesh ( const InputParameters &  parameters)

Definition at line 33 of file MFEMMeshGeneratorMesh.C.

35{
36}
Abstract MooseMesh base for all MFEM-backed mesh types (MFEMFileMesh, MFEMMeshGeneratorMesh).
Definition MFEMMesh.h:24
const InputParameters & parameters() const
Get the parameters of the object.
Definition MooseBase.h:131

Member Function Documentation

◆ activeLocalElementsBegin() [1/2]

MeshBase::element_iterator MooseMesh::activeLocalElementsBegin ( )
inherited

Calls active_local_nodes_begin/end() on the underlying libMesh mesh object.

Definition at line 3115 of file MooseMesh.C.

3116{
3117 return getMesh().active_local_elements_begin();
3118}
MeshBase & getMesh()
Accessor for the underlying libMesh Mesh object.
Definition MooseMesh.C:3512

Referenced by FEProblemBase::checkDisplacementOrders(), and MooseMesh::hasSecondOrderElements().

◆ activeLocalElementsBegin() [2/2]

MeshBase::const_element_iterator MooseMesh::activeLocalElementsBegin ( ) const
inherited

Definition at line 3127 of file MooseMesh.C.

3128{
3129 return getMesh().active_local_elements_begin();
3130}

◆ activeLocalElementsEnd() [1/2]

const MeshBase::element_iterator MooseMesh::activeLocalElementsEnd ( )
inherited

Definition at line 3121 of file MooseMesh.C.

3122{
3123 return getMesh().active_local_elements_end();
3124}

Referenced by FEProblemBase::checkDisplacementOrders(), and MooseMesh::hasSecondOrderElements().

◆ activeLocalElementsEnd() [2/2]

const MeshBase::const_element_iterator MooseMesh::activeLocalElementsEnd ( ) const
inherited

Definition at line 3133 of file MooseMesh.C.

3134{
3135 return getMesh().active_local_elements_end();
3136}

◆ addGhostedBoundary()

void MooseMesh::addGhostedBoundary ( BoundaryID  boundary_id)
inherited

This will add the boundary ids to be ghosted to this processor.

Definition at line 3293 of file MooseMesh.C.

3294{
3295 _ghosted_boundaries.insert(boundary_id);
3296}
std::set< unsigned int > _ghosted_boundaries
Definition MooseMesh.h:1722

Referenced by FEProblemBase::addGhostedBoundary().

◆ addPeriodicVariable()

void MooseMesh::addPeriodicVariable ( const unsigned int  sys_num,
const unsigned int  var_num,
const BoundaryID  primary,
const BoundaryID  secondary 
)
inherited

For "regular orthogonal" meshes, determine if variable var_num is periodic with respect to the primary and secondary BoundaryIDs, record this fact in the _periodic_dim data structure.

Definition at line 2158 of file MooseMesh.C.

2162{
2164 return;
2165
2166 const auto key = std::make_pair(sys_num, var_num);
2167 auto & entry = _periodic_dim.try_emplace(key, periodic_dim_default).first->second;
2168
2169 _half_range = Point(dimensionWidth(0) / 2.0, dimensionWidth(1) / 2.0, dimensionWidth(2) / 2.0);
2170
2171 bool component_found = false;
2172 for (const auto component : make_range(dimension()))
2173 {
2174 const std::pair<BoundaryID, BoundaryID> * boundary_ids = getPairedBoundaryMapping(component);
2175
2176 if (boundary_ids && ((boundary_ids->first == primary && boundary_ids->second == secondary) ||
2177 (boundary_ids->first == secondary && boundary_ids->second == primary)))
2178 {
2179 entry[component] = true;
2180 component_found = true;
2181 }
2182 }
2183
2184 if (!component_found)
2185 mooseWarning("Could not find a match between boundary '",
2186 getBoundaryName(primary),
2187 "' and '",
2188 getBoundaryName(secondary),
2189 "' to set periodic boundary conditions for variable (index:",
2190 var_num,
2191 ") in either the X, Y or Z direction. The periodic dimension of the mesh for this "
2192 "variable will not be stored.");
2193}
virtual unsigned int dimension() const
Returns MeshBase::mesh_dimension(), (not MeshBase::spatial_dimension()!) of the underlying libMesh me...
Definition MooseMesh.C:2949
static const std::array< bool, 3 > periodic_dim_default
Default value for the automatically detected paired boundaries for each unit dimension,...
Definition MooseMesh.h:80
Real dimensionWidth(unsigned int component) const
Returns the width of the requested dimension.
Definition MooseMesh.C:2134
const std::string & getBoundaryName(const BoundaryID boundary_id) const
Return the name of the boundary given the id.
Definition MooseMesh.C:1743
bool _regular_orthogonal_mesh
Boolean indicating whether this mesh was detected to be regular and orthogonal.
Definition MooseMesh.h:1741
const std::pair< BoundaryID, BoundaryID > * getPairedBoundaryMapping(unsigned int component) const
This function attempts to return the paired boundary ids for the given component.
Definition MooseMesh.C:2306
std::map< std::pair< unsigned int, unsigned int >, std::array< bool, 3 > > _periodic_dim
A map from (system number, vector number) to which dimensions are periodic in a regular orthogonal me...
Definition MooseMesh.h:1798
RealVectorValue _half_range
A convenience vector used to hold values in each dimension representing half of the range.
Definition MooseMesh.h:1803
void mooseWarning(Args &&... args) const
IntRange< T > make_range(T beg, T end)

Referenced by AddPeriodicBCAction::onSetupPeriodicBoundary().

◆ addQuadratureNode()

Node * MooseMesh::addQuadratureNode ( const Elem *  elem,
const unsigned short int  side,
const unsigned int  qp,
BoundaryID  bid,
const Point &  point 
)
inherited

Adds a fictitious "QuadratureNode".

This doesn't actually add it to the libMesh mesh... we just keep track of these here in MooseMesh.

QuadratureNodes are fictitious "Nodes" that are located at quadrature points. This is useful for using the geometric search system to do searches based on quadrature point locations....

Parameters
elemThe element
sideThe side number on which we want to add a quadrature node
qpThe number of the quadrature point
bidThe boundary ID for the point to be added with
pointThe physical location of the point

Definition at line 1558 of file MooseMesh.C.

1563{
1564 Node * qnode;
1565
1566 if (_elem_to_side_to_qp_to_quadrature_nodes[elem->id()][side].find(qp) ==
1568 {
1569 // Create a new node id starting from the max node id and counting down. This will be the least
1570 // likely to collide with an existing node id.
1571 // Note that we are using numeric_limits<unsigned>::max even
1572 // though max_id is stored as a dof_id_type. I tried this with
1573 // numeric_limits<dof_id_type>::max and it broke several tests in
1574 // MOOSE. So, this is some kind of a magic number that we will
1575 // just continue to use...
1576 dof_id_type max_id = std::numeric_limits<unsigned int>::max() - 100;
1577 dof_id_type new_id = max_id - _quadrature_nodes.size();
1578
1579 if (new_id <= getMesh().max_node_id())
1580 mooseError("Quadrature node id collides with existing node id!");
1581
1582 qnode = new Node(point, new_id);
1583
1584 // Keep track of this new node in two different ways for easy lookup
1585 _quadrature_nodes[new_id] = qnode;
1586 _elem_to_side_to_qp_to_quadrature_nodes[elem->id()][side][qp] = qnode;
1587
1588 if (elem->active())
1589 internalNodeToElemMap()[new_id].push_back(elem->id());
1590 }
1591 else
1592 qnode = _elem_to_side_to_qp_to_quadrature_nodes[elem->id()][side][qp];
1593
1594 BndNode * bnode = new BndNode(qnode, bid);
1595 _bnd_nodes.push_back(bnode);
1596 _bnd_node_ids[bid].insert(qnode->id());
1597
1598 _extra_bnd_nodes.push_back(*bnode);
1599
1600 // Do this so the range will be regenerated next time it is accessed
1601 _bnd_node_range.reset();
1602
1603 return qnode;
1604}
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type and optionally a file path to the top-level block p...
Definition MooseBase.h:271
virtual Elem * elem(const dof_id_type i)
Various accessors (pointers/references) for Elem "i".
Definition MooseMesh.C:3163
std::unique_ptr< libMesh::StoredRange< MooseMesh::const_bnd_node_iterator, const BndNode * > > _bnd_node_range
Definition MooseMesh.h:1666
std::map< dof_id_type, std::map< unsigned int, std::map< dof_id_type, Node * > > > _elem_to_side_to_qp_to_quadrature_nodes
Definition MooseMesh.h:1713
std::vector< BndNode * > _bnd_nodes
array of boundary nodes
Definition MooseMesh.h:1697
std::map< boundary_id_type, std::set< dof_id_type > > _bnd_node_ids
Map of sets of node IDs in each boundary.
Definition MooseMesh.h:1701
std::map< dof_id_type, Node * > _quadrature_nodes
Definition MooseMesh.h:1711
std::vector< BndNode > _extra_bnd_nodes
Definition MooseMesh.h:1714
std::unordered_map< dof_id_type, std::vector< dof_id_type > > & internalNodeToElemMap()
If not already created, creates a map from every node to all elements to which they are connected.
Definition MooseMesh.C:1212
uint8_t dof_id_type

Referenced by GeometricSearchData::generateQuadratureNodes().

◆ addUniqueNode()

const Node * MooseMesh::addUniqueNode ( const Point &  p,
Real  tol = 1e-6 
)
inherited

Add a new node to the mesh.

If there is already a node located at the point passed then the node will not be added. In either case a reference to the node at that location will be returned

Looping through the mesh nodes each time we add a point is very slow. To speed things up we keep a local data structure

Definition at line 1524 of file MooseMesh.C.

1525{
1530 if (getMesh().n_nodes() != _node_map.size())
1531 {
1532 _node_map.clear();
1533 _node_map.reserve(getMesh().n_nodes());
1534 for (const auto & node : getMesh().node_ptr_range())
1535 _node_map.push_back(node);
1536 }
1537
1538 Node * node = nullptr;
1539 for (unsigned int i = 0; i < _node_map.size(); ++i)
1540 {
1541 if (p.relative_fuzzy_equals(*_node_map[i], tol))
1542 {
1543 node = _node_map[i];
1544 break;
1545 }
1546 }
1547 if (node == nullptr)
1548 {
1549 node = getMesh().add_node(new Node(p));
1550 _node_map.push_back(node);
1551 }
1552
1553 mooseAssert(node != nullptr, "Node is NULL");
1554 return node;
1555}
virtual const Node & node(const dof_id_type i) const
Various accessors (pointers/references) for Node "i".
Definition MooseMesh.C:832
std::vector< Node * > _node_map
Vector of all the Nodes in the mesh for determining when to add a new point.
Definition MooseMesh.h:1738
const dof_id_type n_nodes

◆ allFaceInfo()

const std::vector< FaceInfo > & MooseMesh::allFaceInfo ( ) const
inlineinherited

Accessor for all FaceInfo objects.

Definition at line 2353 of file MooseMesh.h.

2354{
2355 return _all_face_info;
2356}
std::vector< FaceInfo > _all_face_info
FaceInfo object storing information for face based loops.
Definition MooseMesh.h:1774

◆ allowRecovery() [1/2]

bool MooseMesh::allowRecovery ( ) const
inlineprotectedinherited

Returns whether this mesh is allowed to read a recovery file.

Definition at line 1573 of file MooseMesh.h.

1573{ return _allow_recovery; }
bool _allow_recovery
Whether or not this Mesh is allowed to read a recovery file.
Definition MooseMesh.h:1977

Referenced by MFEMMesh::init().

◆ allowRecovery() [2/2]

void MooseMesh::allowRecovery ( bool  allow)
inlineinherited

Set whether or not this mesh is allowed to read a recovery file.

Definition at line 1171 of file MooseMesh.h.

1171{ _allow_recovery = allow; }

Referenced by SampledOutput::cloneMesh().

◆ allowRemoteElementRemoval() [1/2]

bool MooseMesh::allowRemoteElementRemoval ( ) const
inlineinherited

Whether we are allow remote element removal.

Definition at line 1234 of file MooseMesh.h.

bool _allow_remote_element_removal
Whether to allow removal of remote elements.
Definition MooseMesh.h:1990

Referenced by MooseMesh::MooseMesh().

◆ allowRemoteElementRemoval() [2/2]

void MooseMesh::allowRemoteElementRemoval ( bool  allow_removal)
inherited

Set whether to allow remote element removal.

Definition at line 3999 of file MooseMesh.C.

4000{
4001 _allow_remote_element_removal = allow_remote_element_removal;
4002 if (_mesh)
4003 _mesh->allow_remote_element_removal(allow_remote_element_removal);
4004
4005 if (!allow_remote_element_removal)
4006 // If we're not allowing remote element removal now, then we will need deletion later after
4007 // late geoemetric ghosting functors have been added (late geometric ghosting functor addition
4008 // happens when algebraic ghosting functors are added)
4009 _need_delete = true;
4010}
bool _need_delete
Whether we need to delete remote elements after init'ing the EquationSystems.
Definition MooseMesh.h:1987
std::unique_ptr< libMesh::MeshBase > _mesh
Pointer to underlying libMesh mesh object.
Definition MooseMesh.h:1596

Referenced by MooseApp::attachRelationshipManagers(), and XYTriangleBoundaryLayerGenerator::generate().

◆ areElemIDsIdentical()

bool MooseMesh::areElemIDsIdentical ( const std::string &  id_name1,
const std::string &  id_name2 
) const
inlineinherited

Whether or not two extra element integers are identical.

Definition at line 2339 of file MooseMesh.h.

2340{
2341 auto id1 = getElementIDIndex(id_name1);
2342 auto id2 = getElementIDIndex(id_name2);
2343 return _id_identical_flag[id1][id2];
2344}
std::vector< std::vector< bool > > _id_identical_flag
Flags to indicate whether or not any two extra element integers are the same.
Definition MooseMesh.h:2008
unsigned int getElementIDIndex(const std::string &id_name) const
Return the accessing integer for an extra element integer with its name.
Definition MooseMesh.h:2331

◆ bndElemsBegin()

MooseMesh::bnd_elem_iterator MooseMesh::bndElemsBegin ( )
virtualinherited

Return iterators to the beginning/end of the boundary elements list.

Definition at line 1509 of file MooseMesh.C.

1510{
1512 return bnd_elem_iterator(_bnd_elems.begin(), _bnd_elems.end(), p);
1513}
std::vector< BndElement * > _bnd_elems
array of boundary elems
Definition MooseMesh.h:1704

Referenced by MooseMesh::getBoundaryElementRange().

◆ bndElemsEnd()

MooseMesh::bnd_elem_iterator MooseMesh::bndElemsEnd ( )
virtualinherited

Definition at line 1517 of file MooseMesh.C.

1518{
1520 return bnd_elem_iterator(_bnd_elems.end(), _bnd_elems.end(), p);
1521}

Referenced by MooseMesh::getBoundaryElementRange().

◆ bndNodesBegin()

MooseMesh::bnd_node_iterator MooseMesh::bndNodesBegin ( )
virtualinherited

Return iterators to the beginning/end of the boundary nodes list.

Definition at line 1493 of file MooseMesh.C.

1494{
1496 return bnd_node_iterator(_bnd_nodes.begin(), _bnd_nodes.end(), p);
1497}

Referenced by MooseMesh::getBoundaryNodeRange().

◆ bndNodesEnd()

MooseMesh::bnd_node_iterator MooseMesh::bndNodesEnd ( )
virtualinherited

Definition at line 1501 of file MooseMesh.C.

1502{
1504 return bnd_node_iterator(_bnd_nodes.end(), _bnd_nodes.end(), p);
1505}

Referenced by MooseMesh::getBoundaryNodeRange().

◆ boundaryLowerDBlocks()

const std::set< SubdomainID > & MooseMesh::boundaryLowerDBlocks ( ) const
inlineinherited
Returns
The set of lower-dimensional blocks for boundary sides

Definition at line 1554 of file MooseMesh.h.

1554{ return _lower_d_boundary_blocks; }
std::set< SubdomainID > _lower_d_boundary_blocks
Mesh blocks for boundary lower-d elements in different types.
Definition MooseMesh.h:1970

Referenced by FEProblemBase::adaptMesh(), ArrayHFEMDirichletBC::ArrayHFEMDirichletBC(), ArrayLowerDIntegratedBC::ArrayLowerDIntegratedBC(), NonlinearSystemBase::checkKernelCoverage(), HFEMDirichletBC::HFEMDirichletBC(), FEProblemBase::initialAdaptMesh(), and LowerDIntegratedBC::LowerDIntegratedBC().

◆ buildActiveSideList()

std::vector< std::tuple< dof_id_type, unsigned short int, boundary_id_type > > MooseMesh::buildActiveSideList ( ) const
inherited

Calls BoundaryInfo::build_active_side_list.

Returns
A container of active (element, side, id) tuples.

Definition at line 3079 of file MooseMesh.C.

3080{
3081 return getMesh().get_boundary_info().build_active_side_list();
3082}

Referenced by MooseMesh::buildFiniteVolumeInfo().

◆ buildBndElemList()

void MooseMesh::buildBndElemList ( )
inherited

Definition at line 1189 of file MooseMesh.C.

1190{
1191 TIME_SECTION("buildBndElemList", 5, "Building Boundary Elements List");
1192
1193 freeBndElems();
1194
1195 auto bc_tuples = getMesh().get_boundary_info().build_active_side_list();
1196
1197 int n = bc_tuples.size();
1198 _bnd_elems.clear();
1199 _bnd_elems.reserve(n);
1200 for (const auto & t : bc_tuples)
1201 {
1202 auto elem_id = std::get<0>(t);
1203 auto side_id = std::get<1>(t);
1204 auto bc_id = std::get<2>(t);
1205
1206 _bnd_elems.push_back(new BndElement(getMesh().elem_ptr(elem_id), side_id, bc_id));
1207 _bnd_elem_ids[bc_id].insert(elem_id);
1208 }
1209}
void freeBndElems()
Definition MooseMesh.C:385
std::unordered_map< boundary_id_type, std::unordered_set< dof_id_type > > _bnd_elem_ids
Map of set of elem IDs connected to each boundary.
Definition MooseMesh.h:1709
const boundary_id_type side_id

Referenced by MooseMesh::update().

◆ buildCoarseningMap()

void MooseMesh::buildCoarseningMap ( const Elem &  elem,
libMesh::QBase &  qrule,
libMesh::QBase &  qrule_face,
int  input_side 
)
privateinherited

Build the coarsening map for a given element type.

This will tell you what quadrature points to copy from and to for stateful material properties on newly created elements from Adaptivity.

Parameters
elemThe element that represents the element type you need the coarsening map for.
qruleThe quadrature rule in use.
qrule_faceThe current face quadrature rule
input_sideThe side to map

TODO: When running with parallel mesh + stateful adaptivty we will need to make sure that each processor has a complete map. This may require parallel communication. This is likely to happen when running on a mixed element mesh.

Definition at line 2565 of file MooseMesh.C.

2566{
2567 TIME_SECTION("buildCoarseningMap", 5, "Building Coarsening Map");
2568
2569 std::pair<int, ElemType> the_pair(input_side, elem.type());
2570
2572 mooseError("Already built a qp coarsening map!");
2573
2574 std::vector<std::vector<QpMap>> refinement_map;
2575 std::vector<std::pair<unsigned int, QpMap>> & coarsen_map =
2577
2578 // The -1 here is for a specific child. We don't do that for coarsening maps
2579 // Also note that we're always mapping the same side to the same side (which is guaranteed by
2580 // libMesh).
2582 &elem, qrule, qrule_face, refinement_map, coarsen_map, input_side, -1, input_side);
2583
2590}
std::map< std::pair< int, libMesh::ElemType >, std::vector< std::pair< unsigned int, QpMap > > > _elem_type_to_coarsening_map
Holds mappings for volume to volume and parent side to child side Map key:
Definition MooseMesh.h:1944
void findAdaptivityQpMaps(const Elem *template_elem, libMesh::QBase &qrule, libMesh::QBase &qrule_face, std::vector< std::vector< QpMap > > &refinement_map, std::vector< std::pair< unsigned int, QpMap > > &coarsen_map, int parent_side, int child, int child_side)
Given an elem type, get maps that tell us what qp's are closest to each other between a parent and it...
Definition MooseMesh.C:2635

Referenced by MooseMesh::buildHRefinementAndCoarseningMaps().

◆ buildDummyMooseMesh()

void MFEMMesh::buildDummyMooseMesh ( )
protectedinherited

Builds a dimension-compatible libMesh placeholder after initializing the MFEM mesh.

Definition at line 143 of file MFEMMesh.C.

144{
145 // The libMesh placeholder is always replicated, independently of the distributed MFEM mesh.
147 auto & dummy = cast_ref<UnstructuredMesh &>(getMesh());
148 MeshTools::Generation::build_point(dummy);
149 if (dimension() >= 2)
150 MeshTools::Generation::build_square(dummy, 1, 1, 0., 1., 0., 1., ElemType::QUAD9);
151}
unsigned int dimension() const override
Returns MeshBase::mesh_dimension(), (not MeshBase::spatial_dimension()!) of the underlying libMesh me...
Definition MFEMMesh.h:68
void setParallelType(ParallelType parallel_type)
Allow to change parallel type.
Definition MooseMesh.h:2318

Referenced by MFEMMesh::buildMesh().

◆ buildElemIDInfo()

void MooseMesh::buildElemIDInfo ( )
privateinherited

Build extra data for faster access to the information of extra element integers.

Definition at line 1093 of file MooseMesh.C.

1094{
1095 unsigned int n = getMesh().n_elem_integers() + 1;
1096
1097 _block_id_mapping.clear();
1098 _max_ids.clear();
1099 _min_ids.clear();
1100 _id_identical_flag.clear();
1101
1102 _block_id_mapping.resize(n);
1103 _max_ids.resize(n, std::numeric_limits<dof_id_type>::min());
1104 _min_ids.resize(n, std::numeric_limits<dof_id_type>::max());
1105 _id_identical_flag.resize(n, std::vector<bool>(n, true));
1106 for (const auto & elem : getMesh().active_local_element_ptr_range())
1107 for (unsigned int i = 0; i < n; ++i)
1108 {
1109 auto id = (i == n - 1 ? elem->subdomain_id() : elem->get_extra_integer(i));
1110 _block_id_mapping[i][elem->subdomain_id()].insert(id);
1111 if (id > _max_ids[i])
1112 _max_ids[i] = id;
1113 if (id < _min_ids[i])
1114 _min_ids[i] = id;
1115 for (unsigned int j = 0; j < n; ++j)
1116 {
1117 auto idj = (j == n - 1 ? elem->subdomain_id() : elem->get_extra_integer(j));
1118 if (i != j && _id_identical_flag[i][j] && id != idj)
1119 _id_identical_flag[i][j] = false;
1120 }
1121 }
1122
1123 for (unsigned int i = 0; i < n; ++i)
1124 {
1125 for (auto & blk : meshSubdomains())
1126 comm().set_union(_block_id_mapping[i][blk]);
1128 }
1129 comm().max(_max_ids);
1130 comm().min(_min_ids);
1131}
for(PetscInt i=0;i< nvars;++i)
void ErrorVector unsigned int
std::vector< std::unordered_map< SubdomainID, std::set< dof_id_type > > > _block_id_mapping
Unique element integer IDs for each subdomain and each extra element integers.
Definition MooseMesh.h:2002
const std::set< SubdomainID > & meshSubdomains() const
Returns a read-only reference to the set of subdomains currently present in the Mesh.
Definition MooseMesh.C:3235
std::vector< dof_id_type > _max_ids
Maximum integer ID for each extra element integer.
Definition MooseMesh.h:2004
std::vector< dof_id_type > _min_ids
Minimum integer ID for each extra element integer.
Definition MooseMesh.h:2006
void max(const T &r, T &o, Request &req) const
void min(const T &r, T &o, Request &req) const
const Parallel::Communicator & comm() const

Referenced by MooseMesh::update().

◆ buildFiniteVolumeInfo()

void MooseMesh::buildFiniteVolumeInfo ( ) const
inherited

Builds the face and elem info vectors that store meta-data needed for looping over and doing calculations based on mesh faces and elements in a finite volume setting.

This should only be called when finite volume variables are used in the problem or when the face and elem info objects are necessary for functor-based evaluations.

Definition at line 3807 of file MooseMesh.C.

3808{
3809 mooseAssert(!Threads::in_threads,
3810 "This routine has not been implemented for threads. Please query this routine before "
3811 "a threaded region or contact a MOOSE developer to discuss.");
3813
3814 using Keytype = std::pair<const Elem *, unsigned short int>;
3815
3816 // create a map from elem/side --> boundary ids
3817 std::vector<std::tuple<dof_id_type, unsigned short int, boundary_id_type>> side_list =
3819 std::map<Keytype, std::set<boundary_id_type>> side_map;
3820 for (auto & [elem_id, side, bc_id] : side_list)
3821 {
3822 const Elem * elem = _mesh->elem_ptr(elem_id);
3823 Keytype key(elem, side);
3824 auto & bc_set = side_map[key];
3825 bc_set.insert(bc_id);
3826 }
3827
3828 _face_info.clear();
3829 _all_face_info.clear();
3831
3832 _elem_to_elem_info.clear();
3833 _elem_info.clear();
3834
3835 // by performing the element ID comparison check in the below loop, we are ensuring that we never
3836 // double count face contributions. If a face lies along a process boundary, the only process that
3837 // will contribute to both sides of the face residuals/Jacobians will be the process that owns the
3838 // element with the lower ID.
3839 auto begin = getMesh().active_elements_begin();
3840 auto end = getMesh().active_elements_end();
3841
3842 // We prepare a map connecting the Elem* and the corresponding ElemInfo
3843 // for the active elements.
3845 unsigned int num_sides = 0;
3846 for (const Elem * elem : as_range(begin, end))
3847 {
3848 _elem_to_elem_info.emplace(elem->id(), elem);
3849 num_sides += elem->n_sides();
3850 }
3851
3852 // Used to speed up FaceInfo creation:
3853 // - element side builder that caches per type of element
3854 libMesh::ElemSideBuilder side_builder;
3855
3856 _all_face_info.reserve(num_sides / 2);
3857 dof_id_type face_index = 0;
3858 for (const Elem * elem : as_range(begin, end))
3859 {
3860 for (unsigned int side = 0; side < elem->n_sides(); ++side)
3861 {
3862 // get the neighbor element
3863 const Elem * neighbor = elem->neighbor_ptr(side);
3864
3865 // Check if the FaceInfo shall belong to the element. If yes,
3866 // create and initialize the FaceInfo. We need this to ensure that
3867 // we do not duplicate FaceInfo-s.
3868 if (Moose::FV::elemHasFaceInfo(*elem, neighbor))
3869 {
3870 mooseAssert(!neighbor || (neighbor->level() < elem->level() ? neighbor->active() : true),
3871 "If the neighbor is coarser than the element, we expect that the neighbor must "
3872 "be active.");
3873
3874 // We construct the faceInfo using the elementinfo and side index
3875 mooseAssert(elem->default_order() < 4, "Did not expect such high element orders in FV");
3876 _all_face_info.emplace_back(
3877 &_elem_to_elem_info[elem->id()], side, face_index++, side_builder);
3878
3879 auto & fi = _all_face_info.back();
3880
3881 // get all the sidesets that this face is contained in and cache them
3882 // in the face info.
3883 std::set<boundary_id_type> & boundary_ids = fi.boundaryIDs();
3884 boundary_ids.clear();
3885
3886 // We initialize the weights/other information in faceInfo. If the neighbor does not exist
3887 // or is remote (so when we are on some sort of mesh boundary), we initialize the ghost
3888 // cell and use it to compute the weights corresponding to the faceInfo.
3889 if (!neighbor || neighbor == libMesh::remote_elem)
3890 fi.computeBoundaryCoefficients();
3891 else
3892 fi.computeInternalCoefficients(&_elem_to_elem_info[neighbor->id()]);
3893
3894 auto lit = side_map.find(Keytype(&fi.elem(), fi.elemSideID()));
3895 if (lit != side_map.end())
3896 boundary_ids.insert(lit->second.begin(), lit->second.end());
3897
3898 if (fi.neighborPtr())
3899 {
3900 auto rit = side_map.find(Keytype(fi.neighborPtr(), fi.neighborSideID()));
3901 if (rit != side_map.end())
3902 boundary_ids.insert(rit->second.begin(), rit->second.end());
3903 }
3904 }
3905 }
3906 }
3907
3908 // Build the local face info and elem_side to face info maps. We need to do this after
3909 // _all_face_info is finished being constructed because emplace_back invalidates all iterators and
3910 // references if ever the new size exceeds capacity
3912 // heuristic to avoid resizing too much
3913 _face_info.reserve(_all_face_info.size());
3914 for (auto & fi : _all_face_info)
3915 {
3916 const Elem * const elem = &fi.elem();
3917 const auto side = fi.elemSideID();
3918
3919#ifndef NDEBUG
3920 auto pair_it =
3921#endif
3922 _elem_side_to_face_info.emplace(std::make_pair(elem, side), &fi);
3923 mooseAssert(pair_it.second, "We should be adding unique FaceInfo objects.");
3924
3925 // We will add the faces on processor boundaries to the list of face infos on each
3926 // associated processor.
3927 if (fi.elem().processor_id() == this->processor_id() ||
3928 (fi.neighborPtr() && (fi.neighborPtr()->processor_id() == this->processor_id())))
3929 _face_info.push_back(&fi);
3930 }
3931
3932 _elem_info.reserve(nActiveLocalElem());
3933 for (auto & ei : _elem_to_elem_info)
3934 if (ei.second.elem()->processor_id() == this->processor_id())
3935 _elem_info.push_back(&ei.second);
3936}
if(!dmm->_nl) SETERRQ(PETSC_COMM_WORLD
std::unordered_map< dof_id_type, ElemInfo > _elem_to_elem_info
Map connecting elems with their corresponding ElemInfo, we use the element ID as the key.
Definition MooseMesh.h:1766
std::vector< const FaceInfo * > _face_info
Holds only those FaceInfo objects that have processor_id equal to this process's id,...
Definition MooseMesh.h:1778
virtual dof_id_type nActiveLocalElem() const
Definition MooseMesh.h:338
std::unordered_map< std::pair< const Elem *, unsigned int >, FaceInfo * > _elem_side_to_face_info
Map from elem-side pair to FaceInfo.
Definition MooseMesh.h:1782
bool _finite_volume_info_dirty
Definition MooseMesh.h:1785
std::vector< const ElemInfo * > _elem_info
Holds only those ElemInfo objects that have processor_id equal to this process's id,...
Definition MooseMesh.h:1770
std::vector< std::tuple< dof_id_type, unsigned short int, boundary_id_type > > buildActiveSideList() const
Calls BoundaryInfo::build_active_side_list.
Definition MooseMesh.C:3079
processor_id_type processor_id() const
bool elemHasFaceInfo(const Elem &elem, const Elem *const neighbor)
This function infers based on elements if the faceinfo between them belongs to the element or not.
Definition FVUtils.C:21
SimpleRange< IndexType > as_range(const std::pair< IndexType, IndexType > &p)
const RemoteElem * remote_elem

Referenced by MooseMesh::setupFiniteVolumeMeshData().

◆ buildHRefinementAndCoarseningMaps()

void MooseMesh::buildHRefinementAndCoarseningMaps ( Assembly *  assembly)
privateinherited

Definition at line 2325 of file MooseMesh.C.

2326{
2327 std::map<ElemType, Elem *> canonical_elems;
2328
2329 // First, loop over all elements and find a canonical element for each type
2330 // Doing it this way guarantees that this is going to work in parallel
2331 for (const auto & elem : getMesh().element_ptr_range()) // TODO: Thread this
2332 {
2333 ElemType type = elem->type();
2334
2335 if (canonical_elems.find(type) ==
2336 canonical_elems.end()) // If we haven't seen this type of elem before save it
2337 canonical_elems[type] = elem;
2338 else
2339 {
2340 Elem * stored = canonical_elems[type];
2341 if (elem->id() < stored->id()) // Arbitrarily keep the one with a lower id
2342 canonical_elems[type] = elem;
2343 }
2344 }
2345 // Now build the maps using these templates
2346 // Note: This MUST be done NOT threaded!
2347 for (const auto & can_it : canonical_elems)
2348 {
2349 Elem * elem = can_it.second;
2350
2351 // Need to do this just once to get the right qrules put in place
2352 assembly->setCurrentSubdomainID(elem->subdomain_id());
2353 assembly->reinit(elem);
2354 assembly->reinit(elem, 0);
2355 auto && qrule = assembly->writeableQRule();
2356 auto && qrule_face = assembly->writeableQRuleFace();
2357
2358 // Volume to volume projection for refinement
2359 buildRefinementMap(*elem, *qrule, *qrule_face, -1, -1, -1);
2360
2361 // Volume to volume projection for coarsening
2362 buildCoarseningMap(*elem, *qrule, *qrule_face, -1);
2363
2364 // Map the sides of children
2365 for (unsigned int side = 0; side < elem->n_sides(); side++)
2366 {
2367 // Side to side for sides that match parent's sides
2368 buildRefinementMap(*elem, *qrule, *qrule_face, side, -1, side);
2369 buildCoarseningMap(*elem, *qrule, *qrule_face, side);
2370 }
2371
2372 // Child side to parent volume mapping for "internal" child sides
2373 for (unsigned int child = 0; child < elem->n_children(); ++child)
2374 for (unsigned int side = 0; side < elem->n_sides();
2375 ++side) // Assume children have the same number of sides!
2376 if (!elem->is_child_on_side(child, side)) // Otherwise we already computed that map
2377 buildRefinementMap(*elem, *qrule, *qrule_face, -1, child, side);
2378 }
2379}
libMesh::QBase *const & writeableQRule()
Returns the reference to the current quadrature being used.
Definition Assembly.h:232
libMesh::QBase *const & writeableQRuleFace()
Returns the reference to the current quadrature being used on a current face.
Definition Assembly.h:319
void setCurrentSubdomainID(SubdomainID i)
set the current subdomain ID
Definition Assembly.h:415
void reinit(const Elem *elem)
Reinitialize objects (JxW, q_points, ...) for an elements.
Definition Assembly.C:1856
const std::string & type() const
Get the type of this class.
Definition MooseBase.h:93
void buildRefinementMap(const Elem &elem, libMesh::QBase &qrule, libMesh::QBase &qrule_face, int parent_side, int child, int child_side)
Build the refinement map for a given element type.
Definition MooseMesh.C:2486
void buildCoarseningMap(const Elem &elem, libMesh::QBase &qrule, libMesh::QBase &qrule_face, int input_side)
Build the coarsening map for a given element type.
Definition MooseMesh.C:2565

Referenced by MooseMesh::buildRefinementAndCoarseningMaps().

◆ buildLowerDMesh()

void MooseMesh::buildLowerDMesh ( )
privateinherited

Build lower-d mesh for all sides.

Definition at line 668 of file MooseMesh.C.

669{
670 auto & mesh = getMesh();
671
672 if (!mesh.is_serial())
674 "Hybrid finite element method must use replicated mesh.\nCurrently lower-dimensional mesh "
675 "does not support mesh re-partitioning and a debug assertion being hit related with "
676 "neighbors of lower-dimensional element, with distributed mesh.");
677
678 // Lower-D element build requires neighboring element information
679 if (!mesh.is_prepared())
680 mesh.find_neighbors();
681
682 // maximum number of sides of all elements
683 unsigned int max_n_sides = 0;
684
685 // remove existing lower-d element first
686 std::set<Elem *> deleteable_elems;
687 for (auto & elem : mesh.element_ptr_range())
688 if (_lower_d_interior_blocks.count(elem->subdomain_id()) ||
689 _lower_d_boundary_blocks.count(elem->subdomain_id()))
690 deleteable_elems.insert(elem);
691 else if (elem->n_sides() > max_n_sides)
692 max_n_sides = elem->n_sides();
693
694 for (auto & elem : deleteable_elems)
695 mesh.delete_elem(elem);
696 for (const auto & id : _lower_d_interior_blocks)
697 _mesh_subdomains.erase(id);
698 for (const auto & id : _lower_d_boundary_blocks)
699 _mesh_subdomains.erase(id);
702
703 mesh.comm().max(max_n_sides);
704
705 deleteable_elems.clear();
706
707 // get all side types
708 std::set<int> interior_side_types;
709 std::set<int> boundary_side_types;
710 for (const auto & elem : mesh.active_element_ptr_range())
711 for (const auto side : elem->side_index_range())
712 {
713 Elem * neig = elem->neighbor_ptr(side);
714 std::unique_ptr<Elem> side_elem(elem->build_side_ptr(side));
715 if (neig)
716 interior_side_types.insert(side_elem->type());
717 else
718 boundary_side_types.insert(side_elem->type());
719 }
720 mesh.comm().set_union(interior_side_types);
721 mesh.comm().set_union(boundary_side_types);
722
723 // assign block ids for different side types
724 std::map<ElemType, SubdomainID> interior_block_ids;
725 std::map<ElemType, SubdomainID> boundary_block_ids;
726 // we assume this id is not used by the mesh
728 for (const auto & tpid : interior_side_types)
729 {
730 const auto type = ElemType(tpid);
731 mesh.set_subdomain_name(
732 id, "INTERNAL_SIDE_LOWERD_SUBDOMAIN_" + Utility::enum_to_string(type), true);
733 interior_block_ids[type] = id;
734 _lower_d_interior_blocks.insert(id);
735 if (_mesh_subdomains.count(id) > 0)
736 mooseError("Trying to add a mesh block with id ", id, " that has existed in the mesh");
737 _mesh_subdomains.insert(id);
738 --id;
739 }
740 for (const auto & tpid : boundary_side_types)
741 {
742 const auto type = ElemType(tpid);
743 mesh.set_subdomain_name(
744 id, "BOUNDARY_SIDE_LOWERD_SUBDOMAIN_" + Utility::enum_to_string(type), true);
745 boundary_block_ids[type] = id;
746 _lower_d_boundary_blocks.insert(id);
747 if (_mesh_subdomains.count(id) > 0)
748 mooseError("Trying to add a mesh block with id ", id, " that has existed in the mesh");
749 _mesh_subdomains.insert(id);
750 --id;
751 }
752
753 dof_id_type max_elem_id = mesh.max_elem_id();
754 unique_id_type max_unique_id = mesh.parallel_max_unique_id();
755
756 std::vector<Elem *> side_elems;
758 for (const auto & elem : mesh.active_element_ptr_range())
759 {
760 // skip existing lower-d elements
761 if (elem->interior_parent())
762 continue;
763
764 for (const auto side : elem->side_index_range())
765 {
766 Elem * neig = elem->neighbor_ptr(side);
767
768 bool build_side = false;
769 if (!neig)
770 build_side = true;
771 else
772 {
773 mooseAssert(!neig->is_remote(), "We error if the mesh is not serial");
774 if (!neig->active())
775 build_side = true;
776 else if (neig->level() == elem->level() && elem->id() < neig->id())
777 build_side = true;
778 }
779
780 if (build_side)
781 {
782 std::unique_ptr<Elem> side_elem(elem->build_side_ptr(side));
783
784 // The side will be added with the same processor id as the parent.
785 side_elem->processor_id() = elem->processor_id();
786
787 // Add subdomain ID
788 if (neig)
789 side_elem->subdomain_id() = interior_block_ids.at(side_elem->type());
790 else
791 side_elem->subdomain_id() = boundary_block_ids.at(side_elem->type());
792
793 // set ids consistently across processors (these ids will be temporary)
794 side_elem->set_id(max_elem_id + elem->id() * max_n_sides + side);
795 side_elem->set_unique_id(max_unique_id + elem->id() * max_n_sides + side);
796
797 // Also assign the side's interior parent, so it is always
798 // easy to figure out the Elem we came from.
799 // Note: the interior parent could be a ghost element.
800 side_elem->set_interior_parent(elem);
801
802 side_elems.push_back(side_elem.release());
803
804 // add link between higher d element to lower d element
805 auto pair = std::make_pair(elem, side);
806 auto link = std::make_pair(pair, side_elems.back());
807 auto ilink = std::make_pair(side_elems.back(), side);
810 }
811 }
812 }
813
814 // finally, add the lower-dimensional element to the mesh
815 // Note: lower-d interior element will exist on a processor if its associated interior
816 // parent exists on a processor whether or not being a ghost. Lower-d elements will
817 // get its interior parent's processor id.
818 for (auto & elem : side_elems)
819 mesh.add_elem(elem);
820
821 // we do all the stuff in prepare_for_use such as renumber_nodes_and_elements(),
822 // update_parallel_id_counts(), cache_elem_dims(), etc. except partitioning here.
823 const bool skip_partitioning_old = mesh.skip_partitioning();
824 mesh.skip_partitioning(true);
825 // Finding neighbors is ambiguous for lower-dimensional elements on interior faces
826 mesh.allow_find_neighbors(false);
827 mesh.prepare_for_use();
828 mesh.skip_partitioning(skip_partitioning_old);
829}
unsigned int count
Definition MortarUtils.C:53
std::unordered_map< std::pair< const Elem *, unsigned short int >, const Elem * > _higher_d_elem_side_to_lower_d_elem
Holds a map from a high-order element side to its corresponding lower-d element.
Definition MooseMesh.h:1973
std::set< SubdomainID > _mesh_subdomains
A set of subdomain IDs currently present in the mesh.
Definition MooseMesh.h:1680
std::set< SubdomainID > _lower_d_interior_blocks
Mesh blocks for interior lower-d elements in different types.
Definition MooseMesh.h:1968
std::unordered_map< const Elem *, unsigned short int > _lower_d_elem_to_higher_d_elem_side
Definition MooseMesh.h:1974
static constexpr subdomain_id_type invalid_subdomain_id
MeshBase & mesh
std::string enum_to_string(const T e)
uint8_t unique_id_type

Referenced by MooseMesh::init().

◆ buildMesh()

void MFEMMesh::buildMesh ( )
finaloverridevirtualinherited

Must be overridden by child classes.

This is where the Mesh object is actually created and filled in.

Implements MooseMesh.

Definition at line 74 of file MFEMMesh.C.

75{
76 TIME_SECTION("buildMesh", 2, "Building MFEM Mesh");
77
78 // Build the MFEM ParMesh from a serial MFEM mesh
79 mfem::Mesh mfem_ser_mesh = buildSerialMFEMMesh();
80
81 if (isParamSetByUser("serial_refine") && isParamSetByUser("uniform_refine"))
82 paramError("serial_refine",
83 "Cannot set both serial_refine and uniform_refine at the same time.");
84
85 uniformRefinement(mfem_ser_mesh,
86 isParamSetByUser("serial_refine") ? getParam<unsigned int>("serial_refine")
87 : getParam<unsigned int>("uniform_refine"));
88
89 // MFEM supports load balancing of parallel non-conforming meshes
90 // with a space-filling curve partitioning, and we can improve it
91 // by re-ordering the mesh. For now, we only support the Hilbert
92 // ordering, although there is one other option.
93 if (getParam<bool>("reorder_mesh"))
94 {
95 mfem::Array<int> ordering;
96 mfem_ser_mesh.GetHilbertElementOrdering(ordering);
97 mfem_ser_mesh.ReorderElements(ordering);
98 }
99
100 // Make sure mesh is in non-conforming mode to enable local refinement of
101 // quadrilaterals/hexahedra (c.f. MFEM example 6p). The argument (true/false)
102 // determines whether a simplex mesh is considered to be non-conforming.
103 if (getParam<bool>("nonconforming"))
104 mfem_ser_mesh.EnsureNCMesh(true);
105
106 _mfem_par_mesh = std::make_shared<mfem::ParMesh>(this->comm().get(), mfem_ser_mesh);
107
108 // Perform parallel refinements
109 uniformRefinement(*_mfem_par_mesh, getParam<unsigned int>("parallel_refine"));
110
111 if (isParamSetByUser("displacement"))
112 _mesh_displacement_variable.emplace(getParam<std::string>("displacement"));
113
114 // Build a dummy MOOSE mesh to enable this class to work with other MOOSE classes.
116}
std::optional< std::string > _mesh_displacement_variable
Holds name of variable used for mesh displacement, if set.
Definition MFEMMesh.h:95
void uniformRefinement(mfem::Mesh &mesh, const unsigned int nref) const
Performs a uniform refinement on the chosen mesh nref times.
Definition MFEMMesh.C:154
virtual mfem::Mesh buildSerialMFEMMesh()=0
Build and return the serial mfem::Mesh for this object.
void buildDummyMooseMesh()
Builds a dimension-compatible libMesh placeholder after initializing the MFEM mesh.
Definition MFEMMesh.C:143
std::shared_ptr< mfem::ParMesh > _mfem_par_mesh
Smart pointer to mfem::ParMesh object.
Definition MFEMMesh.h:101
void paramError(const std::string &param, Args... args) const
Emits an error prefixed with the file and line number of the given param (from the input file) along ...
Definition MooseBase.h:457
bool isParamSetByUser(const std::string &name) const
Test if the supplied parameter is set by a user, as opposed to not set or set to default.
Definition MooseBase.h:205
const T & getParam(const std::string &name) const
Retrieve a parameter for the object.
Definition MooseBase.h:406
const Elem & get(const ElemType type_in)

◆ buildMeshBaseObject()

std::unique_ptr< MeshBase > MooseMesh::buildMeshBaseObject ( unsigned int  dim = libMesh::invalid_uint)
inherited

Method to construct a libMesh::MeshBase object that is normally set and used by the MooseMesh object during the "init()" phase.

If the parameter dim is not provided, then its value will be taken from the input file mesh block.

Definition at line 2873 of file MooseMesh.C.

2874{
2875 std::unique_ptr<MeshBase> mesh;
2877 mesh = buildTypedMesh<DistributedMesh>(dim);
2878 else
2879 mesh = buildTypedMesh<ReplicatedMesh>(dim);
2880
2881 return mesh;
2882}
bool _use_distributed_mesh
False by default.
Definition MooseMesh.h:1591

Referenced by MeshGenerator::buildMeshBaseObject(), and MooseMesh::init().

◆ buildNodeList()

void MooseMesh::buildNodeList ( )
inherited

Calls BoundaryInfo::build_node_list()/build_side_list() and makes separate copies of Nodes/Elems in those lists.

Allocates memory which is cleaned up in the freeBndNodes()/freeBndElems() functions.

Definition at line 1036 of file MooseMesh.C.

1037{
1038 TIME_SECTION("buildNodeList", 5, "Building Node List");
1039
1040 freeBndNodes();
1041
1042 auto bc_tuples = getMesh().get_boundary_info().build_node_list();
1043
1044 int n = bc_tuples.size();
1045 _bnd_nodes.clear();
1046 _bnd_nodes.reserve(n);
1047 for (const auto & t : bc_tuples)
1048 {
1049 auto node_id = std::get<0>(t);
1050 auto bc_id = std::get<1>(t);
1051
1052 _bnd_nodes.push_back(new BndNode(getMesh().node_ptr(node_id), bc_id));
1053 _node_set_nodes[bc_id].push_back(node_id);
1054 _bnd_node_ids[bc_id].insert(node_id);
1055 }
1056
1057 _bnd_nodes.reserve(_bnd_nodes.size() + _extra_bnd_nodes.size());
1058 for (unsigned int i = 0; i < _extra_bnd_nodes.size(); i++)
1059 {
1060 BndNode * bnode = new BndNode(_extra_bnd_nodes[i]._node, _extra_bnd_nodes[i]._bnd_id);
1061 _bnd_nodes.push_back(bnode);
1062 _bnd_node_ids[std::get<1>(bc_tuples[i])].insert(_extra_bnd_nodes[i]._node->id());
1063 }
1064
1065 // This sort is here so that boundary conditions are always applied in the same order
1066 std::sort(_bnd_nodes.begin(), _bnd_nodes.end(), BndNodeCompare());
1067}
Helper class for sorting Boundary Nodes so that we always get the same order of application for bound...
Definition MooseMesh.C:1013
std::map< boundary_id_type, std::vector< dof_id_type > > _node_set_nodes
list of nodes that belongs to a specified nodeset: indexing [nodeset_id] -> [array of node ids]
Definition MooseMesh.h:1720
void freeBndNodes()
Definition MooseMesh.C:366

Referenced by MooseMesh::update().

◆ buildNodeListFromSideList()

void MooseMesh::buildNodeListFromSideList ( )
inherited

Calls BoundaryInfo::build_node_list_from_side_list().

Definition at line 3012 of file MooseMesh.C.

3013{
3014 auto & boundary_info = getMesh().get_boundary_info();
3015
3017 {
3018 const std::set<boundary_id_type> & side_bcids = boundary_info.get_side_boundary_ids();
3019
3021 {
3022 // Don't want to use auto here - the rbegin trick relies on a
3023 // sorted set and we want the compiler to scream if libMesh ever
3024 // switches type
3025 const std::set<boundary_id_type> & node_bcids = boundary_info.get_node_boundary_ids();
3026
3027 // If we've got a reasonable largest BC id, we can just use the
3028 // subsequent unused ones
3029 boundary_id_type next_bcid = 0;
3030 if (!node_bcids.empty())
3031 next_bcid = std::max(next_bcid, cast_int<boundary_id_type>(*node_bcids.rbegin() + 1));
3032 if (!side_bcids.empty())
3033 next_bcid = std::max(next_bcid, cast_int<boundary_id_type>(*side_bcids.rbegin() + 1));
3034
3035 // We need all processors to agree on the id to use, even when
3036 // each only sees the bcids on their own portions of a
3037 // distributed mesh.
3038 _communicator.max(next_bcid);
3039
3040 // If we've got an unreasonably high largest BC id, we should
3041 // probably just search for unused ones with moderate values, so we
3042 // don't risk wrapping.
3043 if (next_bcid > 1000 || next_bcid <= 0)
3044 next_bcid = 1000;
3045
3046 // If any side bcid is already a node bcid with a different name,
3047 // that's a different boundary condition that we need to reassign
3048 // rather than overwrite or merge to.
3049 for (auto bcid : side_bcids)
3050 if (node_bcids.count(bcid) &&
3051 (boundary_info.get_sideset_name(bcid) != boundary_info.get_nodeset_name(bcid)))
3052 {
3053 boundary_info.renumber_node_id(bcid, next_bcid);
3054 do
3055 {
3056 ++next_bcid;
3057 } while (node_bcids.count(next_bcid) || side_bcids.count(next_bcid));
3058 }
3059 }
3060
3061 // For any side bcid that has a name, make sure that our new node
3062 // bcid is given the same name. We need to iterate over the
3063 // actual name map (which is global) here, not over side_bcids
3064 // (which only includes local ids on a distributed mesh).
3065 for (auto & [id, name] : boundary_info.get_sideset_name_map())
3066 boundary_info.nodeset_name(id) = name;
3067
3068 boundary_info.build_node_list_from_side_list();
3069 }
3070}
const std::string & name() const
Get the name of the class.
Definition MooseBase.h:103
bool _displace_node_list_by_side_list
Whether or not to displace unrelated nodesets by nodesets constructed from sidesets.
Definition MooseMesh.h:1984
bool _construct_node_list_from_side_list
Whether or not to allow generation of nodesets from sidesets.
Definition MooseMesh.h:1980
const Parallel::Communicator & _communicator
int8_t boundary_id_type

Referenced by MooseMesh::prepare(), and MooseMesh::update().

◆ buildPeriodicNodeMap()

void MooseMesh::buildPeriodicNodeMap ( std::multimap< dof_id_type, dof_id_type > &  periodic_node_map,
unsigned int  var_number,
libMesh::PeriodicBoundaries *  pbs 
) const
inherited

This routine builds a multimap of boundary ids to matching boundary ids across all periodic boundaries in the system.

Definition at line 1771 of file MooseMesh.C.

1774{
1775 TIME_SECTION("buildPeriodicNodeMap", 5);
1776
1777 // clear existing map
1778 periodic_node_map.clear();
1779
1780 // get periodic nodes
1781 std::vector<PeriodicNodeInfo> periodic_nodes;
1782 for (const auto & t : getMesh().get_boundary_info().build_node_list())
1783 {
1784 // unfortunately libMesh does not give us a pointer, so we have to look it up ourselves
1785 auto node = _mesh->node_ptr(std::get<0>(t));
1786 mooseAssert(node != nullptr,
1787 "libMesh::BoundaryInfo::build_node_list() returned an ID for a non-existing node");
1788 auto bc_id = std::get<1>(t);
1789 periodic_nodes.emplace_back(node, bc_id);
1790 }
1791
1792 // sort by boundary id
1793 std::sort(periodic_nodes.begin(),
1794 periodic_nodes.end(),
1795 [](const PeriodicNodeInfo & a, const PeriodicNodeInfo & b) -> bool
1796 { return a.second > b.second; });
1797
1798 // build kd-tree
1799 using KDTreeType = nanoflann::KDTreeSingleIndexAdaptor<
1800 nanoflann::L2_Simple_Adaptor<Real, PointListAdaptor<PeriodicNodeInfo>, Real, std::size_t>,
1802 LIBMESH_DIM,
1803 std::size_t>;
1804 const unsigned int max_leaf_size = 20; // slightly affects runtime
1805 auto point_list =
1806 PointListAdaptor<PeriodicNodeInfo>(periodic_nodes.begin(), periodic_nodes.end());
1807 auto kd_tree = std::make_unique<KDTreeType>(
1808 LIBMESH_DIM, point_list, nanoflann::KDTreeSingleIndexAdaptorParams(max_leaf_size));
1809 mooseAssert(kd_tree != nullptr, "KDTree was not properly initialized.");
1810 kd_tree->buildIndex();
1811
1812 // data structures for kd-tree search
1813 nanoflann::SearchParameters search_params;
1814 std::vector<nanoflann::ResultItem<std::size_t, Real>> ret_matches;
1815
1816 // iterate over periodic nodes (boundary ids are in contiguous blocks)
1817 libMesh::PeriodicBoundaryBase * periodic = nullptr;
1818 BoundaryID current_bc_id = BoundaryInfo::invalid_id;
1819 for (auto & pair : periodic_nodes)
1820 {
1821 // entering a new block of boundary IDs
1822 if (pair.second != current_bc_id)
1823 {
1824 current_bc_id = pair.second;
1825 periodic = pbs->boundary(current_bc_id);
1826 if (periodic && !periodic->is_my_variable(var_number))
1827 periodic = nullptr;
1828 }
1829
1830 // variable is not periodic at this node, skip
1831 if (!periodic)
1832 continue;
1833
1834 // clear result buffer
1835 ret_matches.clear();
1836
1837 // id of the current node
1838 const auto id = pair.first->id();
1839
1840 // position where we expect a periodic partner for the current node and boundary
1841 Point search_point = periodic->get_corresponding_pos(*pair.first);
1842
1843 // search at the expected point
1844 kd_tree->radiusSearch(&(search_point)(0), libMesh::TOLERANCE, ret_matches, search_params);
1845 for (auto & match_pair : ret_matches)
1846 {
1847 const auto & match = periodic_nodes[match_pair.first];
1848 // add matched node if the boundary id is the corresponding id in the periodic pair
1849 if (match.second == periodic->pairedboundary)
1850 periodic_node_map.emplace(id, match.first->id());
1851 }
1852 }
1853}
boundary_id_type BoundaryID
std::pair< const Node *, BoundaryID > PeriodicNodeInfo
Helper type for building periodic node maps.
Definition MooseMesh.h:1214
PeriodicBoundaryBase * boundary(boundary_id_type id)
bool is_my_variable(unsigned int var_num) const
virtual Point get_corresponding_pos(const Point &pt) const=0
boundary_id_type pairedboundary
static constexpr Real TOLERANCE
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
SearchParams SearchParameters

◆ buildPeriodicNodeSets()

void MooseMesh::buildPeriodicNodeSets ( std::map< BoundaryID, std::set< dof_id_type > > &  periodic_node_sets,
unsigned int  var_number,
libMesh::PeriodicBoundaries *  pbs 
) const
inherited

This routine builds a datastructure of node ids organized by periodic boundary ids.

Definition at line 1856 of file MooseMesh.C.

1859{
1860 TIME_SECTION("buildPeriodicNodeSets", 5);
1861
1862 periodic_node_sets.clear();
1863
1864 // Loop over all the boundary nodes adding the periodic nodes to the appropriate set
1865 for (const auto & t : getMesh().get_boundary_info().build_node_list())
1866 {
1867 auto node_id = std::get<0>(t);
1868 auto bc_id = std::get<1>(t);
1869
1870 // Is this current node on a known periodic boundary?
1871 if (periodic_node_sets.find(bc_id) != periodic_node_sets.end())
1872 periodic_node_sets[bc_id].insert(node_id);
1873 else // This still might be a periodic node but we just haven't seen this boundary_id yet
1874 {
1875 const libMesh::PeriodicBoundaryBase * periodic = pbs->boundary(bc_id);
1876 if (periodic && periodic->is_my_variable(var_number))
1877 periodic_node_sets[bc_id].insert(node_id);
1878 }
1879 }
1880}

◆ buildPRefinementAndCoarseningMaps()

void MooseMesh::buildPRefinementAndCoarseningMaps ( Assembly *  assembly)
inherited

Definition at line 2382 of file MooseMesh.C.

2383{
2388
2389 std::map<ElemType, std::pair<Elem *, unsigned int>> elems_and_max_p_level;
2390
2391 for (const auto & elem : getMesh().active_element_ptr_range())
2392 {
2393 const auto type = elem->type();
2394 auto & [picked_elem, max_p_level] = elems_and_max_p_level[type];
2395 if (!picked_elem)
2396 picked_elem = elem;
2397 max_p_level = std::max(max_p_level, elem->p_level());
2398 }
2399
2400 // The only requirement on the FEType is that it can be arbitrarily p-refined
2401 const FEType p_refinable_fe_type(CONSTANT, libMesh::MONOMIAL);
2402 std::vector<Point> volume_ref_points_coarse, volume_ref_points_fine, face_ref_points_coarse,
2403 face_ref_points_fine;
2404 std::vector<unsigned int> p_levels;
2405
2406 for (auto & [elem_type, elem_p_level_pair] : elems_and_max_p_level)
2407 {
2408 auto & [moose_elem, max_p_level] = elem_p_level_pair;
2409 const auto dim = moose_elem->dim();
2410 // Need to do this just once to get the right qrules put in place
2411 assembly->setCurrentSubdomainID(moose_elem->subdomain_id());
2412 assembly->reinit(moose_elem);
2413 assembly->reinit(moose_elem, 0);
2414 auto & qrule = assembly->writeableQRule();
2415 auto & qrule_face = assembly->writeableQRuleFace();
2416
2418 ReplicatedMesh mesh(self_comm);
2419 mesh.set_mesh_dimension(dim);
2420 for (const auto & nd : moose_elem->node_ref_range())
2421 mesh.add_point(nd);
2422
2423 Elem * const elem = mesh.add_elem(Elem::build(elem_type).release());
2424 for (const auto i : elem->node_index_range())
2425 elem->set_node(i, mesh.node_ptr(i));
2426
2427 std::unique_ptr<FEBase> fe_face(FEBase::build(dim, p_refinable_fe_type));
2428 fe_face->get_phi();
2429 const auto & face_phys_points = fe_face->get_xyz();
2430 fe_face->attach_quadrature_rule(qrule_face);
2431
2432 qrule->init(*elem);
2433 volume_ref_points_coarse = qrule->get_points();
2434 fe_face->reinit(elem, (unsigned int)0);
2435 libMesh::FEMap::inverse_map(dim, elem, face_phys_points, face_ref_points_coarse);
2436
2437 p_levels.resize(max_p_level + 1);
2438 std::iota(p_levels.begin(), p_levels.end(), 0);
2439 libMesh::MeshRefinement mesh_refinement(mesh);
2440
2441 for (const auto p_level : p_levels)
2442 {
2443 mesh_refinement.uniformly_p_refine(1);
2444 qrule->init(*elem);
2445 volume_ref_points_fine = qrule->get_points();
2446 fe_face->reinit(elem, (unsigned int)0);
2447 libMesh::FEMap::inverse_map(dim, elem, face_phys_points, face_ref_points_fine);
2448
2449 const auto map_key = std::make_pair(elem_type, p_level);
2450 auto & volume_refine_map = _elem_type_to_p_refinement_map[map_key];
2451 auto & face_refine_map = _elem_type_to_p_refinement_side_map[map_key];
2452 auto & volume_coarsen_map = _elem_type_to_p_coarsening_map[map_key];
2453 auto & face_coarsen_map = _elem_type_to_p_coarsening_side_map[map_key];
2454
2455 auto fill_maps = [this](const auto & coarse_ref_points,
2456 const auto & fine_ref_points,
2457 auto & coarsen_map,
2458 auto & refine_map)
2459 {
2460 mapPoints(fine_ref_points, coarse_ref_points, refine_map);
2461 mapPoints(coarse_ref_points, fine_ref_points, coarsen_map);
2462 };
2463
2464 fill_maps(
2465 volume_ref_points_coarse, volume_ref_points_fine, volume_coarsen_map, volume_refine_map);
2466 fill_maps(face_ref_points_coarse, face_ref_points_fine, face_coarsen_map, face_refine_map);
2467
2468 // With this level's maps filled our fine points now become our coarse points
2469 volume_ref_points_fine.swap(volume_ref_points_coarse);
2470 face_ref_points_fine.swap(face_ref_points_coarse);
2471 }
2472 }
2473}
unsigned int dim
void mapPoints(const std::vector< Point > &from, const std::vector< Point > &to, std::vector< QpMap > &qp_map)
Find the closest points that map "from" to "to" and fill up "qp_map".
Definition MooseMesh.C:2604
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_coarsening_map
Definition MooseMesh.h:1947
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_coarsening_side_map
Definition MooseMesh.h:1949
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_refinement_side_map
Definition MooseMesh.h:1923
std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > _elem_type_to_p_refinement_map
Definition MooseMesh.h:1921
static Point inverse_map(const unsigned int dim, const Elem *elem, const Point &p, const Real tolerance=TOLERANCE, const bool secure=true, const bool extra_checks=true)

Referenced by MooseMesh::buildRefinementAndCoarseningMaps(), and FEProblemBase::meshChanged().

◆ buildRefinementAndCoarseningMaps()

void MooseMesh::buildRefinementAndCoarseningMaps ( Assembly *  assembly)
inherited

Create the refinement and coarsening maps necessary for projection of stateful material properties when using adaptivity.

Parameters
assemblyPointer to the Assembly object for this Mesh.

Definition at line 2476 of file MooseMesh.C.

2477{
2478 TIME_SECTION("buildRefinementAndCoarseningMaps", 5, "Building Refinement And Coarsening Maps");
2479 if (doingPRefinement())
2481 else
2483}
bool doingPRefinement() const
Query whether the kind of adaptivity we're doing includes p-refinement.
Definition MooseMesh.h:1507
void buildHRefinementAndCoarseningMaps(Assembly *assembly)
Definition MooseMesh.C:2325
void buildPRefinementAndCoarseningMaps(Assembly *assembly)
Definition MooseMesh.C:2382

◆ buildRefinementMap()

void MooseMesh::buildRefinementMap ( const Elem &  elem,
libMesh::QBase &  qrule,
libMesh::QBase &  qrule_face,
int  parent_side,
int  child,
int  child_side 
)
privateinherited

Build the refinement map for a given element type.

This will tell you what quadrature points to copy from and to for stateful material properties on newly created elements from Adaptivity.

Parameters
elemThe element that represents the element type you need the refinement map for.
qruleThe quadrature rule in use.
qrule_faceThe current face quadrature rule
parent_sideThe side of the parent to map (-1 if not mapping parent sides)
childThe child number (-1 if not mapping child internal sides)
child_sideThe side number of the child (-1 if not mapping sides)

Definition at line 2486 of file MooseMesh.C.

2492{
2493 TIME_SECTION("buildRefinementMap", 5, "Building Refinement Map");
2494
2495 if (child == -1) // Doing volume mapping or parent side mapping
2496 {
2497 mooseAssert(parent_side == child_side,
2498 "Parent side must match child_side if not passing a specific child!");
2499
2500 std::pair<int, ElemType> the_pair(parent_side, elem.type());
2501
2503 mooseError("Already built a qp refinement map!");
2504
2505 std::vector<std::pair<unsigned int, QpMap>> coarsen_map;
2506 std::vector<std::vector<QpMap>> & refinement_map = _elem_type_to_refinement_map[the_pair];
2508 &elem, qrule, qrule_face, refinement_map, coarsen_map, parent_side, child, child_side);
2509 }
2510 else // Need to map a child side to parent volume qps
2511 {
2512 std::pair<int, int> child_pair(child, child_side);
2513
2516 _elem_type_to_child_side_refinement_map[elem.type()].find(child_pair) !=
2518 mooseError("Already built a qp refinement map!");
2519
2520 std::vector<std::pair<unsigned int, QpMap>> coarsen_map;
2521 std::vector<std::vector<QpMap>> & refinement_map =
2524 &elem, qrule, qrule_face, refinement_map, coarsen_map, parent_side, child, child_side);
2525 }
2526}
std::map< std::pair< int, libMesh::ElemType >, std::vector< std::vector< QpMap > > > _elem_type_to_refinement_map
Holds mappings for volume to volume and parent side to child side Map key:
Definition MooseMesh.h:1918
std::map< libMesh::ElemType, std::map< std::pair< int, int >, std::vector< std::vector< QpMap > > > > _elem_type_to_child_side_refinement_map
Holds mappings for "internal" child sides to parent volume. The second key is (child,...
Definition MooseMesh.h:1927

Referenced by MooseMesh::buildHRefinementAndCoarseningMaps().

◆ buildSerialMFEMMesh()

mfem::Mesh MFEMMeshGeneratorMesh::buildSerialMFEMMesh ( )
overrideprotectedvirtual

Build and return the serial mfem::Mesh for this object.

Implements MFEMMesh.

Definition at line 45 of file MFEMMeshGeneratorMesh.C.

46{
47 if (!hasMeshBase())
48 mooseError("MFEMMeshGeneratorMesh: the mesh base has not been set. "
49 "Ensure MFEM mesh generators are present in the input file.");
50
51 auto * carrier = dynamic_cast<MFEMMeshCarrier *>(&getMesh());
52 if (!carrier)
53 mooseError("MFEMMeshGeneratorMesh requires the final mesh generator to produce an MFEM mesh. "
54 "If you are using libMesh generators, use MeshGeneratorMesh instead.");
55
56 return std::move(*carrier->releaseMFEMMesh());
57}
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
Definition MooseError.h:311
A thin libMesh::ReplicatedMesh subclass that carries an mfem::Mesh through the MeshGenerator pipeline...
bool hasMeshBase() const
Whether mesh base object was constructed or not.
Definition MooseMesh.h:1244

◆ buildSideList()

std::vector< std::tuple< dof_id_type, unsigned short int, boundary_id_type > > MooseMesh::buildSideList ( )
inherited

Calls BoundaryInfo::build_side_list(), returns a std::vector of (elem-id, side-id, bc-id) tuples.

Definition at line 3073 of file MooseMesh.C.

3074{
3075 return getMesh().get_boundary_info().build_side_list();
3076}

Referenced by InterfaceQpUserObjectBase::initialSetup().

◆ buildTypedMesh()

template<typename T >
std::unique_ptr< T > MooseMesh::buildTypedMesh ( unsigned int  dim = libMesh::invalid_uint)
inherited

Shortcut method to construct a unique pointer to a libMesh mesh instance.

The created derived-from-MeshBase object will have its allow_remote_element_removal flag set to whatever our value is. We will also attach any geometric RelationshipManagers that have been requested by our simulation objects to the MeshBase object. If the parameter dim is not provided, then its value will be taken from the input file mesh block.

Definition at line 2264 of file MooseMesh.h.

2265{
2266 // If the requested mesh type to build doesn't match our current value for _use_distributed_mesh,
2267 // then we need to make sure to make our state consistent because other objects, like the periodic
2268 // boundary condition action, will be querying isDistributedMesh()
2269 if (_use_distributed_mesh != std::is_same<T, libMesh::DistributedMesh>::value)
2270 {
2271 if (getMeshPtr())
2272 mooseError("A MooseMesh object is being asked to build a libMesh mesh that is a different "
2273 "parallel type than the libMesh mesh that it wraps. This is not allowed. Please "
2274 "create another MooseMesh object to wrap the new libMesh mesh");
2275 setParallelType(MeshType<T>::value);
2276 }
2277
2278 if (dim == libMesh::invalid_uint)
2279 {
2280 if (isParamValid("dim"))
2281 dim = getParam<MooseEnum>("dim");
2282 else
2283 // Legacy selection of the default for the 'dim' parameter
2284 dim = 1;
2285 }
2286
2287 auto mesh = std::make_unique<T>(_communicator, dim);
2288
2289 if (!getParam<bool>("allow_renumbering"))
2290 mesh->allow_renumbering(false);
2291
2292 mesh->allow_remote_element_removal(_allow_remote_element_removal);
2293 _app.attachRelationshipManagers(*mesh, *this);
2294
2296 {
2297 // Check of partitioner is supplied (not allowed if custom partitioner is used)
2298 if (!parameters().isParamSetByAddParam("partitioner"))
2299 mooseError("If partitioner block is provided, partitioner keyword cannot be used!");
2300 // Set custom partitioner
2301 if (!_custom_partitioner.get())
2302 mooseError("Custom partitioner requested but not set!");
2303 mesh->partitioner() = _custom_partitioner->clone();
2304 }
2305 else
2307
2308 return mesh;
2309}
void attachRelationshipManagers(Moose::RelationshipManagerType rm_type, bool attach_geometric_rm_final=false)
Attach the relationship managers of the given type Note: Geometric relationship managers that are sup...
Definition MooseApp.C:3209
bool isParamValid(const std::string &name) const
Test if the supplied parameter is valid.
Definition MooseBase.h:199
bool _custom_partitioner_requested
Definition MooseMesh.h:1609
const MeshBase * getMeshPtr() const
Definition MooseMesh.C:3506
std::unique_ptr< libMesh::Partitioner > _custom_partitioner
The custom partitioner.
Definition MooseMesh.h:1608
void setPartitionerHelper(MeshBase *mesh=nullptr)
Definition MooseMesh.C:3692
MooseApp & _app
The MOOSE application this is associated with.
Definition MooseBase.h:375
const unsigned int invalid_uint

Referenced by MeshGenerator::buildDistributedMesh(), and MeshGenerator::buildReplicatedMesh().

◆ cacheChangedLists()

void MooseMesh::cacheChangedLists ( )
inherited

Cache information about what elements were refined and coarsened in the previous step.

Definition at line 924 of file MooseMesh.C.

925{
926 TIME_SECTION("cacheChangedLists", 5, "Caching Changed Lists");
927
928 ConstElemRange elem_range(getMesh().local_elements_begin(), getMesh().local_elements_end(), 1);
929 CacheChangedListsThread cclt(*this);
930 Threads::parallel_reduce(elem_range, cclt);
931
933
934 _refined_elements = std::make_unique<ConstElemPointerRange>(cclt._refined_elements.begin(),
935 cclt._refined_elements.end());
936 _coarsened_elements = std::make_unique<ConstElemPointerRange>(cclt._coarsened_elements.begin(),
937 cclt._coarsened_elements.end());
938 _coarsened_element_children = cclt._coarsened_element_children;
939}
std::map< const Elem *, std::vector< const Elem * > > _coarsened_element_children
Map of Parent elements to child elements for elements that were just coarsened.
Definition MooseMesh.h:1653
std::unique_ptr< ConstElemPointerRange > _coarsened_elements
The elements that were just coarsened.
Definition MooseMesh.h:1646
std::unique_ptr< ConstElemPointerRange > _refined_elements
The elements that were just refined.
Definition MooseMesh.h:1643
void parallel_reduce(const Range &range, Body &body, unsigned int n_threads=libMesh::n_threads())
StoredRange< MeshBase::const_element_iterator, const Elem * > ConstElemRange

Referenced by FEProblemBase::meshChanged().

◆ cacheFaceInfoVariableOwnership()

void MooseMesh::cacheFaceInfoVariableOwnership ( ) const
inherited

Cache if variables live on the elements connected by the FaceInfo objects.

The following paragraph of code assigns the VarFaceNeighbors

  1. The face is an internal face of this variable if it is defined on the elem and neighbor subdomains
  2. The face is an invalid face of this variable if it is neither defined on the elem nor the neighbor subdomains
  3. If not 1. or 2. then this is a boundary for this variable and the else clause applies

Definition at line 4025 of file MooseMesh.C.

4026{
4027 mooseAssert(
4029 "Performing writes to faceInfo variable association maps. This must be done unthreaded!");
4030
4031 const unsigned int num_eqs = _app.feProblem().es().n_systems();
4032
4033 auto face_lambda = [this](const SubdomainID elem_subdomain_id,
4034 const SubdomainID neighbor_subdomain_id,
4035 SystemBase & sys,
4036 std::vector<std::vector<FaceInfo::VarFaceNeighbors>> & face_type_vector)
4037 {
4038 face_type_vector[sys.number()].resize(sys.nVariables(), FaceInfo::VarFaceNeighbors::NEITHER);
4039 const auto & variables = sys.getVariables(0);
4040
4041 for (const auto & var : variables)
4042 {
4043 const unsigned int var_num = var->number();
4044 const unsigned int sys_num = var->sys().number();
4045 std::set<SubdomainID> var_subdomains = var->blockIDs();
4055 bool var_defined_elem = var_subdomains.find(elem_subdomain_id) != var_subdomains.end();
4056 bool var_defined_neighbor =
4057 var_subdomains.find(neighbor_subdomain_id) != var_subdomains.end();
4058 if (var_defined_elem && var_defined_neighbor)
4059 face_type_vector[sys_num][var_num] = FaceInfo::VarFaceNeighbors::BOTH;
4060 else if (!var_defined_elem && !var_defined_neighbor)
4061 face_type_vector[sys_num][var_num] = FaceInfo::VarFaceNeighbors::NEITHER;
4062 else
4063 {
4064 // this is a boundary face for this variable, set elem or neighbor
4065 if (var_defined_elem)
4066 face_type_vector[sys_num][var_num] = FaceInfo::VarFaceNeighbors::ELEM;
4067 else if (var_defined_neighbor)
4068 face_type_vector[sys_num][var_num] = FaceInfo::VarFaceNeighbors::NEIGHBOR;
4069 else
4070 mooseError("Should never get here");
4071 }
4072 }
4073 };
4074
4075 // We loop through the faces and check if they are internal, boundary or external to
4076 // the variables in the problem
4077 for (FaceInfo & face : _all_face_info)
4078 {
4079 const SubdomainID elem_subdomain_id = face.elemSubdomainID();
4080 const SubdomainID neighbor_subdomain_id = face.neighborSubdomainID();
4081
4082 auto & face_type_vector = face.faceType();
4083
4084 face_type_vector.clear();
4085 face_type_vector.resize(num_eqs);
4086
4087 // First, we check the variables in the solver systems (linear/nonlinear)
4088 for (const auto i : make_range(_app.feProblem().numSolverSystems()))
4089 face_lambda(elem_subdomain_id,
4090 neighbor_subdomain_id,
4091 _app.feProblem().getSolverSystem(i),
4092 face_type_vector);
4093
4094 // Then we check the variables in the auxiliary system
4095 face_lambda(elem_subdomain_id,
4096 neighbor_subdomain_id,
4098 face_type_vector);
4099 }
4100}
subdomain_id_type SubdomainID
virtual libMesh::EquationSystems & es() override
AuxiliarySystem & getAuxiliarySystem()
This data structure is used to store geometric and variable related metadata about each cell face in ...
Definition FaceInfo.h:38
FEProblemBase & feProblem() const
Definition MooseApp.C:1857
Base class for a system (of equations)
Definition SystemBase.h:87
unsigned int n_systems() const

Referenced by MooseMesh::setupFiniteVolumeMeshData().

◆ cacheFVElementalDoFs()

void MooseMesh::cacheFVElementalDoFs ( ) const
inherited

Cache the DoF indices for FV variables on each element.

These indices are used to speed up the setup loops of finite volume systems.

Definition at line 4103 of file MooseMesh.C.

4104{
4105 mooseAssert(!Threads::in_threads,
4106 "Performing writes to elemInfo dof indices. This must be done unthreaded!");
4107
4108 auto elem_lambda = [](const ElemInfo & elem_info,
4109 SystemBase & sys,
4110 std::vector<std::vector<dof_id_type>> & dof_vector)
4111 {
4112 if (sys.nFVVariables())
4113 {
4114 dof_vector[sys.number()].resize(sys.nVariables(), libMesh::DofObject::invalid_id);
4115 const auto & variables = sys.getVariables(0);
4116
4117 for (const auto & var : variables)
4118 if (var->isFV())
4119 {
4120 const auto & var_subdomains = var->blockIDs();
4121
4122 // We will only cache for FV variables and if they live on the current subdomain
4123 if (var_subdomains.find(elem_info.subdomain_id()) != var_subdomains.end())
4124 {
4125 std::vector<dof_id_type> indices;
4126 var->dofMap().dof_indices(elem_info.elem(), indices, var->number());
4127 mooseAssert(indices.size() == 1, "We expect to have only one dof per element!");
4128 dof_vector[sys.number()][var->number()] = indices[0];
4129 }
4130 }
4131 }
4132 };
4133
4134 const unsigned int num_eqs = _app.feProblem().es().n_systems();
4135
4136 // We loop through the elements in the mesh and cache the dof indices
4137 // for the corresponding variables.
4138 for (auto & ei_pair : _elem_to_elem_info)
4139 {
4140 auto & elem_info = ei_pair.second;
4141 auto & dof_vector = elem_info.dofIndices();
4142
4143 dof_vector.clear();
4144 dof_vector.resize(num_eqs);
4145
4146 // First, we cache the dof indices for the variables in the solver systems (linear, nonlinear)
4147 for (const auto i : make_range(_app.feProblem().numSolverSystems()))
4148 elem_lambda(elem_info, _app.feProblem().getSolverSystem(i), dof_vector);
4149
4150 // Then we cache the dof indices for the auxvariables
4151 elem_lambda(elem_info, _app.feProblem().getAuxiliarySystem(), dof_vector);
4152 }
4153}
Class used for caching additional information for elements such as the volume and centroid.
Definition ElemInfo.h:26
SubdomainID subdomain_id() const
We return the subdomain ID of the corresponding libmesh element.
Definition ElemInfo.h:43
const Elem * elem() const
Definition ElemInfo.h:34
const std::vector< std::vector< dof_id_type > > & dofIndices() const
Definition ElemInfo.h:39
static constexpr dof_id_type invalid_id

Referenced by MooseMesh::setupFiniteVolumeMeshData().

◆ cacheInfo()

void MooseMesh::cacheInfo ( )
protectedinherited

Definition at line 1406 of file MooseMesh.C.

1407{
1408 TIME_SECTION("cacheInfo", 3);
1409
1410 const auto & mesh = getMesh();
1411
1412 ConstElemRange all_elems(mesh.elements_begin(), mesh.elements_end(), 1);
1413 CacheInfoThread ci(*this);
1414 Threads::parallel_reduce(all_elems, ci);
1415
1416 ConstElemRange local_elems(
1417 mesh.active_local_elements_begin(), mesh.active_local_elements_end(), 1);
1418 CacheSubdomainInfoThread csi(*this);
1419 Threads::parallel_reduce(local_elems, csi);
1420
1421 _block_node_list = std::move(ci._block_node_list);
1422 _higher_d_elem_side_to_lower_d_elem = std::move(ci._higher_d_elem_side_to_lower_d_elem);
1423 _lower_d_elem_to_higher_d_elem_side = std::move(ci._lower_d_elem_to_higher_d_elem_side);
1424 _lower_d_interior_blocks = std::move(ci._lower_d_interior_blocks);
1425 _lower_d_boundary_blocks = std::move(ci._lower_d_boundary_blocks);
1426 _neighbor_subdomain_boundary_ids = std::move(csi._neighbor_subdomain_boundary_ids);
1427
1428 _sub_to_data.clear();
1429 for (auto & [id, subs] : csi._neighbor_subs)
1430 _sub_to_data[id].neighbor_subs = std::move(subs);
1431 for (auto & [id, bids] : csi._sub_boundary_ids)
1432 _sub_to_data[id].boundary_ids = std::move(bids);
1433
1436
1437 for (const auto blk_id : _mesh_subdomains)
1438 {
1439 auto & sub_data = _sub_to_data[blk_id];
1440 _communicator.set_union(sub_data.neighbor_subs);
1441 _communicator.set_union(sub_data.boundary_ids);
1443 }
1444}
Fills lower-d side maps and node-to-block ownership for MooseMesh::cacheInfo().
Fills subdomain neighbor and attached boundary-id caches for MooseMesh::cacheInfo().
std::unordered_map< SubdomainID, SubdomainData > _sub_to_data
Holds a map from subdomain ids to associated data.
Definition MooseMesh.h:1962
std::unordered_map< SubdomainID, std::set< BoundaryID > > _neighbor_subdomain_boundary_ids
Holds a map from neighbor subomdain ids to the boundary ids that are attached to it.
Definition MooseMesh.h:1965
std::map< dof_id_type, std::set< SubdomainID > > _block_node_list
list of nodes that belongs to a specified block (domain)
Definition MooseMesh.h:1717
void set_union(T &data, const unsigned int root_id) const

Referenced by MooseMesh::update().

◆ callMooseError() [1/2]

void MooseBase::callMooseError ( MooseApp *const  app,
const InputParameters &  params,
std::string  msg,
const bool  with_prefix,
const hit::Node *  node,
const bool  show_trace = true 
)
staticinherited

External method for calling moose error with added object context.

Needed so that objects without the MooseBase context (InputParameters) can call errors with context

Parameters
appThe app pointer (if available); adds multiapp context and clears the console
paramsThe parameters, needed to obtain object information
msgThe message
with_prefixIf true, add the prefix from messagePrefix(), which is the object information (type, name, etc)
nodeOptional hit node to add file path context as a prefix
show_traceWhether or not to show a stack trace, defaults to true

Definition at line 114 of file MooseBase.C.

120{
121 if (!node)
122 node = MooseBase::getHitNode(params);
123
124 std::string multiapp_prefix = "";
125 if (app)
126 {
127 if (!app->isUltimateMaster())
128 multiapp_prefix = app->name();
130 }
131
132 if (with_prefix)
133 // False here because the hit context will get processed by the node
134 msg = messagePrefix(params, false) + msg;
135
136 moose::internal::mooseErrorRaw(msg, multiapp_prefix, node, show_trace);
137}
OutputWarehouse & getOutputWarehouse()
Get the OutputWarehouse objects.
Definition MooseApp.C:2414
bool isUltimateMaster() const
Whether or not this app is the ultimate master app.
Definition MooseApp.h:866
const hit::Node * getHitNode() const
Definition MooseBase.h:136
std::string messagePrefix(const bool hit_prefix=true) const
Definition MooseBase.h:256
void mooseConsole()
Send current output buffer to Console output objects.
void mooseErrorRaw(std::string msg, const std::string &prefix="", const hit::Node *node=nullptr, const bool show_trace=true)
Main callback for emitting a moose error.
Definition MooseError.C:51

◆ callMooseError() [2/2]

void MooseBase::callMooseError ( std::string  msg,
const bool  with_prefix,
const hit::Node *  node = nullptr,
const bool  show_trace = true 
) const
inherited

External method for calling moose error with added object context.

Parameters
msgThe message
with_prefixIf true, add the prefix from messagePrefix(), which is the object information (type, name, etc)
nodeOptional hit node to add file path context as a prefix
show_traceWhether or not to show a stack trace, defaults to true

Definition at line 105 of file MooseBase.C.

109{
110 callMooseError(&_app, _pars, msg, with_prefix, node, show_trace);
111}
MooseApp & _app
The MOOSE application this is associated with.
Definition MooseBase.h:375
void callMooseError(std::string msg, const bool with_prefix, const hit::Node *node=nullptr, const bool show_trace=true) const
External method for calling moose error with added object context.
Definition MooseBase.C:105
const InputParameters & _pars
The object's parameters.
Definition MooseBase.h:384

Referenced by MooseBase::callMooseError(), InputParameters::callMooseError(), MooseBase::mooseDocumentedError(), MooseBase::mooseError(), and MooseBase::mooseErrorNonPrefixed().

◆ changeBoundaryId() [1/2]

void MooseMesh::changeBoundaryId ( const boundary_id_type  old_id,
const boundary_id_type  new_id,
bool  delete_prev 
)
inherited

Change all the boundary IDs for a given side from old_id to new_id.

If delete_prev is true, also actually remove the side with old_id from the BoundaryInfo object.

Definition at line 2776 of file MooseMesh.C.

2779{
2780 TIME_SECTION("changeBoundaryId", 6);
2781 changeBoundaryId(getMesh(), old_id, new_id, delete_prev);
2782}
void changeBoundaryId(const boundary_id_type old_id, const boundary_id_type new_id, bool delete_prev)
Change all the boundary IDs for a given side from old_id to new_id.
Definition MooseMesh.C:2776

Referenced by MooseMesh::changeBoundaryId().

◆ changeBoundaryId() [2/2]

void MooseMesh::changeBoundaryId ( MeshBase &  mesh,
const boundary_id_type  old_id,
const boundary_id_type  new_id,
bool  delete_prev 
)
staticinherited

Change all the boundary IDs for a given side from old_id to new_id for the given mesh.

If delete_prev is true, also actually remove the side with old_id from the BoundaryInfo object.

Definition at line 2785 of file MooseMesh.C.

2789{
2790 // Get a reference to our BoundaryInfo object, we will use it several times below...
2791 BoundaryInfo & boundary_info = mesh.get_boundary_info();
2792
2793 // Container to catch ids passed back from BoundaryInfo
2794 std::vector<boundary_id_type> old_ids;
2795
2796 // Only level-0 elements store BCs. Loop over them.
2797 for (auto & elem : as_range(mesh.level_elements_begin(0), mesh.level_elements_end(0)))
2798 {
2799 unsigned int n_sides = elem->n_sides();
2800 for (unsigned int s = 0; s != n_sides; ++s)
2801 {
2802 boundary_info.boundary_ids(elem, s, old_ids);
2803 if (std::find(old_ids.begin(), old_ids.end(), old_id) != old_ids.end())
2804 {
2805 std::vector<boundary_id_type> new_ids(old_ids);
2806 std::replace(new_ids.begin(), new_ids.end(), old_id, new_id);
2807 if (delete_prev)
2808 {
2809 boundary_info.remove_side(elem, s);
2810 boundary_info.add_side(elem, s, new_ids);
2811 }
2812 else
2813 boundary_info.add_side(elem, s, new_ids);
2814 }
2815 }
2816 }
2817
2818 // Remove any remaining references to the old ID from the
2819 // BoundaryInfo object. This prevents things like empty sidesets
2820 // from showing up when printing information, etc.
2821 if (delete_prev)
2822 boundary_info.remove_id(old_id);
2823
2824 // The cached boundary id sets will need re-preparation
2825 mesh.unset_has_boundary_id_sets();
2826}

◆ checkCoordinateSystems()

void MooseMesh::checkCoordinateSystems ( )
inherited

Performs a sanity check for every element in the mesh.

If an element dimension is 3 and the corresponding coordinate system is RZ, then this will error. If an element dimension is greater than 1 and the corresponding system is RPSHERICAL then this will error

Definition at line 4391 of file MooseMesh.C.

4392{
4393 for (const auto & elem : getMesh().element_ptr_range())
4394 {
4395 SubdomainID sid = elem->subdomain_id();
4396 if (_coord_sys[sid] == Moose::COORD_RZ && elem->dim() == 3)
4397 mooseError("An RZ coordinate system was requested for subdomain " + Moose::stringify(sid) +
4398 " which contains 3D elements.");
4399 if (_coord_sys[sid] == Moose::COORD_RSPHERICAL && elem->dim() > 1)
4400 mooseError("An RSPHERICAL coordinate system was requested for subdomain " +
4401 Moose::stringify(sid) + " which contains 2D or 3D elements.");
4402 }
4403}
std::map< SubdomainID, Moose::CoordinateSystemType > & _coord_sys
Type of coordinate system per subdomain.
Definition MooseMesh.h:2032
std::string stringify(const T &t)
conversion to string
Definition Conversion.h:65
@ COORD_RZ
Definition MooseTypes.h:866
@ COORD_RSPHERICAL
Definition MooseTypes.h:867

Referenced by FEProblemBase::checkCoordinateSystems().

◆ checkDuplicateSubdomainNames()

void MooseMesh::checkDuplicateSubdomainNames ( )
privateinherited

Loop through all subdomain IDs and check if there is name duplication used for the subdomains with same ID.

Throw out an error if any name duplication is found.

Definition at line 4421 of file MooseMesh.C.

4422{
4423 std::map<SubdomainName, SubdomainID> subdomain;
4424 for (const auto & sbd_id : _mesh_subdomains)
4425 {
4426 std::string sub_name = getSubdomainName(sbd_id);
4427 if (!sub_name.empty() && subdomain.count(sub_name) > 0)
4428 mooseError("The subdomain name ",
4429 sub_name,
4430 " is used for both subdomain with ID=",
4431 subdomain[sub_name],
4432 " and ID=",
4433 sbd_id,
4434 ", Please rename one of them!");
4435 else
4436 subdomain[sub_name] = sbd_id;
4437 }
4438}
const std::string & getSubdomainName(SubdomainID subdomain_id) const
Return the name of a block given an id.
Definition MooseMesh.C:1714

Referenced by MooseMesh::prepare().

◆ clearQuadratureNodes()

void MooseMesh::clearQuadratureNodes ( )
inherited

Clear out any existing quadrature nodes.

Most likely called before re-adding them.

Definition at line 1625 of file MooseMesh.C.

1626{
1627 // Delete all the quadrature nodes
1628 for (auto & it : _quadrature_nodes)
1629 delete it.second;
1630
1631 _quadrature_nodes.clear();
1633 _extra_bnd_nodes.clear();
1634
1635 // NOTE: this does not clear them from the nodeToElem map
1636}

Referenced by DisplacedProblem::meshChanged(), GeometricSearchData::reinit(), and MooseMesh::~MooseMesh().

◆ clone()

MooseMesh & MooseMesh::clone ( ) const
virtualinherited

Clone method.

Allocates memory you are responsible to clean up.

Definition at line 2839 of file MooseMesh.C.

2840{
2841 mooseError("MooseMesh::clone() is no longer supported, use MooseMesh::safeClone() instead.");
2842}

Referenced by TiledMesh::buildMesh().

◆ coarsenedElementChildren()

const std::vector< const Elem * > & MooseMesh::coarsenedElementChildren ( const Elem *  elem) const
inherited

Get the newly removed children element ids for an element that was just coarsened.

Parameters
elemPointer to the parent element that was coarsened to.
Returns
The child element ids in Elem::child() order.

Definition at line 954 of file MooseMesh.C.

955{
956 auto elem_to_child_pair = _coarsened_element_children.find(elem);
957 mooseAssert(elem_to_child_pair != _coarsened_element_children.end(), "Missing element in map");
958 return elem_to_child_pair->second;
959}

Referenced by FEProblemBase::meshChanged(), ProjectMaterialProperties::onBoundary(), and ProjectMaterialProperties::onElement().

◆ coarsenedElementRange()

ConstElemPointerRange * MooseMesh::coarsenedElementRange ( ) const
inherited

Return a range that is suitable for threaded execution over elements that were just coarsened.

Note that these are the Parent elements that are now set to be INACTIVE. Their children are the elements that were just removed. Use coarsenedElementChildren() to get the element IDs for the children that were just removed for a particular parent element.

Definition at line 948 of file MooseMesh.C.

949{
950 return _coarsened_elements.get();
951}

Referenced by FEProblemBase::meshChanged().

◆ computeFiniteVolumeCoords()

void MooseMesh::computeFiniteVolumeCoords ( ) const
inherited

Compute the face coordinate value for all FaceInfo and ElemInfo objects.

'Coordinate' here means a coordinate value associated with the coordinate system. For Cartesian coordinate systems, 'coordinate' is simply '1'; in RZ, '2*pi*r', and in spherical, '4*pi*r^2'

Definition at line 3961 of file MooseMesh.C.

3962{
3964 mooseError("Trying to compute face- and elem-info coords when the information is dirty");
3965
3966 for (auto & fi : _all_face_info)
3967 {
3968 // get elem & neighbor elements, and set subdomain ids
3969 const SubdomainID elem_subdomain_id = fi.elemSubdomainID();
3970 const SubdomainID neighbor_subdomain_id = fi.neighborSubdomainID();
3971
3973 *this, elem_subdomain_id, fi.faceCentroid(), fi.faceCoord(), neighbor_subdomain_id);
3974 }
3975
3976 for (auto & ei : _elem_to_elem_info)
3978 *this, ei.second.subdomain_id(), ei.second.centroid(), ei.second.coordFactor());
3979}
void coordTransformFactor(const SubProblem &s, SubdomainID sub_id, const P &point, C &factor, SubdomainID neighbor_sub_id=libMesh::Elem::invalid_subdomain_id)
Computes a conversion multiplier for use when computing integraals for the current coordinate system ...
Definition Assembly.C:41

Referenced by MooseMesh::setupFiniteVolumeMeshData().

◆ computeMaxPerElemAndSide()

void MooseMesh::computeMaxPerElemAndSide ( )
privateinherited

Compute the maximum numbers per element and side.

Definition at line 1070 of file MooseMesh.C.

1071{
1072 auto & mesh = getMesh();
1073
1077
1078 for (auto & elem : as_range(mesh.local_elements_begin(), mesh.local_elements_end()))
1079 {
1080 _max_sides_per_elem = std::max(_max_sides_per_elem, elem->n_sides());
1081 _max_nodes_per_elem = std::max(_max_nodes_per_elem, elem->n_nodes());
1082
1083 for (unsigned int side = 0; side < elem->n_sides(); ++side)
1084 _max_nodes_per_side = std::max(_max_nodes_per_side, elem->side_ptr(side)->n_nodes());
1085 }
1086
1087 mesh.comm().max(_max_sides_per_elem);
1088 mesh.comm().max(_max_nodes_per_elem);
1089 mesh.comm().max(_max_nodes_per_side);
1090}
unsigned int _max_nodes_per_elem
The maximum number of nodes per element.
Definition MooseMesh.h:2014
unsigned int _max_nodes_per_side
The maximum number of nodes per side.
Definition MooseMesh.h:2017
unsigned int _max_sides_per_elem
The maximum number of sides per element.
Definition MooseMesh.h:2011

Referenced by MooseMesh::update().

◆ connectControllableParams()

void MooseBase::connectControllableParams ( const std::string &  parameter,
const std::string &  object_type,
const std::string &  object_name,
const std::string &  object_parameter 
) const
inherited

Connect controllable parameter of this action with the controllable parameters of the objects added by this action.

Parameters
parameterName of the controllable parameter of this action
object_typeType of the object added by this action.
object_nameName of the object added by this action.
object_parameterName of the parameter of the object.

Definition at line 77 of file MooseBase.C.

81{
82 auto & factory = _app.getFactory();
83 auto & ip_warehouse = _app.getInputParameterWarehouse();
84
85 MooseObjectParameterName primary_name(uniqueName(), parameter);
86 const auto base_type = factory.getValidParams(object_type).getBase();
87 MooseObjectParameterName secondary_name(base_type, object_name, object_parameter);
88 ip_warehouse.addControllableParameterConnection(primary_name, secondary_name);
89
90 const auto & tags = _pars.get<std::vector<std::string>>("control_tags");
91 for (const auto & tag : tags)
92 {
93 if (!tag.empty())
94 {
95 // Only adds the parameter with the different control tags if the derived class
96 // properly registers the parameter to its own syntax
97 MooseObjectParameterName tagged_name(tag, name(), parameter);
98 ip_warehouse.addControllableParameterConnection(
99 tagged_name, secondary_name, /*error_on_empty=*/false);
100 }
101 }
102}
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
Factory & getFactory()
Retrieve a writable reference to the Factory associated with this App.
Definition MooseApp.h:407
InputParameterWarehouse & getInputParameterWarehouse()
Get the InputParameterWarehouse for MooseObjects.
Definition MooseApp.C:2872
MooseObjectName uniqueName() const
Definition MooseBase.C:69
A class for storing an input parameter name.

◆ coordTransform()

MooseAppCoordTransform & MooseMesh::coordTransform ( )
inlineinherited
Returns
the coordinate transformation object that describes how to transform this problem's coordinate system into the canonical/reference coordinate system

Definition at line 2062 of file MooseMesh.h.

2063{
2064 mooseAssert(_coord_transform, "The coordinate transformation object is null.");
2065 return *_coord_transform;
2066}
std::unique_ptr< MooseAppCoordTransform > _coord_transform
A coordinate transformation object that describes how to transform this problem's coordinate system i...
Definition MooseMesh.h:2042

Referenced by FEProblemBase::checkProblemIntegrity(), and FEProblemBase::coordTransform().

◆ declareManagedRestartableDataWithContext()

template<typename T , typename... Args>
Restartable::ManagedValue< T > Restartable::declareManagedRestartableDataWithContext ( const std::string &  data_name,
void *  context,
Args &&...  args 
)
protectedinherited

Declares a piece of "managed" restartable data and initialize it.

Here, "managed" restartable data means that the caller can destruct this data upon destruction of the return value of this method. Therefore, this ManagedValue<T> wrapper should survive after the final calls to dataStore() for it. That is... at the very end.

This is needed for objects whose destruction ordering is important, and enables natural c++ destruction in reverse construction order of the object that declares it.

See delcareRestartableData and declareRestartableDataWithContext for more information.

Definition at line 283 of file Restartable.h.

286{
287 auto & data_ptr =
288 declareRestartableDataHelper<T>(data_name, context, std::forward<Args>(args)...);
289 return Restartable::ManagedValue<T>(data_ptr);
290}
Wrapper class for restartable data that is "managed.
Definition Restartable.h:43

◆ declareRecoverableData()

template<typename T , typename... Args>
T & Restartable::declareRecoverableData ( const std::string &  data_name,
Args &&...  args 
)
protectedinherited

Declare a piece of data as "recoverable" and initialize it.

This means that in the event of a restart this piece of data will be restored back to its previous value.

Note - this data will NOT be restored on Restart!

NOTE: This returns a reference! Make sure you store it in a reference!

Parameters
data_nameThe name of the data (usually just use the same name as the member variable)
argsArguments to forward to the constructor of the data

Definition at line 358 of file Restartable.h.

359{
360 const auto full_name = restartableName(data_name);
361
363
364 return declareRestartableDataWithContext<T>(data_name, nullptr, std::forward<Args>(args)...);
365}
std::string restartableName(const std::string &data_name) const
Gets the name of a piece of restartable data given a data name, adding the system name and object nam...
Definition Restartable.C:78
void registerRestartableNameWithFilterOnApp(const std::string &name, Moose::RESTARTABLE_FILTER filter)
Helper function for actually registering the restartable data.
Definition Restartable.C:71

◆ declareRestartableData()

template<typename T , typename... Args>
T & Restartable::declareRestartableData ( const std::string &  data_name,
Args &&...  args 
)
protectedinherited

Declare a piece of data as "restartable" and initialize it.

This means that in the event of a restart this piece of data will be restored back to its previous value.

NOTE: This returns a reference! Make sure you store it in a reference!

Parameters
data_nameThe name of the data (usually just use the same name as the member variable)
argsArguments to forward to the constructor of the data

Definition at line 276 of file Restartable.h.

277{
278 return declareRestartableDataWithContext<T>(data_name, nullptr, std::forward<Args>(args)...);
279}

◆ declareRestartableDataHelper()

template<typename T , typename... Args>
RestartableData< T > & Restartable::declareRestartableDataHelper ( const std::string &  data_name,
void *  context,
Args &&...  args 
) const
privateinherited

Helper function for declaring restartable data.

We use this function to reduce code duplication when returning const/nonconst references to the data.

Parameters
data_nameThe name of the data (usually just use the same name as the member variable)
contextContext pointer that will be passed to the load and store functions
argsArguments to forward to the constructor of the data

Definition at line 310 of file Restartable.h.

313{
314 const auto full_name = restartableName(data_name);
315
316 // Here we will create the RestartableData even though we may not use this instance.
317 // If it's already in use, the App will return a reference to the existing instance and we'll
318 // return that one instead. We might refactor this to have the app create the RestartableData
319 // at a later date.
320 auto data_ptr =
321 std::make_unique<RestartableData<T>>(full_name, context, std::forward<Args>(args)...);
322 auto & restartable_data_ref = cast_ref<RestartableData<T> &>(
323 registerRestartableDataOnApp(std::move(data_ptr), _restartable_tid));
324
325 return restartable_data_ref;
326}
const THREAD_ID _restartable_tid
The thread ID for this object.
RestartableDataValue & registerRestartableDataOnApp(std::unique_ptr< RestartableDataValue > data, THREAD_ID tid) const
Helper function for actually registering the restartable data.
Definition Restartable.C:63

◆ declareRestartableDataWithContext()

template<typename T , typename... Args>
T & Restartable::declareRestartableDataWithContext ( const std::string &  data_name,
void *  context,
Args &&...  args 
)
protectedinherited

Declare a piece of data as "restartable" and initialize it.

This means that in the event of a restart this piece of data will be restored back to its previous value.

NOTE: This returns a reference! Make sure you store it in a reference!

Parameters
data_nameThe name of the data (usually just use the same name as the member variable)
contextContext pointer that will be passed to the load and store functions
argsArguments to forward to the constructor of the data

Definition at line 301 of file Restartable.h.

304{
305 return declareRestartableDataHelper<T>(data_name, context, std::forward<Args>(args)...).set();
306}

◆ declareRestartableDataWithObjectName()

template<typename T , typename... Args>
T & Restartable::declareRestartableDataWithObjectName ( const std::string &  data_name,
const std::string &  object_name,
Args &&...  args 
)
protectedinherited

Declare a piece of data as "restartable".

This means that in the event of a restart this piece of data will be restored back to its previous value.

NOTE: This returns a reference! Make sure you store it in a reference!

Parameters
data_nameThe name of the data (usually just use the same name as the member variable)
object_nameA supplied name for the object that is declaring this data.
argsArguments to forward to the constructor of the data

Definition at line 330 of file Restartable.h.

333{
334 return declareRestartableDataWithObjectNameWithContext<T>(
335 data_name, object_name, nullptr, std::forward<Args>(args)...);
336}

◆ declareRestartableDataWithObjectNameWithContext()

template<typename T , typename... Args>
T & Restartable::declareRestartableDataWithObjectNameWithContext ( const std::string &  data_name,
const std::string &  object_name,
void *  context,
Args &&...  args 
)
protectedinherited

Declare a piece of data as "restartable".

This means that in the event of a restart this piece of data will be restored back to its previous value.

NOTE: This returns a reference! Make sure you store it in a reference!

Parameters
data_nameThe name of the data (usually just use the same name as the member variable)
object_nameA supplied name for the object that is declaring this data.
contextContext pointer that will be passed to the load and store functions
argsArguments to forward to the constructor of the data

Definition at line 340 of file Restartable.h.

344{
345 std::string old_name = _restartable_name;
346
347 _restartable_name = object_name;
348
349 T & value = declareRestartableDataWithContext<T>(data_name, context, std::forward<Args>(args)...);
350
351 _restartable_name = old_name;
352
353 return value;
354}
std::string _restartable_name
The name of the object.
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)

◆ deleteRemoteElements()

void MooseMesh::deleteRemoteElements ( )
inherited

Delete remote elements.

Definition at line 4013 of file MooseMesh.C.

4014{
4016 if (!_mesh)
4017 mooseError("Cannot delete remote elements because we have not yet attached a MeshBase");
4018
4019 _mesh->allow_remote_element_removal(true);
4020
4021 _mesh->delete_remote_elements();
4022}

◆ detectOrthogonalDimRanges()

bool MooseMesh::detectOrthogonalDimRanges ( Real  tol = 1e-6)
inherited

This routine determines whether the Mesh is a regular orthogonal mesh (i.e.

square in 2D, cubic in 3D). If it is, then we can use a number of convenience functions when periodic boundary conditions are applied. This routine populates the _range vector which is necessary for these convenience functions.

Note: This routine can potentially identify meshes with concave faces that still "fit" in the convex hull of the corresponding regular orthogonal mesh. This case is highly unlikely in practice and if a user does this, well.... release the kicker!

Definition at line 1883 of file MooseMesh.C.

1884{
1885 TIME_SECTION("detectOrthogonalDimRanges", 5);
1886
1888 return true;
1889
1890 std::vector<Real> min(3, std::numeric_limits<Real>::max());
1891 std::vector<Real> max(3, std::numeric_limits<Real>::min());
1892 unsigned int dim = getMesh().mesh_dimension();
1893
1894 // Find the bounding box of our mesh
1895 for (const auto & node : getMesh().node_ptr_range())
1896 // Check all coordinates, we don't know if this mesh might be lying in a higher dim even if the
1897 // mesh dimension is lower.
1898 for (const auto i : make_range(Moose::dim))
1899 {
1900 if ((*node)(i) < min[i])
1901 min[i] = (*node)(i);
1902 if ((*node)(i) > max[i])
1903 max[i] = (*node)(i);
1904 }
1905
1906 this->comm().max(max);
1907 this->comm().min(min);
1908
1909 _extreme_nodes.resize(8); // 2^LIBMESH_DIM
1910 // Now make sure that there are actual nodes at all of the extremes
1911 std::vector<bool> extreme_matches(8, false);
1912 std::vector<unsigned int> comp_map(3);
1913 for (const auto & node : getMesh().node_ptr_range())
1914 {
1915 // See if the current node is located at one of the extremes
1916 unsigned int coord_match = 0;
1917
1918 for (const auto i : make_range(Moose::dim))
1919 {
1920 if (std::abs((*node)(i)-min[i]) < tol)
1921 {
1922 comp_map[i] = MIN;
1923 ++coord_match;
1924 }
1925 else if (std::abs((*node)(i)-max[i]) < tol)
1926 {
1927 comp_map[i] = MAX;
1928 ++coord_match;
1929 }
1930 }
1931
1932 if (coord_match == LIBMESH_DIM) // Found a coordinate at one of the extremes
1933 {
1934 _extreme_nodes[comp_map[X] * 4 + comp_map[Y] * 2 + comp_map[Z]] = node;
1935 extreme_matches[comp_map[X] * 4 + comp_map[Y] * 2 + comp_map[Z]] = true;
1936 }
1937 }
1938
1939 // See if we matched all of the extremes for the mesh dimension
1940 this->comm().max(extreme_matches);
1941 if (std::count(extreme_matches.begin(), extreme_matches.end(), true) == (1 << dim))
1943
1944 // Set the bounds
1945 _bounds.resize(LIBMESH_DIM);
1946 for (const auto i : make_range(Moose::dim))
1947 {
1948 _bounds[i].resize(2);
1949 _bounds[i][MIN] = min[i];
1950 _bounds[i][MAX] = max[i];
1951 }
1952
1954}
std::vector< std::vector< Real > > _bounds
The bounds in each dimension of the mesh for regular orthogonal meshes.
Definition MooseMesh.h:1744
std::vector< Node * > _extreme_nodes
A vector containing the nodes at the corners of a regular orthogonal mesh.
Definition MooseMesh.h:1806
auto max(const L &left, const R &right)
auto min(const L &left, const R &right)
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...

Referenced by MooseMesh::prepare().

◆ detectPairedSidesets()

void MooseMesh::detectPairedSidesets ( )
inherited

This routine detects paired sidesets of a regular orthogonal mesh (.i.e.

parallel sidesets "across" from one and other).

The _paired_boundary datastructure is populated with this information.

Definition at line 1957 of file MooseMesh.C.

1958{
1959 TIME_SECTION("detectPairedSidesets", 5);
1960
1961 _paired_boundary = std::vector<std::pair<BoundaryID, BoundaryID>>();
1962
1963 // Loop over level-0 elements (since boundary condition information
1964 // is only directly stored for them) and find sidesets with normals
1965 // that point in the -x, +x, -y, +y, and -z, +z direction. If there
1966 // is a unique sideset id for each direction, then the paired
1967 // sidesets consist of (-x,+x), (-y,+y), (-z,+z). If there are
1968 // multiple sideset ids for a given direction, then we can't pick a
1969 // single pair for that direction. In that case, we'll just return
1970 // as was done in the original algorithm.
1971
1972 // we need to test all element dimensions from dim down to 1
1973 const unsigned int mesh_dim = getMesh().mesh_dimension();
1974
1975 // Helper for iterating through unit dimensions (0=x, 1=y, 2=z)
1976 static constexpr std::array<std::size_t, 3> unit_dims{0, 1, 2};
1977 // Helper for mapping from unit dim -> name
1978 static const std::array<std::string, 3> unit_dim_names{"x", "y", "z"};
1979
1980 // Boundary id sets for elements of different dimensions
1981 // First index: side dimension; 0=1D, 1=2D, 2=3D
1982 // Second index: unit dimension; 0=x, 1=y, 2=z
1983 // Third index: false for minus, true for plus
1984 std::array<std::array<std::array<std::set<BoundaryID>, 2>, 3>, 3> ids{};
1985
1986 // Build quadrature needed to evaluate side normals
1987 std::array<std::unique_ptr<FEBase>, 3> fe_faces{};
1988 std::array<std::unique_ptr<libMesh::QGauss>, 3> qfaces{};
1989 for (const auto side_dim : make_range(mesh_dim))
1990 {
1991 // Face is assumed to be flat, therefore normal is assumed to be
1992 // constant over the face, therefore only compute it at 1 qp.
1993 qfaces[side_dim] = std::unique_ptr<libMesh::QGauss>(new libMesh::QGauss(side_dim, CONSTANT));
1994
1995 // A first-order Lagrange FE for the face.
1996 fe_faces[side_dim] = FEBase::build(side_dim + 1, FEType(FIRST, libMesh::LAGRANGE));
1997 fe_faces[side_dim]->attach_quadrature_rule(qfaces[side_dim].get());
1998 fe_faces[side_dim]->get_normals();
1999 }
2000
2001 // Get boundary IDs for each dimension that are in the unit normal
2002 const auto & boundary_info = getMesh().get_boundary_info();
2003 // Temporary for evaluating boundary_ids
2004 std::vector<boundary_id_type> face_ids;
2005 // The side dimensions we've come across, so that we only report
2006 // warnings for side dimensions that we have
2007 std::set<unsigned int> side_dims;
2008 // Normal dimensions that we found that were nonzero; lets us
2009 // skip warnings for dimensions that we don't have
2010 std::array<bool, 3> nonzero_dims = periodic_dim_default;
2011 for (auto & elem : as_range(getMesh().level_elements_begin(0), getMesh().level_elements_end(0)))
2012 {
2013 // If not on the boundary, nothing to do
2014 if (!elem->on_boundary())
2015 continue;
2016
2017 const auto side_dim = elem->dim() - 1;
2018 side_dims.insert(side_dim);
2019
2020 // Check for unit normals on each boundary side
2021 for (const auto s : elem->side_index_range())
2022 if (!elem->neighbor_ptr(s))
2023 {
2024 // Reinit to get the normal
2025 fe_faces[side_dim]->reinit(elem, s);
2026 const auto & normal = fe_faces[side_dim]->get_normals()[0];
2027
2028 // Get the boundary ID(s) for this side. If there is more
2029 // than 1 boundary id, then we already can't determine a
2030 // unique pairing of sides in this direction, but we'll just
2031 // keep going to keep the logic simple.
2032 boundary_info.boundary_ids(elem, s, face_ids);
2033
2034 bool found = false;
2035 for (const auto unit_dim : unit_dims)
2036 {
2037 if (libMesh::absolute_fuzzy_equals(normal(unit_dim), 0.0))
2038 continue;
2039 nonzero_dims[unit_dim] = true;
2040 if (!found)
2041 for (const auto plus : {false, true})
2042 {
2043 if (libMesh::absolute_fuzzy_equals(normal(unit_dim), plus ? 1.0 : -1.0))
2044 {
2045 ids[side_dim][unit_dim][plus].insert(face_ids.begin(), face_ids.end());
2046 found = true;
2047 break;
2048 }
2049 }
2050 }
2051 }
2052 }
2053
2054 // For a distributed mesh, boundaries may be distributed as well. We therefore collect information
2055 // from everyone. If the mesh is already serial, then there is no need to do an allgather. Note
2056 // that this is just going to gather information about what the periodic bc ids are. We are not
2057 // gathering any remote elements or anything like that. It's just that the GhostPointNeighbors
2058 // ghosting functor currently relies on the fact that every process agrees on whether we have
2059 // periodic boundaries; every process that thinks there are periodic boundaries will call
2060 // MeshBase::sub_point_locator which makes a parallel_object_only() assertion (right or wrong). So
2061 // we all need to go there (or not go there)
2062 if (_use_distributed_mesh && !_mesh->is_serial())
2063 {
2064 // Communicate id data by packing as [side dim, unit dim, plus (as a char), boundary id]
2065 std::vector<std::tuple<unsigned int, unsigned int, unsigned char, boundary_id_type>> id_data;
2066 for (const auto side_dim : side_dims)
2067 for (const auto unit_dim : unit_dims)
2068 for (const auto plus : {false, true})
2069 for (const auto bd : ids[side_dim][unit_dim][plus])
2070 id_data.emplace_back(side_dim, unit_dim, plus, bd);
2071 _communicator.allgather(id_data, false);
2072 for (const auto & [side_dim, unit_dim, plus_char, bd] : id_data)
2073 ids[side_dim][unit_dim][bool(plus_char)].insert(bd);
2074
2075 // Gather true-ness of nonzero_dims
2076 for (auto & entry : nonzero_dims)
2077 _communicator.max(entry);
2078
2079 // Gather found side dimensions
2080 _communicator.set_union(side_dims);
2081 } // end if (_use_distributed_mesh && !_need_ghost_ghosted_boundaries)
2082
2083 // Find pairings that have exactly one boundary on each side
2084 std::ostringstream oss_found, oss_missing;
2085 for (const auto side_dim : side_dims)
2086 {
2087 for (const auto unit_dim : unit_dims)
2088 if (nonzero_dims[unit_dim])
2089 {
2090 const auto & unit_name = unit_dim_names[unit_dim];
2091 const auto & minus = ids[side_dim][unit_dim][false];
2092 const auto & plus = ids[side_dim][unit_dim][true];
2093
2094 if (minus.size() == 1 && plus.size() == 1)
2095 {
2096 const auto get_boundary_name = [this](const auto id)
2097 {
2098 const auto & name = getBoundaryName(id);
2099 return name.size() ? name : std::to_string(id);
2100 };
2101
2102 oss_found << "\n " << side_dim + 1 << "D " << unit_name
2103 << "-direction: " << get_boundary_name(*minus.begin()) << " <-> "
2104 << get_boundary_name(*plus.begin());
2105 _paired_boundary->emplace_back(std::make_pair(*minus.begin(), *plus.begin()));
2106 }
2107 else
2108 oss_missing << "\n " << side_dim + 1 << "D -" << unit_name << "/+" << unit_name
2109 << ": Found " << minus.size() << " -" << unit_name << " boundaries and "
2110 << plus.size() << " +" << unit_name << " boundaries";
2111 }
2112 }
2113
2114 std::ostringstream oss;
2115 const auto found = oss_found.str();
2116 const auto missing = oss_missing.str();
2117 if (found.size())
2118 oss << "The following paired boundaries were automatically detected for periodicity:\n"
2119 << found << "\n";
2120 if (missing.size())
2121 {
2122 if (found.size())
2123 oss << "\n";
2124 oss << "Paired boundaries were not automatically detected for the following:\n"
2125 << missing
2126 << "\n\nAutomatic detection requires that exactly one boundary is found in each unit "
2127 "direction.\n";
2128 }
2129
2130 mooseInfoRepeated(oss.str());
2131}
void mooseInfoRepeated(Args &&... args)
Emit an informational message with the given stringified, concatenated args.
Definition MooseError.h:409
std::optional< std::vector< std::pair< BoundaryID, BoundaryID > > > _paired_boundary
A vector holding the paired boundaries for a regular orthogonal mesh.
Definition MooseMesh.h:1747
void allgather(const T &send_data, std::vector< T, A > &recv_data) const
bool absolute_fuzzy_equals(const T &var1, const T2 &var2, const Real tol=TOLERANCE *TOLERANCE)

Referenced by Moose::PeriodicBCHelper::setupPeriodicBoundaries().

◆ determineUseDistributedMesh()

void MooseMesh::determineUseDistributedMesh ( )
inherited

Determine whether to use a distributed mesh.

Should be called during construction

Definition at line 2845 of file MooseMesh.C.

2846{
2847 switch (_parallel_type)
2848 {
2850 // The user did not specify 'parallel_type = XYZ' in the input file,
2851 // so we allow the --distributed-mesh command line arg to possibly turn
2852 // on DistributedMesh. If the command line arg is not present, we pick ReplicatedMesh.
2854 _use_distributed_mesh = true;
2855 break;
2859 _use_distributed_mesh = false;
2860 break;
2862 _use_distributed_mesh = true;
2863 break;
2864 }
2865
2866 // If the user specifies 'nemesis = true' in the Mesh block, or they are using --use-split,
2867 // we must use DistributedMesh.
2868 if (_is_nemesis || _is_split)
2869 _use_distributed_mesh = true;
2870}
bool getDistributedMeshOnCommandLine() const
Returns true if the user specified –distributed-mesh (or –parallel-mesh, for backwards compatibility)...
Definition MooseApp.h:466
bool _parallel_type_overridden
Definition MooseMesh.h:1593
ParallelType _parallel_type
Can be set to DISTRIBUTED, REPLICATED, or DEFAULT.
Definition MooseMesh.h:1586
bool _is_nemesis
True if a Nemesis Mesh was read in.
Definition MooseMesh.h:1637
const bool _is_split
Whether or not we are using a (pre-)split mesh (automatically DistributedMesh)
Definition MooseMesh.h:1750

Referenced by FileMesh::FileMesh(), MooseMesh::MooseMesh(), and MooseMesh::setParallelType().

◆ dimension()

unsigned int MFEMMesh::dimension ( ) const
inlineoverridevirtualinherited

Returns MeshBase::mesh_dimension(), (not MeshBase::spatial_dimension()!) of the underlying libMesh mesh object.

Reimplemented from MooseMesh.

Definition at line 68 of file MFEMMesh.h.

68{ return _mfem_par_mesh->Dimension(); }

Referenced by MFEMProblem::addMFEMFESpaceFromMOOSEVariable(), and MFEMMesh::buildDummyMooseMesh().

◆ dimensionWidth()

Real MooseMesh::dimensionWidth ( unsigned int  component) const
inherited

Returns the width of the requested dimension.

Definition at line 2134 of file MooseMesh.C.

2135{
2136 return getMaxInDimension(component) - getMinInDimension(component);
2137}
virtual Real getMaxInDimension(unsigned int component) const
Definition MooseMesh.C:2149
virtual Real getMinInDimension(unsigned int component) const
Returns the min or max of the requested dimension respectively.
Definition MooseMesh.C:2140

Referenced by MooseMesh::addPeriodicVariable(), and MooseMesh::effectiveSpatialDimension().

◆ displace()

void MFEMMesh::displace ( mfem::GridFunction const &  displacement)
inherited

Displace the nodes of the mesh by the given displacement.

Does not update FE spaces for variables.

Definition at line 136 of file MFEMMesh.C.

137{
138 _mfem_par_mesh->EnsureNodes();
139 *_mfem_par_mesh->GetNodes() += displacement;
140}

Referenced by MFEMProblem::displaceMesh().

◆ doingPRefinement() [1/2]

bool MooseMesh::doingPRefinement ( ) const
inlineinherited

Query whether the kind of adaptivity we're doing includes p-refinement.

Definition at line 1507 of file MooseMesh.h.

1507{ return _doing_p_refinement; }
bool _doing_p_refinement
Whether we have p-refinement (whether exclusively p- or hp-refinement)
Definition MooseMesh.h:2051

Referenced by MooseMesh::buildRefinementAndCoarseningMaps().

◆ doingPRefinement() [2/2]

void MooseMesh::doingPRefinement ( bool  doing_p_refinement)
inlineinherited

Indicate whether the kind of adaptivity we're doing includes p-refinement.

Definition at line 1502 of file MooseMesh.h.

1502{ _doing_p_refinement = doing_p_refinement; }

Referenced by SubProblem::doingPRefinement(), FEProblemBase::init(), Adaptivity::init(), ProjectMaterialProperties::onBoundary(), CacheChangedListsThread::onElement(), and ProjectMaterialProperties::onElement().

◆ effectiveSpatialDimension()

unsigned int MooseMesh::effectiveSpatialDimension ( ) const
virtualinherited

Returns the effective spatial dimension determined by the coordinates actually used by the mesh.

This means that a 1D mesh that has non-zero z or y coordinates is actually a 2D or 3D mesh, respectively. Likewise a 2D mesh that has non-zero z coordinates is actually 3D mesh.

Definition at line 2955 of file MooseMesh.C.

2956{
2957 const Real abs_zero = 1e-12;
2958
2959 // See if the mesh is completely containd in the z and y planes to calculate effective spatial
2960 // dim
2961 for (unsigned int dim = LIBMESH_DIM; dim >= 1; --dim)
2962 if (dimensionWidth(dim - 1) >= abs_zero)
2963 return dim;
2964
2965 // If we get here, we have a 1D mesh on the x-axis.
2966 return 1;
2967}

◆ elem() [1/2]

Elem * MooseMesh::elem ( const dof_id_type  i)
virtualinherited

Various accessors (pointers/references) for Elem "i".

If the requested elem is a remote element on a distributed mesh, only the query accessors are valid to call, and they return NULL.

Definition at line 3163 of file MooseMesh.C.

3164{
3165 mooseDeprecated("MooseMesh::elem() is deprecated, please use MooseMesh::elemPtr() instead");
3166 return elemPtr(i);
3167}
virtual Elem * elemPtr(const dof_id_type i)
Definition MooseMesh.C:3177
void mooseDeprecated(Args &&... args) const

Referenced by MooseMesh::addQuadratureNode(), MooseMesh::buildCoarseningMap(), MooseMesh::buildElemIDInfo(), MooseMesh::buildFiniteVolumeInfo(), MooseMesh::buildHRefinementAndCoarseningMaps(), MooseMesh::buildLowerDMesh(), AnnularMesh::buildMesh(), ConcentricCircleMesh::buildMesh(), RinglebMesh::buildMesh(), SpiralAnnularMesh::buildMesh(), MooseMesh::buildPRefinementAndCoarseningMaps(), MooseMesh::buildRefinementMap(), MooseMesh::changeBoundaryId(), MooseMesh::checkCoordinateSystems(), MooseMesh::coarsenedElementChildren(), MooseMesh::computeMaxPerElemAndSide(), MooseMesh::detectPairedSidesets(), MooseMesh::faceInfo(), MooseMesh::findAdaptivityQpMaps(), MooseMesh::getBlocksMaxDimension(), MooseMesh::getBoundaryIDs(), MooseMesh::getBoundaryIDs(), MooseMesh::getCoarseningMap(), MooseMesh::getElemIDMapping(), MooseMesh::getHigherDSide(), MooseMesh::getLowerDElem(), MooseMesh::getPCoarseningMap(), MooseMesh::getPCoarseningMapHelper(), MooseMesh::getPCoarseningSideMap(), MooseMesh::getPRefinementMap(), MooseMesh::getPRefinementMapHelper(), MooseMesh::getPRefinementSideMap(), MooseMesh::getQuadratureNode(), MooseMesh::getRefinementMap(), MooseMesh::ghostGhostedBoundaries(), MooseMesh::internalNodeToElemMap(), MooseMesh::prepare(), MooseMesh::sideWithBoundaryID(), MooseMesh::update(), and MooseMesh::updateActiveSemiLocalNodeRange().

◆ elem() [2/2]

const Elem * MooseMesh::elem ( const dof_id_type  i) const
virtualinherited

Definition at line 3170 of file MooseMesh.C.

3171{
3172 mooseDeprecated("MooseMesh::elem() is deprecated, please use MooseMesh::elemPtr() instead");
3173 return elemPtr(i);
3174}

◆ elemInfo()

const ElemInfo & MooseMesh::elemInfo ( const dof_id_type  id) const
inherited

◆ elemInfoVector()

const std::vector< const ElemInfo * > & MooseMesh::elemInfoVector ( ) const
inlineinherited

Accessor for the element info objects owned by this process.

Definition at line 1336 of file MooseMesh.h.

1336{ return _elem_info; }

◆ elemPtr() [1/2]

Elem * MooseMesh::elemPtr ( const dof_id_type  i)
virtualinherited

Definition at line 3177 of file MooseMesh.C.

3178{
3179 return getMesh().elem_ptr(i);
3180}

Referenced by Adaptivity::adaptMesh(), FEProblemBase::addGhostedElem(), SystemBase::augmentSendList(), NodalPatchRecoveryAuxBase::blockRestrictElements(), NodalPatchRecovery::compute(), BoundaryMarker::computeElementMarker(), NodalPatchRecoveryAuxBase::computeValue(), ProjectionAux::computeValue(), MooseMesh::elem(), MooseMesh::elem(), ProjectionAux::elemOnNodeVariableIsDefinedOn(), ActivateElementsUserObjectBase::execute(), NonlinearSystemBase::findImplicitGeometricCouplingEntries(), NearestNodeLocator::findNodes(), ElementSubdomainModifierBase::findReinitializedElemsAndNodes(), FunctorSmootherTempl< T >::FunctorSmootherTempl(), ElementSubdomainModifierBase::gatherMovingBoundaryChanges(), ElementSubdomainModifierBase::gatherPatchElements(), NodalPatchRecoveryBase::gatherRequestList(), NodalPatchRecoveryBase::getCoefficients(), NodeElemConstraint::getConnectedDofIndices(), NodeFaceConstraint::getConnectedDofIndices(), FEProblemBase::getDiracElements(), PenetrationThread::getInfoForFacesWithCommonNodes(), ActivateElementsUserObjectBase::getNewlyActivatedElementRange(), ActivateElementsUserObjectBase::getNewlyActivatedNodeRange(), DiracKernelBase::hasPointsOnElem(), AuxKernelBase::initialSetup(), ActivateElementsUserObjectBase::isNewlyActivated(), Moose::Mortar::loopOverMortarSegments(), ElementSubdomainModifierBase::nodeIsNewlyReinitialized(), PenetrationThread::operator()(), SecondaryNeighborhoodThread::operator()(), FEProblemBase::prepare(), FEProblemBase::prepare(), FEProblemBase::prepareFace(), FEProblemBase::reinitDirac(), FEProblemBase::reinitElem(), FEProblemBase::reinitElemFace(), FEProblemBase::reinitElemFaceRef(), FEProblemBase::reinitElemNeighborAndLowerD(), ElementSubdomainModifierBase::reinitializedElemRange(), FEProblemBase::reinitLowerDElem(), FEProblemBase::reinitNeighbor(), FEProblemBase::reinitNeighborFaceRef(), NonlinearSystemBase::reinitNodeFace(), FEProblemBase::setCurrentLowerDElem(), ElementSubdomainModifierBase::storeOverriddenDofValues(), and NearestNodeLocator::updatePatch().

◆ elemPtr() [2/2]

const Elem * MooseMesh::elemPtr ( const dof_id_type  i) const
virtualinherited

Definition at line 3183 of file MooseMesh.C.

3184{
3185 return getMesh().elem_ptr(i);
3186}

◆ elemTypes()

MooseEnum MooseMesh::elemTypes ( )
staticinherited

returns MooseMesh element type options

Definition at line 3990 of file MooseMesh.C.

3991{
3993 "EDGE EDGE2 EDGE3 EDGE4 QUAD QUAD4 QUAD8 QUAD9 TRI3 TRI6 HEX HEX8 HEX20 HEX27 TET4 TET10 "
3994 "PRISM6 PRISM15 PRISM18 PYRAMID5 PYRAMID13 PYRAMID14");
3995 return elemTypes;
3996}
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition MooseEnum.h:55
static MooseEnum elemTypes()
returns MooseMesh element type options
Definition MooseMesh.C:3990

Referenced by MooseMesh::elemTypes(), and SphereMeshGenerator::validParams().

◆ enabled()

virtual bool MooseObject::enabled ( ) const
inlinevirtualinherited

Return the enabled status of the object.

Reimplemented in EigenKernel.

Definition at line 49 of file MooseObject.h.

49{ return _enabled; }
const bool & _enabled
Reference to the "enable" InputParameters, used by Controls for toggling on/off MooseObjects.
Definition MooseObject.h:71

Referenced by EigenKernel::enabled(), BlockRestrictionDebugOutput::printBlockRestrictionGroups(), BlockRestrictionDebugOutput::printBoundaryRestrictionGroups(), and NodeFaceConstraint::validParams().

◆ errorIfDistributedMesh()

void MooseMesh::errorIfDistributedMesh ( std::string  name) const
inherited

Generate a unified error message if the underlying libMesh mesh is a DistributedMesh.

Clients of MooseMesh can use this function to throw an error if they know they don't work with DistributedMesh.

See, for example, the NodalVariableValue class.

Definition at line 3681 of file MooseMesh.C.

3682{
3684 mooseError("Cannot use ",
3685 name,
3686 " with DistributedMesh!\n",
3687 "Consider specifying parallel_type = 'replicated' in your input file\n",
3688 "to prevent it from being run with DistributedMesh.");
3689}

Referenced by BoundaryPreservedMarker::BoundaryPreservedMarker(), ElementsAlongLine::ElementsAlongLine(), ElementsAlongPlane::ElementsAlongPlane(), FunctorPositions::initialize(), FunctorTimes::initialize(), IntersectionPointsAlongLine::IntersectionPointsAlongLine(), LineMaterialSamplerBase< T >::LineMaterialSamplerBase(), MultiAppGeometricInterpolationTransfer::MultiAppGeometricInterpolationTransfer(), MultiAppUserObjectTransfer::MultiAppUserObjectTransfer(), NodeElemConstraintBase::NodeElemConstraintBase(), NonlocalIntegratedBC::NonlocalIntegratedBC(), NonlocalKernel::NonlocalKernel(), PatternedMesh::PatternedMesh(), StitchedMesh::StitchedMesh(), and TiledMesh::TiledMesh().

◆ errorPrefix()

std::string MooseBase::errorPrefix ( const std::string &  ) const
inlineinherited

Deprecated message prefix; the error type is no longer used.

Definition at line 264 of file MooseBase.h.

264{ return messagePrefix(); }

◆ faceInfo() [1/2]

const std::vector< const FaceInfo * > & MooseMesh::faceInfo ( ) const
inlineinherited

◆ faceInfo() [2/2]

const FaceInfo * MooseMesh::faceInfo ( const Elem *  elem,
unsigned int  side 
) const
inherited

Accessor for the local FaceInfo object on the side of one element. Returns null if ghosted.

Definition at line 3939 of file MooseMesh.C.

3940{
3941 auto it = _elem_side_to_face_info.find(std::make_pair(elem, side));
3942
3943 if (it == _elem_side_to_face_info.end())
3944 return nullptr;
3945 else
3946 {
3947 mooseAssert(it->second,
3948 "For some reason, the FaceInfo object is NULL! Try calling "
3949 "`buildFiniteVolumeInfo()` before using this accessor!");
3950 return it->second;
3951 }
3952}

◆ findAdaptivityQpMaps()

void MooseMesh::findAdaptivityQpMaps ( const Elem *  template_elem,
libMesh::QBase &  qrule,
libMesh::QBase &  qrule_face,
std::vector< std::vector< QpMap > > &  refinement_map,
std::vector< std::pair< unsigned int, QpMap > > &  coarsen_map,
int  parent_side,
int  child,
int  child_side 
)
privateinherited

Given an elem type, get maps that tell us what qp's are closest to each other between a parent and it's children.

This is mainly used for mapping stateful material properties during adaptivity.

There are 3 cases here:

  1. Volume to volume (parent_side = -1, child = -1, child_side = -1)
  2. Parent side to child side (parent_side = 0+, child = -1, child_side = 0+)
  3. Child side to parent volume (parent_side = -1, child = 0+, child_side = 0+)

Case 3 only happens under refinement (need to invent data at internal child sides).

Parameters
template_elemAn element of the type that we need to find the maps for
qruleThe quadrature rule that we need to find the maps for
qrule_faceThe face quadrature rule that we need to find the maps for
refinement_mapThe map to use when an element gets split
coarsen_mapThe map to use when an element is coarsened.
parent_side- the id of the parent's side
child- the id of the child element
child_side- The id of the child's side

Definition at line 2635 of file MooseMesh.C.

2643{
2644 TIME_SECTION("findAdaptivityQpMaps", 5);
2645
2646 ReplicatedMesh mesh(_communicator);
2647 mesh.skip_partitioning(true);
2648
2649 unsigned int dim = template_elem->dim();
2650 mesh.set_mesh_dimension(dim);
2651
2652 for (unsigned int i = 0; i < template_elem->n_nodes(); ++i)
2653 mesh.add_point(template_elem->point(i));
2654
2655 Elem * elem = mesh.add_elem(Elem::build(template_elem->type()).release());
2656
2657 for (unsigned int i = 0; i < template_elem->n_nodes(); ++i)
2658 elem->set_node(i, mesh.node_ptr(i));
2659
2660 std::unique_ptr<FEBase> fe(FEBase::build(dim, FEType()));
2661 fe->get_phi();
2662 const std::vector<Point> & q_points_volume = fe->get_xyz();
2663
2664 std::unique_ptr<FEBase> fe_face(FEBase::build(dim, FEType()));
2665 fe_face->get_phi();
2666 const std::vector<Point> & q_points_face = fe_face->get_xyz();
2667
2668 fe->attach_quadrature_rule(&qrule);
2669 fe_face->attach_quadrature_rule(&qrule_face);
2670
2671 // The current q_points (locations in *physical* space)
2672 const std::vector<Point> * q_points;
2673
2674 if (parent_side != -1)
2675 {
2676 fe_face->reinit(elem, parent_side);
2677 q_points = &q_points_face;
2678 }
2679 else
2680 {
2681 fe->reinit(elem);
2682 q_points = &q_points_volume;
2683 }
2684
2685 std::vector<Point> parent_ref_points;
2686
2687 libMesh::FEMap::inverse_map(elem->dim(), elem, *q_points, parent_ref_points);
2688 libMesh::MeshRefinement mesh_refinement(mesh);
2689 mesh_refinement.uniformly_refine(1);
2690
2691 // A map from the child element index to the locations of all the child's quadrature points in
2692 // *reference* space. Note that we use a map here instead of a vector because the caller can
2693 // pass an explicit child index. We are not guaranteed to have a sequence from [0, n_children)
2694 std::map<unsigned int, std::vector<Point>> child_to_ref_points;
2695
2696 unsigned int n_children = elem->n_children();
2697
2698 refinement_map.resize(n_children);
2699
2700 std::vector<unsigned int> children;
2701
2702 if (child != -1) // Passed in a child explicitly
2703 children.push_back(child);
2704 else
2705 {
2706 children.resize(n_children);
2707 for (unsigned int child = 0; child < n_children; ++child)
2708 children[child] = child;
2709 }
2710
2711 for (unsigned int i = 0; i < children.size(); ++i)
2712 {
2713 unsigned int child = children[i];
2714
2715 if ((parent_side != -1 && !elem->is_child_on_side(child, parent_side)))
2716 continue;
2717
2718 const Elem * child_elem = elem->child_ptr(child);
2719
2720 if (child_side != -1)
2721 {
2722 fe_face->reinit(child_elem, child_side);
2723 q_points = &q_points_face;
2724 }
2725 else
2726 {
2727 fe->reinit(child_elem);
2728 q_points = &q_points_volume;
2729 }
2730
2731 std::vector<Point> child_ref_points;
2732
2733 libMesh::FEMap::inverse_map(elem->dim(), elem, *q_points, child_ref_points);
2734 child_to_ref_points[child] = child_ref_points;
2735
2736 std::vector<QpMap> & qp_map = refinement_map[child];
2737
2738 // Find the closest parent_qp to each child_qp
2739 mapPoints(child_ref_points, parent_ref_points, qp_map);
2740 }
2741
2742 coarsen_map.resize(parent_ref_points.size());
2743
2744 // For each parent qp find the closest child qp
2745 for (unsigned int child = 0; child < n_children; child++)
2746 {
2747 if (parent_side != -1 && !elem->is_child_on_side(child, child_side))
2748 continue;
2749
2750 std::vector<Point> & child_ref_points = child_to_ref_points[child];
2751
2752 std::vector<QpMap> qp_map;
2753
2754 // Find all of the closest points from parent_qp to _THIS_ child's qp
2755 mapPoints(parent_ref_points, child_ref_points, qp_map);
2756
2757 // Check those to see if they are closer than what we currently have for each point
2758 for (unsigned int parent_qp = 0; parent_qp < parent_ref_points.size(); ++parent_qp)
2759 {
2760 std::pair<unsigned int, QpMap> & child_and_map = coarsen_map[parent_qp];
2761 unsigned int & closest_child = child_and_map.first;
2762 QpMap & closest_map = child_and_map.second;
2763
2764 QpMap & current_map = qp_map[parent_qp];
2765
2766 if (current_map._distance < closest_map._distance)
2767 {
2768 closest_child = child;
2769 closest_map = current_map;
2770 }
2771 }
2772 }
2773}
Helper object for holding qp mapping info.
Definition MooseMesh.h:76
Real _distance
The distance between them.
Definition MooseMesh.h:87

Referenced by MooseMesh::buildCoarseningMap(), and MooseMesh::buildRefinementMap().

◆ flagInvalidSolutionInternal()

template<bool warning>
template void SolutionInvalidInterface::flagInvalidSolutionInternal< false > ( const InvalidSolutionID  invalid_solution_id) const
protectedinherited

Set solution invalid mark for the given solution ID.

Definition at line 41 of file SolutionInvalidInterface.C.

43{
44 mooseAssert(
45 warning == moose::internal::getSolutionInvalidityRegistry().item(invalid_solution_id).warning,
46 "Inconsistent warning flag");
47 auto & solution_invalidity = _si_moose_base.getMooseApp().solutionInvalidity();
48 if constexpr (!warning)
50 solution_invalidity.printDebug(invalid_solution_id);
51 return solution_invalidity.flagInvalidSolutionInternal(invalid_solution_id);
52}
bool immediatelyPrintInvalidSolution() const
Whether or not the solution invalid warnings are printed out immediately.
SolutionInvalidity & solutionInvalidity()
Get the SolutionInvalidity for this app.
Definition MooseApp.h:185
MooseApp & getMooseApp() const
Get the MooseApp this class is associated with.
Definition MooseBase.h:87
const FEProblemBase * _si_problem
A pointer to FEProblem base.
const MooseBase & _si_moose_base
The MooseBase that owns this interface.
void printDebug(InvalidSolutionID _invalid_solution_id) const
Immediately print the section and message for debug purpose.
SolutionInvalidityRegistry & getSolutionInvalidityRegistry()
Get the global SolutionInvalidityRegistry singleton.

◆ freeBndElems()

void MooseMesh::freeBndElems ( )
protectedinherited

Definition at line 385 of file MooseMesh.C.

386{
387 // free memory
388 for (auto & belem : _bnd_elems)
389 delete belem;
390
391 for (auto & it : _bnd_elem_ids)
392 it.second.clear();
393
394 _bnd_elem_ids.clear();
395 _bnd_elem_range.reset();
396}
sideset clear()
std::unique_ptr< libMesh::StoredRange< MooseMesh::const_bnd_elem_iterator, const BndElement * > > _bnd_elem_range
Definition MooseMesh.h:1668

Referenced by MooseMesh::buildBndElemList(), and MooseMesh::~MooseMesh().

◆ freeBndNodes()

void MooseMesh::freeBndNodes ( )
protectedinherited

Definition at line 366 of file MooseMesh.C.

367{
368 // free memory
369 for (auto & bnode : _bnd_nodes)
370 delete bnode;
371
372 for (auto & it : _node_set_nodes)
373 it.second.clear();
374
375 _node_set_nodes.clear();
376
377 for (auto & it : _bnd_node_ids)
378 it.second.clear();
379
380 _bnd_node_ids.clear();
381 _bnd_node_range.reset();
382}

Referenced by MooseMesh::buildNodeList(), and MooseMesh::~MooseMesh().

◆ getActiveLocalElementRange()

const ConstElemRange * MooseMesh::getActiveLocalElementRange ( )
inherited

◆ getActiveNodeRange()

NodeRange * MooseMesh::getActiveNodeRange ( )
inherited

Definition at line 1253 of file MooseMesh.C.

1254{
1255 if (!_active_node_range)
1256 {
1257 TIME_SECTION("getActiveNodeRange", 5);
1258
1260 std::make_unique<NodeRange>(getMesh().active_nodes_begin(), getMesh().active_nodes_end());
1261 }
1262
1263 return _active_node_range.get();
1264}
std::unique_ptr< libMesh::NodeRange > _active_node_range
Definition MooseMesh.h:1663

Referenced by VariableCondensationPreconditioner::getDofToCondense(), and MooseMesh::meshChanged().

◆ getActiveSemiLocalNodeRange()

SemiLocalNodeRange * MooseMesh::getActiveSemiLocalNodeRange ( ) const
inherited

Definition at line 1267 of file MooseMesh.C.

1268{
1269 mooseAssert(_active_semilocal_node_range,
1270 "_active_semilocal_node_range has not been created yet!");
1271
1272 return _active_semilocal_node_range.get();
1273}
std::unique_ptr< SemiLocalNodeRange > _active_semilocal_node_range
Ranges for use with threading, cached so they don't have to get rebuilt all the time (which takes tim...
Definition MooseMesh.h:1662

◆ getAllElemIDs()

std::set< dof_id_type > MooseMesh::getAllElemIDs ( unsigned int  elem_id_index) const
inherited

Return all the unique element IDs for an extra element integer with its index.

Definition at line 1163 of file MooseMesh.C.

1164{
1165 std::set<dof_id_type> unique_ids;
1166 for (auto & pair : _block_id_mapping[elem_id_index])
1167 for (auto & id : pair.second)
1168 unique_ids.insert(id);
1169 return unique_ids;
1170}

Referenced by MooseMesh::getElemIDMapping().

◆ getAxisymmetricRadialCoord()

unsigned int MooseMesh::getAxisymmetricRadialCoord ( ) const
inherited

Returns the desired radial direction for RZ coordinate transformation.

Returns
The coordinate direction for the radial direction

Definition at line 4378 of file MooseMesh.C.

4379{
4381 mooseError("getAxisymmetricRadialCoord() should not be called if "
4382 "setGeneralAxisymmetricCoordAxes() has been called.");
4383
4384 if (_rz_coord_axis == 0)
4385 return 1; // if the rotation axis is x (0), then the radial direction is y (1)
4386 else
4387 return 0; // otherwise the radial direction is assumed to be x, i.e., the rotation axis is y
4388}
unsigned int _rz_coord_axis
Storage for RZ axis selection.
Definition MooseMesh.h:2035
bool usingGeneralAxisymmetricCoordAxes() const
Returns true if general axisymmetric coordinate axes are being used.
Definition MooseMesh.C:4363

Referenced by SubProblem::getAxisymmetricRadialCoord(), and ComputeLinearFVGreenGaussGradientVolumeThread::operator()().

◆ getBase()

const std::string & MooseBase::getBase ( ) const
inlineinherited
Returns
The registered base for this object (set via InputParameters::registerBase())

Definition at line 147 of file MooseBase.h.

147{ return _pars.getBase(); }
const std::string & getBase() const

Referenced by MooseBase::uniqueParameterName().

◆ getBlockConnectedBlocks()

const std::set< SubdomainID > & MooseMesh::getBlockConnectedBlocks ( const SubdomainID  subdomain_id) const
inherited

Get the list of subdomains neighboring a given subdomain.

Parameters
subdomain_idThe boundary ID you want to get the subdomain IDs for.
Returns
All subdomain IDs neighboring a given subdomain

Definition at line 3618 of file MooseMesh.C.

3619{
3620 const auto it = _sub_to_data.find(subdomain_id);
3621
3622 if (it == _sub_to_data.end())
3623 mooseError("Unable to find subdomain ID: ", subdomain_id, '.');
3624
3625 return it->second.neighbor_subs;
3626}

◆ getBlocksMaxDimension()

unsigned int MooseMesh::getBlocksMaxDimension ( const std::vector< SubdomainName > &  blocks) const
inherited

Returns the maximum element dimension on the given blocks.

Definition at line 2970 of file MooseMesh.C.

2971{
2972 const auto & mesh = getMesh();
2973
2974 // Take a shortcut if possible
2975 if (const auto & elem_dims = mesh.elem_dimensions(); mesh.is_prepared() && elem_dims.size() == 1)
2976 return *elem_dims.begin();
2977
2978 unsigned short dim = 0;
2979 const auto subdomain_ids = getSubdomainIDs(blocks);
2980 const std::set<SubdomainID> subdomain_ids_set(subdomain_ids.begin(), subdomain_ids.end());
2981 for (const auto & elem : mesh.active_subdomain_set_elements_ptr_range(subdomain_ids_set))
2982 dim = std::max(dim, elem->dim());
2983
2984 // Get the maximumal globally
2985 _communicator.max(dim);
2986 return dim;
2987}
char ** blocks
std::vector< SubdomainID > getSubdomainIDs(const std::vector< SubdomainName > &subdomain_names) const
Get the associated subdomainIDs for the subdomain names that are passed in.
Definition MooseMesh.C:1684

Referenced by BlockRestrictable::initializeBlockRestrictable().

◆ getBoundariesToActiveSemiLocalElemIds()

const std::unordered_map< boundary_id_type, std::unordered_set< dof_id_type > > & MooseMesh::getBoundariesToActiveSemiLocalElemIds ( ) const
inherited

Returns a map of boundaries to ids of elements on the boundary.

Definition at line 1324 of file MooseMesh.C.

1325{
1326 return _bnd_elem_ids;
1327}

Referenced by MooseMesh::getBoundariesToElems().

◆ getBoundariesToElems()

const std::unordered_map< boundary_id_type, std::unordered_set< dof_id_type > > & MooseMesh::getBoundariesToElems ( ) const
inherited

Returns a map of boundaries to ids of elements on the boundary.

Definition at line 1316 of file MooseMesh.C.

1317{
1318 mooseDeprecated("MooseMesh::getBoundariesToElems is deprecated, "
1319 "use MooseMesh::getBoundariesToActiveSemiLocalElemIds");
1321}
const std::unordered_map< boundary_id_type, std::unordered_set< dof_id_type > > & getBoundariesToActiveSemiLocalElemIds() const
Returns a map of boundaries to ids of elements on the boundary.
Definition MooseMesh.C:1324

◆ getBoundaryActiveNeighborElemIds()

std::unordered_set< dof_id_type > MooseMesh::getBoundaryActiveNeighborElemIds ( BoundaryID  bid) const
inherited

Return all ids of neighbors of elements which have a side which is part of a sideset.

Note that boundaries are sided, this is on the neighbor side. For the sideset side, use getBoundariesActiveLocalElemIds. Note that while the element is local and active, the neighbor is not guaranteed to be local, it could be ghosted. Note that if the neighbor is not ghosted, is a remote_elem, then it will not be included

Parameters
bidthe id of the sideset of interest

Definition at line 1341 of file MooseMesh.C.

1342{
1343 // Vector of boundary elems is updated every mesh update
1344 std::unordered_set<dof_id_type> neighbor_elems;
1345 for (const auto & bnd_elem : _bnd_elems)
1346 {
1347 const auto & [elem_ptr, elem_side, elem_bid] = *bnd_elem;
1348 if (elem_bid == bid)
1349 {
1350 const auto * neighbor = elem_ptr->neighbor_ptr(elem_side);
1351 // Dont add fully remote elements, ghosted is fine
1352 if (neighbor && neighbor != libMesh::remote_elem)
1353 {
1354 // handle mesh refinement, only return active elements near the boundary
1355 if (neighbor->active())
1356 neighbor_elems.insert(neighbor->id());
1357 else
1358 {
1359 std::vector<const Elem *> family;
1360 neighbor->active_family_tree_by_neighbor(family, elem_ptr);
1361 for (const auto & child_neighbor : family)
1362 neighbor_elems.insert(child_neighbor->id());
1363 }
1364 }
1365 }
1366 }
1367
1368 return neighbor_elems;
1369}

◆ getBoundaryActiveSemiLocalElemIds()

std::unordered_set< dof_id_type > MooseMesh::getBoundaryActiveSemiLocalElemIds ( BoundaryID  bid) const
inherited

Return all ids of elements which have a side which is part of a sideset.

Note that boundaries are sided.

Parameters
bidthe id of the sideset of interest

Definition at line 1330 of file MooseMesh.C.

1331{
1332 // The boundary to element map is computed on every mesh update
1333 const auto it = _bnd_elem_ids.find(bid);
1334 if (it == _bnd_elem_ids.end())
1335 // Boundary is not local to this domain, return an empty set
1336 return std::unordered_set<dof_id_type>{};
1337 return it->second;
1338}

◆ getBoundaryConnectedBlocks()

std::set< SubdomainID > MooseMesh::getBoundaryConnectedBlocks ( const BoundaryID  bid) const
inherited

Get the list of subdomains associated with the given boundary.

Parameters
bidThe boundary ID you want to get the subdomain IDs for.
Returns
All subdomain IDs associated with given boundary ID

Definition at line 3585 of file MooseMesh.C.

3586{
3587 std::set<SubdomainID> subdomain_ids;
3588 for (const auto & [sub_id, data] : _sub_to_data)
3589 if (data.boundary_ids.find(bid) != data.boundary_ids.end())
3590 subdomain_ids.insert(sub_id);
3591
3592 return subdomain_ids;
3593}
KOKKOS_INLINE_FUNCTION const T * find(const T &target, const T *const begin, const T *const end)
Find a value in an array.
Definition KokkosUtils.h:40

Referenced by DomainUserObject::DomainUserObject(), MooseMesh::getInterfaceConnectedBlocks(), and NodeFaceConstraint::getSecondaryConnectedBlocks().

◆ getBoundaryConnectedSecondaryBlocks()

std::set< SubdomainID > MooseMesh::getBoundaryConnectedSecondaryBlocks ( const BoundaryID  bid) const
inherited

Get the list of subdomains associated with the given boundary of its secondary side.

Parameters
bidThe boundary ID you want to get the subdomain IDs for.
Returns
All subdomain IDs associated with given boundary ID

Definition at line 3596 of file MooseMesh.C.

3597{
3598 std::set<SubdomainID> subdomain_ids;
3599 for (const auto & it : _neighbor_subdomain_boundary_ids)
3600 if (it.second.find(bid) != it.second.end())
3601 subdomain_ids.insert(it.first);
3602
3603 return subdomain_ids;
3604}

Referenced by DomainUserObject::DomainUserObject().

◆ getBoundaryElementRange()

ConstBndElemRange * MooseMesh::getBoundaryElementRange ( )
inherited

Definition at line 1303 of file MooseMesh.C.

1304{
1305 if (!_bnd_elem_range)
1306 {
1307 TIME_SECTION("getBoundaryElementRange", 5);
1308
1309 _bnd_elem_range = std::make_unique<ConstBndElemRange>(bndElemsBegin(), bndElemsEnd());
1310 }
1311
1312 return _bnd_elem_range.get();
1313}
virtual bnd_elem_iterator bndElemsBegin()
Return iterators to the beginning/end of the boundary elements list.
Definition MooseMesh.C:1509
virtual bnd_elem_iterator bndElemsEnd()
Definition MooseMesh.C:1517

Referenced by AuxiliarySystem::computeElementalVarsHelper(), DMMooseGetEmbedding_Private(), GeometricSearchData::generateQuadratureNodes(), MooseMesh::meshChanged(), and GeometricSearchData::updateQuadratureNodes().

◆ getBoundaryID()

BoundaryID MooseMesh::getBoundaryID ( const BoundaryName &  boundary_name) const
inherited

Get the associated BoundaryID for the boundary name.

Parameters
boundary_nameThe name of the boundary.
Returns
the boundary id from the passed boundary name.

Definition at line 1639 of file MooseMesh.C.

1640{
1641 if (boundary_name == "ANY_BOUNDARY_ID")
1642 mooseError("Please use getBoundaryIDs() when passing \"ANY_BOUNDARY_ID\"");
1643
1644 return MooseMeshUtils::getBoundaryID(boundary_name, getMesh());
1645}
BoundaryID getBoundaryID(const BoundaryName &boundary_name, const MeshBase &mesh)
Gets the boundary ID associated with the given BoundaryName.

Referenced by PatternedMesh::buildMesh(), StitchedMesh::buildMesh(), TiledMesh::buildMesh(), DMSetUp_Moose_Pre(), GeometricSearchData::getNearestNodeLocator(), GeometricSearchData::getPenetrationLocator(), GeometricSearchData::getQuadratureNearestNodeLocator(), GeometricSearchData::getQuadraturePenetrationLocator(), LinearNodalConstraint::LinearNodalConstraint(), LowerBoundNodalKernel::LowerBoundNodalKernel(), NodalScalarKernel::NodalScalarKernel(), GhostPrimaryFace::operator()(), EqualValueBoundaryConstraint::populateSecondaryNodes(), MooseMesh::prepare(), and UpperBoundNodalKernel::UpperBoundNodalKernel().

◆ getBoundaryIDs() [1/4]

const std::set< BoundaryID > & MooseMesh::getBoundaryIDs ( ) const
inherited

Returns a const reference to a set of all user-specified boundary IDs.

On a distributed mesh this will only include boundary IDs which exist on local or ghosted elements; a copy and a call to _communicator.set_union() will be necessary to get the global ID set.

Definition at line 3006 of file MooseMesh.C.

3007{
3008 return getMesh().get_boundary_info().get_boundary_ids();
3009}

◆ getBoundaryIDs() [2/4]

std::vector< std::vector< BoundaryID > > MooseMesh::getBoundaryIDs ( const Elem *const  elem) const
inherited

Returns a vector of vector of boundary IDs for the requested element on each of its sides.

Definition at line 2998 of file MooseMesh.C.

2999{
3000 std::vector<std::vector<BoundaryID>> ids;
3001 getMesh().get_boundary_info().side_boundary_ids(elem, ids);
3002 return ids;
3003}

◆ getBoundaryIDs() [3/4]

std::vector< BoundaryID > MooseMesh::getBoundaryIDs ( const Elem *const  elem,
const unsigned short int  side 
) const
inherited

◆ getBoundaryIDs() [4/4]

std::vector< BoundaryID > MooseMesh::getBoundaryIDs ( const std::vector< BoundaryName > &  boundary_name,
bool  generate_unknown = false 
) const
inherited

Get the associated BoundaryID for the boundary names that are passed in.

Parameters
boundary_nameThe names of the boundaries.
Returns
the boundary ids from the passed boundary names.

Definition at line 1670 of file MooseMesh.C.

1672{
1674 getMesh(), boundary_name, generate_unknown, _mesh_boundary_ids);
1675}
std::set< BoundaryID > _mesh_boundary_ids
A set of boundary IDs currently present in the mesh.
Definition MooseMesh.h:1688
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.

◆ getBoundaryName()

const std::string & MooseMesh::getBoundaryName ( const BoundaryID  boundary_id) const
inherited

Return the name of the boundary given the id.

Definition at line 1743 of file MooseMesh.C.

1744{
1745 const BoundaryInfo & boundary_info = getMesh().get_boundary_info();
1746
1747 // We need to figure out if this boundary is a sideset or nodeset
1748 if (boundary_info.get_side_boundary_ids().count(boundary_id))
1749 return boundary_info.get_sideset_name(boundary_id);
1750 else
1751 return boundary_info.get_nodeset_name(boundary_id);
1752}

Referenced by MooseMesh::addPeriodicVariable(), BoundaryLinearFVFluxIntegral::computeFaceInfoIntegral(), MooseMesh::detectPairedSidesets(), MooseMesh::getBoundaryString(), BoundaryLinearFVFluxIntegral::initialSetup(), BoundaryNodeIntegrityCheckThread::onNode(), and NonlinearThread::printBoundaryExecutionInformation().

◆ getBoundaryNodeRange()

ConstBndNodeRange * MooseMesh::getBoundaryNodeRange ( )
inherited

Definition at line 1290 of file MooseMesh.C.

1291{
1292 if (!_bnd_node_range)
1293 {
1294 TIME_SECTION("getBoundaryNodeRange", 5);
1295
1296 _bnd_node_range = std::make_unique<ConstBndNodeRange>(bndNodesBegin(), bndNodesEnd());
1297 }
1298
1299 return _bnd_node_range.get();
1300}
virtual bnd_node_iterator bndNodesBegin()
Return iterators to the beginning/end of the boundary nodes list.
Definition MooseMesh.C:1493
virtual bnd_node_iterator bndNodesEnd()
Definition MooseMesh.C:1501

Referenced by AuxiliarySystem::computeMortarNodalVars(), AuxiliarySystem::computeNodalVarsHelper(), DMMooseGetEmbedding_Private(), NearestNodeLocator::findNodes(), FEProblemBase::getCurrentAlgebraicBndNodeRange(), ActivateElementsUserObjectBase::getNewlyActivatedBndNodeRange(), EqualValueBoundaryConstraint::getPrimaryNodeIDByCoord(), MooseMesh::meshChanged(), ElementSubdomainModifierBase::reinitializedBndNodeRange(), and NearestNodeLocator::updatePatch().

◆ getBoundaryString()

std::string MooseMesh::getBoundaryString ( const BoundaryID  boundary_id) const
inherited

Return the name of the boundary given the id, if it exists.

Otherwise, return the id as a string.

Definition at line 1755 of file MooseMesh.C.

1756{
1757 const auto name = getBoundaryName(boundary_id);
1758 return name.size() ? name : std::to_string(boundary_id);
1759}

◆ getCheckedPointerParam()

template<typename T >
T MooseBase::getCheckedPointerParam ( const std::string &  name,
const std::string &  error_string = "" 
) const
inherited

Verifies that the requested parameter exists and is not NULL and returns it to the caller.

The template parameter must be a pointer or an error will be thrown.

Definition at line 450 of file MooseBase.h.

451{
452 return _pars.getCheckedPointerParam<T>(name, error_string);
453}
T getCheckedPointerParam(const std::string &name, const std::string &error_string="") const
Verifies that the requested parameter exists and is not NULL and returns it to the caller.

◆ getCoarseningMap()

const std::vector< std::pair< unsigned int, QpMap > > & MooseMesh::getCoarseningMap ( const Elem &  elem,
int  input_side 
)
inherited

Get the coarsening map for a given element type.

This will tell you what quadrature points to copy from and to for stateful material properties on newly created elements from Adaptivity.

Parameters
elemThe element that represents the element type you need the coarsening map for.
input_sideThe side to map

Definition at line 2593 of file MooseMesh.C.

2594{
2595 std::pair<int, ElemType> the_pair(input_side, elem.type());
2596
2598 mooseError("Could not find a suitable qp refinement map!");
2599
2600 return _elem_type_to_coarsening_map[the_pair];
2601}

Referenced by ProjectMaterialProperties::onBoundary(), and ProjectMaterialProperties::onElement().

◆ getConstructNodeListFromSideList()

bool MooseMesh::getConstructNodeListFromSideList ( )
inlineinherited

Return construct node list from side list boolean.

Definition at line 1557 of file MooseMesh.h.

Referenced by SidesetAroundSubdomainUpdater::SidesetAroundSubdomainUpdater().

◆ getCoordSystem() [1/2]

const std::map< SubdomainID, Moose::CoordinateSystemType > & MooseMesh::getCoordSystem ( ) const
inherited

Get the map from subdomain ID to coordinate system type, e.g.

xyz, rz, or r-spherical

Definition at line 4291 of file MooseMesh.C.

4292{
4293 return _coord_sys;
4294}

Referenced by MooseMesh::setGeneralAxisymmetricCoordAxes().

◆ getCoordSystem() [2/2]

Moose::CoordinateSystemType MooseMesh::getCoordSystem ( SubdomainID  sid) const
inherited

Get the coordinate system type, e.g.

xyz, rz, or r-spherical, for the provided subdomain id sid

Definition at line 4259 of file MooseMesh.C.

4260{
4261 auto it = _coord_sys.find(sid);
4262 if (it != _coord_sys.end())
4263 return (*it).second;
4264 else
4265 mooseError("Requested subdomain ", sid, " does not exist.");
4266}

Referenced by SubProblem::getCoordSystem(), and ComputeLinearFVGreenGaussGradientVolumeThread::operator()().

◆ getDataFileName()

std::string DataFileInterface::getDataFileName ( const std::string &  param) const
inherited

Deprecated method.

The data file paths are now automatically set within the InputParameters object, so using getParam<DataFileName>("param_name") is now sufficient.

Definition at line 21 of file DataFileInterface.C.

22{
23 _parent.mooseDeprecated("getDataFileName() is deprecated. The file path is now directly set "
24 "within the InputParameters.\nUse getParam<DataFileName>(\"",
25 param,
26 "\") instead.");
27 return _parent.getParam<DataFileName>(param);
28}
const ParallelParamObject & _parent
void mooseDeprecated(Args &&... args) const
Emits a deprecation warning prefixed with the object name and type, and a stack trace.
Definition MooseBase.h:317

◆ getDataFileNameByName()

std::string DataFileInterface::getDataFileNameByName ( const std::string &  relative_path) const
inherited

Deprecated method.

Use getDataFilePath() instead.

Definition at line 31 of file DataFileInterface.C.

32{
33 _parent.mooseDeprecated("getDataFileNameByName() is deprecated. Use getDataFilePath(\"",
34 relative_path,
35 "\") instead.");
36 return getDataFilePath(relative_path);
37}
std::string getDataFilePath(const std::string &relative_path) const
Returns the path of a data file for a given relative file path.

◆ getDataFilePath()

std::string DataFileInterface::getDataFilePath ( const std::string &  relative_path) const
inherited

Returns the path of a data file for a given relative file path.

This can be used for hardcoded datafile names and will search the same locations as getDataFileName

Definition at line 40 of file DataFileInterface.C.

41{
42 // This should only ever be used with relative paths. There is no point to
43 // use this search path with an absolute path.
44 if (std::filesystem::path(relative_path).is_absolute())
45 _parent.mooseWarning("While using getDataFilePath(\"",
46 relative_path,
47 "\"): This API should not be used for absolute paths.");
48
49 // This will search the data paths for this relative path
50 std::optional<std::string> error;
52 {
53 // Throw on error so that if getPath() fails, we can throw an error
54 // with the context of _parent.mooseError()
55 Moose::ScopedThrowOnError scoped_throw_on_error;
56
57 try
58 {
59 found_path = Moose::DataFileUtils::getPath(relative_path);
60 }
61 catch (std::exception & e)
62 {
63 error = e.what();
64 }
65 }
66
67 if (error)
68 _parent.mooseError(*error);
69
70 mooseAssert(found_path.context == Moose::DataFileUtils::Context::DATA,
71 "Should only ever obtain data");
72 mooseAssert(found_path.data_name, "Should be set");
73
74 const std::string msg =
75 "Using data file '" + found_path.path + "' from " + *found_path.data_name + " data";
76 _parent.mooseInfo(msg);
77
78 return found_path.path;
79}
void mooseWarning(Args &&... args) const
Emits a warning prefixed with object name and type.
Definition MooseBase.h:299
void mooseInfo(Args &&... args) const
Definition MooseBase.h:334
Scoped helper for setting Moose::_throw_on_error during this scope.
Definition Moose.h:308
@ DATA
From installed/in-tree data.
Path getPath(std::string path, const GetPathOptions &options={})
Get the data path for a given path, searching the registered data.
Representation of a data file path.
std::optional< std::string > data_name
The name of the data registry the file came from (with context == DATA)
Context context
Context for the file (where it came from)

Referenced by DataFileInterface::getDataFileNameByName().

◆ getDisplaceNodeListBySideList()

bool MooseMesh::getDisplaceNodeListBySideList ( )
inlineinherited

Return displace node list by side list boolean.

Definition at line 1560 of file MooseMesh.h.

◆ getElementIDIndex()

unsigned int MooseMesh::getElementIDIndex ( const std::string &  id_name) const
inlineinherited

Return the accessing integer for an extra element integer with its name.

Definition at line 2331 of file MooseMesh.h.

2332{
2333 if (!hasElementID(id_name))
2334 mooseError("Mesh does not have element ID for ", id_name);
2335 return getMesh().get_elem_integer_index(id_name);
2336}
bool hasElementID(const std::string &id_name) const
Whether mesh has an extra element integer with a given name.
Definition MooseMesh.h:2325

Referenced by MooseMesh::areElemIDsIdentical().

◆ getElemIDMapping()

std::unordered_map< dof_id_type, std::set< dof_id_type > > MooseMesh::getElemIDMapping ( const std::string &  from_id_name,
const std::string &  to_id_name 
) const
inherited

Definition at line 1134 of file MooseMesh.C.

1135{
1136 auto & mesh_base = getMesh();
1137
1138 if (!mesh_base.has_elem_integer(from_id_name))
1139 mooseError("Mesh does not have the element integer name '", from_id_name, "'");
1140 if (!mesh_base.has_elem_integer(to_id_name))
1141 mooseError("Mesh does not have the element integer name '", to_id_name, "'");
1142
1143 const auto id1 = mesh_base.get_elem_integer_index(from_id_name);
1144 const auto id2 = mesh_base.get_elem_integer_index(to_id_name);
1145
1146 std::unordered_map<dof_id_type, std::set<dof_id_type>> id_map;
1147 for (const auto id : getAllElemIDs(id1))
1148 id_map[id] = std::set<dof_id_type>();
1149
1150 for (const auto & elem : mesh_base.active_local_element_ptr_range())
1151 id_map[elem->get_extra_integer(id1)].insert(elem->get_extra_integer(id2));
1152
1153 for (auto & [id, ids] : id_map)
1154 {
1155 libmesh_ignore(id); // avoid overzealous gcc 9.4 unused var warning
1156 comm().set_union(ids);
1157 }
1158
1159 return id_map;
1160}
std::set< dof_id_type > getAllElemIDs(unsigned int elem_id_index) const
Return all the unique element IDs for an extra element integer with its index.
Definition MooseMesh.C:1163
void libmesh_ignore(const Args &...)

◆ getElemIDsOnBlocks()

std::set< dof_id_type > MooseMesh::getElemIDsOnBlocks ( unsigned int  elem_id_index,
const std::set< SubdomainID > &  blks 
) const
inherited

Return all the unique element IDs for an extra element integer with its index on a set of subdomains.

Definition at line 1173 of file MooseMesh.C.

1174{
1175 std::set<dof_id_type> unique_ids;
1176 for (auto & blk : blks)
1177 {
1178 auto it = _block_id_mapping[elem_id_index].find(blk);
1179 if (it == _block_id_mapping[elem_id_index].end())
1180 mooseError("Block ", blk, " is not available on the mesh");
1181
1182 for (auto & mid : it->second)
1183 unique_ids.insert(mid);
1184 }
1185 return unique_ids;
1186}

◆ getFileName()

virtual std::string MooseMesh::getFileName ( ) const
inlinevirtualinherited

Returns the name of the mesh file read to produce this mesh if any or an empty string otherwise.

Reimplemented in FileMesh, and TiledMesh.

Definition at line 1211 of file MooseMesh.h.

1211{ return ""; }

◆ getGeneralAxisymmetricCoordAxis()

const std::pair< Point, RealVectorValue > & MooseMesh::getGeneralAxisymmetricCoordAxis ( SubdomainID  subdomain_id) const
inherited

Gets the general axisymmetric coordinate axis for a block.

Parameters
[in]subdomain_idSubdomain ID for which to get axisymmetric coordinate axis

Definition at line 4353 of file MooseMesh.C.

4354{
4355 auto it = _subdomain_id_to_rz_coord_axis.find(subdomain_id);
4356 if (it != _subdomain_id_to_rz_coord_axis.end())
4357 return (*it).second;
4358 else
4359 mooseError("Requested subdomain ", subdomain_id, " does not exist.");
4360}
std::unordered_map< SubdomainID, std::pair< Point, RealVectorValue > > _subdomain_id_to_rz_coord_axis
Map of subdomain ID to general axisymmetric axis.
Definition MooseMesh.h:2038

◆ getGhostedBoundaries()

const std::set< unsigned int > & MooseMesh::getGhostedBoundaries ( ) const
inherited

Return a writable reference to the set of ghosted boundary IDs.

Definition at line 3305 of file MooseMesh.C.

3306{
3307 return _ghosted_boundaries;
3308}

◆ getGhostedBoundaryInflation()

const std::vector< Real > & MooseMesh::getGhostedBoundaryInflation ( ) const
inherited

Return a writable reference to the _ghosted_boundaries_inflation vector.

Definition at line 3311 of file MooseMesh.C.

3312{
3314}
std::vector< Real > _ghosted_boundaries_inflation
Definition MooseMesh.h:1723

Referenced by NearestNodeLocator::findNodes(), and NearestNodeLocator::updatePatch().

◆ getGhostingPatchSize()

unsigned int MooseMesh::getGhostingPatchSize ( ) const
inlineinherited

Getter for the ghosting_patch_size parameter.

Definition at line 634 of file MooseMesh.h.

634{ return _ghosting_patch_size; }
unsigned int _ghosting_patch_size
The number of nearest neighbors to consider for ghosting purposes when iteration patch update strateg...
Definition MooseMesh.h:1729

Referenced by NearestNodeLocator::findNodes(), and NearestNodeLocator::updatePatch().

◆ getHigherDSide()

unsigned int MooseMesh::getHigherDSide ( const Elem *  elem) const
inherited

Returns the local side ID of the interior parent aligned with the lower dimensional element.

Definition at line 1659 of file MooseMesh.C.

1660{
1662
1664 return it->second;
1665 else
1666 return libMesh::invalid_uint;
1667}

◆ getHitNode() [1/2]

const hit::Node * MooseBase::getHitNode ( ) const
inlineinherited
Returns
The block-level hit node for this object, if any

Definition at line 136 of file MooseBase.h.

136{ return getHitNode(_pars); }

Referenced by MooseBase::callMooseError(), MooseBase::getHitNode(), and MooseBase::messagePrefix().

◆ getHitNode() [2/2]

const hit::Node * MooseBase::getHitNode ( const InputParameters &  params)
staticprivateinherited

Internal method for getting a hit node (if available) given a set of parameters.

Needs to be static so that we can call it externally from InputParameters for errors that do not have context of the MooseBase

Definition at line 167 of file MooseBase.C.

168{
169 if (const auto hit_node = params.getHitNode())
170 if (!hit_node->isRoot())
171 return hit_node;
172 return nullptr;
173}
const hit::Node * getHitNode(const std::string &param) const

◆ getInflatedProcessorBoundingBox()

BoundingBox MooseMesh::getInflatedProcessorBoundingBox ( Real  inflation_multiplier = 0.01) const
inherited

Get a (slightly inflated) processor bounding box.

Parameters
inflation_multiplierThis amount will be multiplied by the length of the diagonal of the bounding box to find the amount to inflate the bounding box by in all directions.

Definition at line 3483 of file MooseMesh.C.

3484{
3485 // Grab a bounding box to speed things up. Note that
3486 // local_bounding_box is *not* equivalent to processor_bounding_box
3487 // with processor_id() except in serial.
3488 BoundingBox bbox = MeshTools::create_local_bounding_box(getMesh());
3489
3490 // Inflate the bbox just a bit to deal with roundoff
3491 // Adding 1% of the diagonal size in each direction on each end
3492 Real inflation_amount = inflation_multiplier * (bbox.max() - bbox.min()).norm();
3493 Point inflation(inflation_amount, inflation_amount, inflation_amount);
3494
3495 bbox.first -= inflation; // min
3496 bbox.second += inflation; // max
3497
3498 return bbox;
3499}
libMesh::BoundingBox create_local_bounding_box(const MeshBase &mesh)
auto norm(const T &a)

Referenced by PointVariableSamplerBase::execute(), PositionsFunctorValueSampler::execute(), CartesianGridDivision::initialize(), and RadialAverage::updateCommunicationLists().

◆ getInterfaceConnectedBlocks()

std::set< SubdomainID > MooseMesh::getInterfaceConnectedBlocks ( const BoundaryID  bid) const
inherited

Get the list of subdomains contacting the given boundary.

Parameters
bidThe boundary ID you want to get the subdomain IDs for.
Returns
All subdomain IDs contacting given boundary ID

Definition at line 3607 of file MooseMesh.C.

3608{
3609 std::set<SubdomainID> subdomain_ids = getBoundaryConnectedBlocks(bid);
3610 for (const auto & it : _neighbor_subdomain_boundary_ids)
3611 if (it.second.find(bid) != it.second.end())
3612 subdomain_ids.insert(it.first);
3613
3614 return subdomain_ids;
3615}
std::set< SubdomainID > getBoundaryConnectedBlocks(const BoundaryID bid) const
Get the list of subdomains associated with the given boundary.
Definition MooseMesh.C:3585

◆ getKokkosMesh() [1/2]

Moose::Kokkos::Mesh * MooseMesh::getKokkosMesh ( )
inlineinherited

Accessor for Kokkos mesh object.

Definition at line 678 of file MooseMesh.h.

678{ return _kokkos_mesh.get(); }
std::unique_ptr< Moose::Kokkos::Mesh > _kokkos_mesh
Pointer to Kokkos mesh object.
Definition MooseMesh.h:1600

◆ getKokkosMesh() [2/2]

const Moose::Kokkos::Mesh * MooseMesh::getKokkosMesh ( ) const
inlineinherited

Definition at line 679 of file MooseMesh.h.

679{ return _kokkos_mesh.get(); }

◆ getLocalNodeRange()

ConstNodeRange * MooseMesh::getLocalNodeRange ( )
inherited

Definition at line 1276 of file MooseMesh.C.

1277{
1278 if (!_local_node_range)
1279 {
1280 TIME_SECTION("getLocalNodeRange", 5);
1281
1282 _local_node_range = std::make_unique<ConstNodeRange>(getMesh().local_nodes_begin(),
1283 getMesh().local_nodes_end());
1284 }
1285
1286 return _local_node_range.get();
1287}
std::unique_ptr< libMesh::ConstNodeRange > _local_node_range
Definition MooseMesh.h:1664

Referenced by AuxiliarySystem::computeNodalVarsHelper(), FEProblemBase::getCurrentAlgebraicNodeRange(), and MooseMesh::meshChanged().

◆ getLowerDElem()

const Elem * MooseMesh::getLowerDElem ( const Elem *  elem,
unsigned short int  side 
) const
inherited

Returns a const pointer to a lower dimensional element that corresponds to a side of a higher dimensional element.

This relationship is established through an internal_parent; if there is no lowerDElem, nullptr is returned.

Definition at line 1648 of file MooseMesh.C.

1649{
1650 auto it = _higher_d_elem_side_to_lower_d_elem.find(std::make_pair(elem, side));
1651
1653 return it->second;
1654 else
1655 return nullptr;
1656}

Referenced by GhostLowerDElems::operator()(), DisplacedProblem::reinitElemNeighborAndLowerD(), and FEProblemBase::reinitElemNeighborAndLowerD().

◆ getLowerDElemMap()

const std::unordered_map< std::pair< const Elem *, unsigned short int >, const Elem * > & MooseMesh::getLowerDElemMap ( ) const
inlineinherited

This function attempts to return the map from a high-order element side to its corresponding lower-d element.

Definition at line 2365 of file MooseMesh.h.

2366{
2368}

◆ getMaxInDimension()

Real MooseMesh::getMaxInDimension ( unsigned int  component) const
virtualinherited

Reimplemented in AnnularMesh, and GeneratedMesh.

Definition at line 2149 of file MooseMesh.C.

2150{
2151 mooseAssert(_mesh, "The MeshBase has not been constructed");
2152 mooseAssert(component < _bounds.size(), "Requested dimension out of bounds");
2153
2154 return _bounds[component][MAX];
2155}

Referenced by MooseMesh::dimensionWidth(), AnnularMesh::getMaxInDimension(), GeneratedMesh::getMaxInDimension(), and PropertyReadFile::PropertyReadFile().

◆ getMaxLeafSize()

unsigned int MooseMesh::getMaxLeafSize ( ) const
inlineinherited

Getter for the maximum leaf size parameter.

Definition at line 639 of file MooseMesh.h.

639{ return _max_leaf_size; }
unsigned int _max_leaf_size
Definition MooseMesh.h:1732

Referenced by NearestNodeLocator::findNodes(), and NearestNodeLocator::updatePatch().

◆ getMaxNodesPerElem()

unsigned int MooseMesh::getMaxNodesPerElem ( ) const
inlineinherited

Get the maximum number of nodes per element.

Definition at line 1291 of file MooseMesh.h.

1291{ return _max_nodes_per_elem; }

◆ getMaxNodesPerSide()

unsigned int MooseMesh::getMaxNodesPerSide ( ) const
inlineinherited

Get the maximum number of nodes per side.

Definition at line 1296 of file MooseMesh.h.

1296{ return _max_nodes_per_side; }

◆ getMaxSidesPerElem()

unsigned int MooseMesh::getMaxSidesPerElem ( ) const
inlineinherited

Get the maximum number of sides per element.

Definition at line 1286 of file MooseMesh.h.

1286{ return _max_sides_per_elem; }

◆ getMesh() [1/4]

MeshBase & MooseMesh::getMesh ( )
inherited

Accessor for the underlying libMesh Mesh object.

Definition at line 3512 of file MooseMesh.C.

3513{
3514 mooseAssert(_mesh, "Mesh hasn't been created");
3515 return *_mesh;
3516}

Referenced by CopyMeshPartitioner::_do_partition(), MooseMesh::activeLocalElementsBegin(), MooseMesh::activeLocalElementsBegin(), MooseMesh::activeLocalElementsEnd(), MooseMesh::activeLocalElementsEnd(), Adaptivity::adaptMesh(), FEProblemBase::addAnyRedistributers(), MooseMesh::addQuadratureNode(), MooseMesh::addUniqueNode(), MultiAppConservativeTransfer::adjustTransferredSolution(), MultiAppConservativeTransfer::adjustTransferredSolutionNearestPoint(), NonlinearSystemBase::assembleScalingVector(), Assembly::Assembly(), MooseMesh::buildActiveSideList(), MooseMesh::buildBndElemList(), MFEMMesh::buildDummyMooseMesh(), MooseMesh::buildElemIDInfo(), MooseMesh::buildFiniteVolumeInfo(), MooseMesh::buildHRefinementAndCoarseningMaps(), MooseMesh::buildLowerDMesh(), AnnularMesh::buildMesh(), ConcentricCircleMesh::buildMesh(), FileMesh::buildMesh(), GeneratedMesh::buildMesh(), MeshGeneratorMesh::buildMesh(), PatternedMesh::buildMesh(), RinglebMesh::buildMesh(), SpiralAnnularMesh::buildMesh(), StitchedMesh::buildMesh(), TiledMesh::buildMesh(), ImageMesh::buildMesh2D(), ImageMesh::buildMesh3D(), MooseMesh::buildNodeList(), MooseMesh::buildNodeListFromSideList(), MooseMesh::buildPeriodicNodeMap(), MooseMesh::buildPeriodicNodeSets(), MooseMesh::buildPRefinementAndCoarseningMaps(), buildSerialMFEMMesh(), MooseMesh::buildSideList(), MooseMesh::cacheChangedLists(), MultiAppVariableValueSamplePostprocessorTransfer::cacheElemToPostprocessorData(), MooseMesh::cacheInfo(), MooseMesh::changeBoundaryId(), MooseMesh::checkCoordinateSystems(), MooseMesh::computeMaxPerElemAndSide(), NonlinearSystemBase::constraintJacobians(), NonlinearSystemBase::constraintResiduals(), PenetrationThread::createInfoForElem(), MortarInterfaceWarehouse::createMortarInterface(), MooseMesh::detectOrthogonalDimRanges(), MooseMesh::detectPairedSidesets(), MooseMesh::dimension(), ExtraElementIntegerDivision::divisionIndex(), FunctorBinnedValuesDivision::divisionIndex(), SubdomainsDivision::divisionIndex(), DumpObjectsProblem::dumpVariableHelper(), ElementalVariableValue::ElementalVariableValue(), ElementGroupCentroidPositions::ElementGroupCentroidPositions(), ElementMaterialSampler::ElementMaterialSampler(), MooseMesh::elemPtr(), MooseMesh::elemPtr(), FunctorNodalCorrector::execute(), MultiAppUserObjectTransfer::execute(), MultiAppVariableValueSamplePostprocessorTransfer::execute(), ElemSideNeighborLayersTester::execute(), NodalNormalsCorner::execute(), NodalNormalsPreprocessor::execute(), MultiAppMFEMTolibMeshShapeEvaluationTransfer::extractlibMeshNodePositions(), ExtraElementIntegerDivision::ExtraElementIntegerDivision(), ExtraIDIntegralVectorPostprocessor::ExtraIDIntegralVectorPostprocessor(), CentroidMultiApp::fillPositions(), QuadraturePointMultiApp::fillPositions(), MultiAppGeometricInterpolationTransfer::fillSourceInterpolationPoints(), ActivateElementsUserObjectBase::finalize(), SidesetAroundSubdomainUpdater::finalize(), FunctorNodalCorrector::FunctorNodalCorrector(), ElementSubdomainModifierBase::gatherMovingBoundaryChanges(), ElementSubdomainModifierBase::gatherMovingBoundaryChangesHelper(), MooseMesh::getActiveLocalElementRange(), MooseMesh::getActiveNodeRange(), MooseMesh::getBlocksMaxDimension(), MooseMesh::getBoundaryID(), MooseMesh::getBoundaryIDs(), MooseMesh::getBoundaryIDs(), MooseMesh::getBoundaryIDs(), MooseMesh::getBoundaryIDs(), MooseMesh::getBoundaryName(), MooseMesh::getElementIDIndex(), MooseMesh::getElemIDMapping(), FEProblemBase::getEvaluableElementRange(), MooseMesh::getInflatedProcessorBoundingBox(), MooseMesh::getLocalNodeRange(), SubProblem::getMaterialPropertyBlockNames(), SubProblem::getMaterialPropertyBoundaryNames(), MooseMesh::getNodeList(), FEProblemBase::getNonlinearEvaluableElementRange(), MooseMesh::getPointLocator(), MooseMesh::getSubdomainID(), MooseMesh::getSubdomainIDs(), MooseMesh::getSubdomainIDs(), MooseMesh::getSubdomainName(), MooseMesh::ghostGhostedBoundaries(), Exodus::handleExodusIOMeshRenumbering(), MooseMesh::hasElementID(), MooseMesh::hasLowerD(), MooseMesh::init(), DisplacedProblem::UpdateDisplacedMeshThread::init(), ExtraElementIntegerDivision::initialize(), ElementCentroidPositions::initialize(), ElementGroupCentroidPositions::initialize(), FunctorExtremaPositions::initialize(), FunctorPositions::initialize(), NodePositions::initialize(), ParsedDownSelectionPositions::initialize(), QuadraturePointsPositions::initialize(), FunctorTimes::initialize(), VerifyElementUniqueID::initialize(), VerifyNodalUniqueID::initialize(), AuxKernelBase::initialSetup(), NodalVariableValue::initialSetup(), MultiAppDofCopyTransfer::initialSetup(), SampledOutput::initSample(), MooseMesh::internalNodeToElemMap(), MultiAppGeometricInterpolationTransfer::interpolateTargetPoints(), LinearNodalConstraint::LinearNodalConstraint(), MooseMesh::localNodesBegin(), MooseMesh::localNodesBegin(), MooseMesh::localNodesEnd(), MooseMesh::localNodesEnd(), Moose::Mortar::loopOverMortarSegments(), MooseMesh::maxElemId(), MooseMesh::maxNodeId(), GhostingUserObject::meshChanged(), RadialAverage::meshChanged(), DisplacedProblem::meshChanged(), FEProblemBase::meshChanged(), MoveNodesByParsedExpressionModifier::moveNodes(), NearestNodeLocator::nearestNode(), MooseMesh::nElem(), MooseMesh::nNodes(), NodalPatchRecovery::NodalPatchRecovery(), NodalVariableValue::NodalVariableValue(), ComputeNodalUserObjectsThread::onNode(), MortarUserObjectThread::operator()(), CacheInfoThread::operator()(), ProxyRelationshipManager::operator()(), PenetrationThread::operator()(), ComputeMortarFunctor::operator()(), XDA::output(), Exodus::outputEmptyTimestep(), Exodus::outputNodalVariables(), Nemesis::outputSetup(), MooseMesh::prepare(), MoveNodesByParsedExpressionModifier::prepare(), BoundaryPreservedMarker::preserveBoundary(), MooseMesh::printInfo(), MultiAppMFEMTolibMeshShapeEvaluationTransfer::projectlibMeshNodalValues(), MooseMesh::queryElemPtr(), MooseMesh::queryElemPtr(), MooseMesh::queryNodePtr(), FileMesh::read(), PropertyReadFile::readData(), RedistributeProperties::redistribute(), SubProblem::restrictionBoundaryCheckName(), SubProblem::restrictionSubdomainCheckName(), MooseMesh::setBoundaryName(), NonlinearSystemBase::setConstraintSecondaryValues(), XFEMInterface::setDisplacedMesh(), ActivateElementsUserObjectBase::setNewBoundayName(), MooseMesh::setPartitionerHelper(), MooseMesh::setSubdomainName(), Moose::PeriodicBCHelper::setupPeriodicBoundaries(), SidesetAroundSubdomainUpdater::SidesetAroundSubdomainUpdater(), MooseMesh::sideWithBoundaryID(), MoveNodesToGeometryModifierBase::snapNodes(), MultiAppDofCopyTransfer::transfer(), MultiAppMFEMTolibMeshShapeEvaluationTransfer::transferVariables(), DisplacedProblem::undisplaceMesh(), MooseMesh::update(), MooseMesh::updateActiveSemiLocalNodeRange(), Adaptivity::updateErrorVectors(), RandomData::updateGenerators(), DisplacedProblem::updateMesh(), DisplacedProblem::updateMesh(), SampledOutput::updateSample(), VariableCondensationPreconditioner::VariableCondensationPreconditioner(), MoveNodesByParsedExpressionModifier::writeOutputs(), and MooseMesh::writeRecoveryFiles().

◆ getMesh() [2/4]

const MeshBase & MooseMesh::getMesh ( ) const
inherited

Definition at line 3519 of file MooseMesh.C.

3520{
3521 mooseAssert(_mesh, "Mesh hasn't been created");
3522 return *_mesh;
3523}

◆ getMesh() [3/4]

MeshBase & MooseMesh::getMesh ( const std::string &  name)
inherited

◆ getMesh() [4/4]

const MeshBase & MooseMesh::getMesh ( const std::string &  name) const
inherited

◆ getMeshDisplacementVariable()

std::optional< std::reference_wrapper< std::string const > > MFEMMesh::getMeshDisplacementVariable ( ) const
inlineinherited

Returns an optional reference to displacement variable name.

Definition at line 56 of file MFEMMesh.h.

57 {
59 }

Referenced by MFEMProblem::getMeshDisplacementGridFunction().

◆ getMeshPtr()

const MeshBase * MooseMesh::getMeshPtr ( ) const
inherited

◆ getMFEMParMesh() [1/2]

mfem::ParMesh & MFEMMesh::getMFEMParMesh ( )
inlineinherited

Accessors for the _mfem_par_mesh object.

Definition at line 33 of file MFEMMesh.h.

33{ return *_mfem_par_mesh; }

Referenced by MFEMMesh::getMFEMParMesh().

◆ getMFEMParMesh() [2/2]

const mfem::ParMesh & MFEMMesh::getMFEMParMesh ( ) const
inlineinherited

Definition at line 105 of file MFEMMesh.h.

106{
107 return const_cast<MFEMMesh *>(this)->getMFEMParMesh();
108}
mfem::ParMesh & getMFEMParMesh()
Accessors for the _mfem_par_mesh object.
Definition MFEMMesh.h:33

◆ getMFEMParMeshPtr()

std::shared_ptr< mfem::ParMesh > MFEMMesh::getMFEMParMeshPtr ( )
inlineinherited

Copy a shared_ptr to the mfem::ParMesh object.

Definition at line 39 of file MFEMMesh.h.

39{ return _mfem_par_mesh; }

Referenced by MFEMProblem::setMesh().

◆ getMinInDimension()

Real MooseMesh::getMinInDimension ( unsigned int  component) const
virtualinherited

Returns the min or max of the requested dimension respectively.

Reimplemented in AnnularMesh, and GeneratedMesh.

Definition at line 2140 of file MooseMesh.C.

2141{
2142 mooseAssert(_mesh, "The MeshBase has not been constructed");
2143 mooseAssert(component < _bounds.size(), "Requested dimension out of bounds");
2144
2145 return _bounds[component][MIN];
2146}

Referenced by MooseMesh::dimensionWidth(), AnnularMesh::getMinInDimension(), GeneratedMesh::getMinInDimension(), and PropertyReadFile::PropertyReadFile().

◆ getMooseApp()

MooseApp & MooseBase::getMooseApp ( ) const
inlineinherited

Get the MooseApp this class is associated with.

Definition at line 87 of file MooseBase.h.

87{ return _app; }

Referenced by ChainControlSetupAction::act(), AddDefaultConvergenceAction::addDefaultMultiAppFixedPointConvergence(), AddDefaultConvergenceAction::addDefaultNonlinearConvergence(), AddDefaultConvergenceAction::addDefaultSteadyStateConvergence(), FEProblemBase::advanceState(), ParsedChainControl::buildFunction(), ReporterTransferInterface::checkHasReporterValue(), LinearFVGradientManager::checkRestartedGradientHistory(), AddDefaultConvergenceAction::checkUnusedMultiAppFixedPointConvergenceParameters(), AddDefaultConvergenceAction::checkUnusedNonlinearConvergenceParameters(), AddDefaultConvergenceAction::checkUnusedSteadyStateConvergenceParameters(), Coupleable::checkWritableVar(), ComponentPhysicsInterface::ComponentPhysicsInterface(), Coupleable::Coupleable(), MortarInterfaceWarehouse::createMortarInterface(), EigenProblem::doFreeNonlinearPowerIterations(), Terminator::execute(), FEProblemSolve::FEProblemSolve(), SolutionInvalidInterface::flagInvalidSolutionInternal(), ChainControl::getChainControlDataSystem(), FEProblemBase::getDistribution(), FEProblemBase::getFunction(), FEProblemBase::getFVInterpolationMethod(), FEProblemBase::getMultiApp(), FEProblemBase::getSampler(), DefaultConvergenceBase::getSharedExecutionerParam(), FEProblemBase::getUserObjectBase(), FEProblemBase::getVectorPostprocessorObjectByName(), ChainControlDataPostprocessor::initialSetup(), MaterialPropertyInterface::MaterialPropertyInterface(), MooseVariableDataFV< OutputType >::MooseVariableDataFV(), ProgressOutput::output(), PetscOutputInterface::petscLinearOutput(), PetscOutputInterface::petscNonlinearOutput(), Moose::PetscSupport::PetscOptionsScope::PetscOptionsScope(), PetscOutputInterface::PetscOutputInterface(), PostprocessorInterface::postprocessorsAdded(), MultiApp::preTransfer(), AuxiliarySystem::registerFVGradient(), Reporter::Reporter(), ReporterInterface::reportersAdded(), MultiApp::restore(), and VectorPostprocessorInterface::vectorPostprocessorsAdded().

◆ getNodeBlockIds()

const std::set< SubdomainID > & MooseMesh::getNodeBlockIds ( const Node &  node) const
inherited

Return list of blocks to which the given node belongs.

Definition at line 1447 of file MooseMesh.C.

1448{
1449 auto it = _block_node_list.find(node.id());
1450
1451 if (it == _block_node_list.end())
1452 mooseError("Unable to find node: ", node.id(), " in any block list.");
1453
1454 return it->second;
1455}

Referenced by ComputeNodalKernelJacobiansThread::onNode(), ComputeNodalKernelsThread::onNode(), ComputeNodalUserObjectsThread::onNode(), ComputeInitialConditionThread::operator()(), and MoveNodesToGeometryModifierBase::snapNodes().

◆ getNodeList()

const std::vector< dof_id_type > & MooseMesh::getNodeList ( boundary_id_type  nodeset_id) const
inherited

Return a writable reference to a vector of node IDs that belong to nodeset_id.

Definition at line 3534 of file MooseMesh.C.

3535{
3536 std::map<boundary_id_type, std::vector<dof_id_type>>::const_iterator it =
3537 _node_set_nodes.find(nodeset_id);
3538
3539 if (it == _node_set_nodes.end())
3540 {
3541 // On a distributed mesh we might not know about a remote nodeset,
3542 // so we'll return an empty vector and hope the nodeset exists
3543 // elsewhere.
3544 if (!getMesh().is_serial())
3545 {
3546 static const std::vector<dof_id_type> empty_vec;
3547 return empty_vec;
3548 }
3549 // On a replicated mesh we should know about every nodeset and if
3550 // we're asked for one that doesn't exist then it must be a bug.
3551 else
3552 {
3553 mooseError("Unable to nodeset ID: ", nodeset_id, '.');
3554 }
3555 }
3556
3557 return it->second;
3558}

Referenced by LinearNodalConstraint::LinearNodalConstraint(), MoveNodesByParsedExpressionModifier::moveNodes(), NodalScalarKernel::NodalScalarKernel(), EqualValueBoundaryConstraint::populateSecondaryNodes(), and MoveNodesToGeometryModifierBase::snapNodes().

◆ getNormalByBoundaryID()

const RealVectorValue & MooseMesh::getNormalByBoundaryID ( BoundaryID  id) const
inherited

Returns the normal vector associated with a given BoundaryID.

It's only valid to call this when AddAllSideSetsByNormals is active.

Definition at line 2829 of file MooseMesh.C.

2830{
2831 mooseAssert(_boundary_to_normal_map.get() != nullptr, "Boundary To Normal Map not built!");
2832
2833 // Note: Boundaries that are not in the map (existing boundaries) will default
2834 // construct a new RealVectorValue - (x,y,z)=(0, 0, 0)
2835 return (*_boundary_to_normal_map)[id];
2836}
std::unique_ptr< std::map< BoundaryID, RealVectorValue > > _boundary_to_normal_map
The boundary to normal map - valid only when AddAllSideSetsByNormals is active.
Definition MooseMesh.h:1694

◆ getPairedBoundaryMapping()

const std::pair< BoundaryID, BoundaryID > * MooseMesh::getPairedBoundaryMapping ( unsigned int  component) const
inherited

This function attempts to return the paired boundary ids for the given component.

For example, in a generated 2D mesh, passing 0 for the "x" component will return (3, 1).

Must have called detectPairedSidesets() prior to using.

Parameters
component- An integer representing the desired component (dimension)
Returns
std::pair pointer - The matching boundary pairs for the passed component

Definition at line 2306 of file MooseMesh.C.

2307{
2309 mooseError("Trying to retrieve automatic paired mapping for a mesh that is not regular and "
2310 "orthogonal");
2311
2312 mooseAssert(component < dimension(), "Requested dimension out of bounds");
2313
2315 mooseError("MooseMesh::getPairedBoundaryMapping(): Paired boundaries not built; must call "
2316 "detectPairedSidesets() first");
2317
2318 if (component < _paired_boundary->size())
2319 return &(*_paired_boundary)[component];
2320 else
2321 return nullptr;
2322}
bool hasDetectedPairedSidesets() const
Whether or not detectedPairedSidesets() has been called.
Definition MooseMesh.h:1000

Referenced by MooseMesh::addPeriodicVariable().

◆ getParallelType()

ParallelType MooseMesh::getParallelType ( ) const
inlineinherited
Returns
The parallel type

Definition at line 1156 of file MooseMesh.h.

1156{ return _parallel_type; }

Referenced by MultiAppDofCopyTransfer::initialSetup().

◆ getParam() [1/2]

template<typename T >
const T & MooseBase::getParam ( const std::string &  name) const
inherited

Retrieve a parameter for the object.

Parameters
nameThe name of the parameter
Returns
The value of the parameter

Definition at line 406 of file MooseBase.h.

407{
408 return InputParameters::getParamHelper<T>(name, _pars);
409}

Referenced by CommonOutputAction::act(), CreateDisplacedProblemAction::act(), DiffusionCG::addFEKernels(), DiffusionFV::addFVKernels(), CylinderComponent::addMeshGenerators(), FEProblemBase::addOutput(), ArrayParsedAux::ArrayParsedAux(), BicubicSplineFunction::BicubicSplineFunction(), SurfaceDelaunayGeneratorBase::checkBoundaryAndHolesParams(), Console::Console(), CutMeshByLevelSetGenerator::CutMeshByLevelSetGenerator(), DebugResidualAux::DebugResidualAux(), DerivativeParsedMaterialTempl< is_ad >::DerivativeParsedMaterialTempl(), DiffusionPhysicsBase::DiffusionPhysicsBase(), DynamicObjectRegistrationAction::DynamicObjectRegistrationAction(), EigenKernel::EigenKernel(), ElementGroupCentroidPositions::ElementGroupCentroidPositions(), MFEMEigenvaluesPostprocessor::execute(), FEProblemSolve::FEProblemSolve(), SurfaceDelaunayGeneratorBase::fillDelaunayOptions(), ParsedVectorReporter::finalize(), FiniteDifferencePreconditioner::FiniteDifferencePreconditioner(), FixedPointSolve::FixedPointSolve(), ParsedSubdomainGeneratorBase::functionInitialize(), BlockDeletionGenerator::generate(), BoundaryLayerSubdomainGenerator::generate(), BreakMeshByBlockGenerator::generate(), CoarsenBlockGenerator::generate(), FileMeshGenerator::generate(), MeshExtruderGenerator::generate(), RefineBlockGenerator::generate(), RefineSidesetGenerator::generate(), SubdomainsFromPartitionerGenerator::generate(), GenericConstantRankTwoTensorTempl< is_ad >::GenericConstantRankTwoTensorTempl(), GenericConstantSymmetricRankTwoTensorTempl< is_ad >::GenericConstantSymmetricRankTwoTensorTempl(), GeometricSearchInterface::GeometricSearchInterface(), MooseApp::getCheckpointDirectories(), DataFileInterface::getDataFileName(), ExecutorInterface::getExecutor(), DefaultConvergenceBase::getSharedExecutionerParam(), AddVariableAction::init(), AdvancedOutput::init(), FixedPointIterationAdaptiveDT::init(), TimeSequenceStepper::init(), AdvancedOutput::initAvailableLists(), AttribThread::initFrom(), AttribExecutionOrderGroup::initFrom(), AttribSysNum::initFrom(), AttribResidualObject::initFrom(), AttribDisplaced::initFrom(), BlockRestrictable::initializeBlockRestrictable(), BoundaryRestrictable::initializeBoundaryRestrictable(), Console::initialSetup(), SampledOutput::initSample(), IterationAdaptiveDT::limitDTToPostprocessorValue(), MooseMesh::MooseMesh(), MooseVariableBase::MooseVariableBase(), MoveNodesByParsedExpressionModifier::MoveNodesByParsedExpressionModifier(), MultiPostprocessorConvergence::MultiPostprocessorConvergence(), PerfGraphOutput::output(), Console::outputSystemInformation(), ParsedCurveGenerator::ParsedCurveGenerator(), ParsedElementDeletionGenerator::ParsedElementDeletionGenerator(), ParsedGenerateNodeset::ParsedGenerateNodeset(), ParsedGenerateSideset::ParsedGenerateSideset(), ParsedMaterialTempl< is_ad >::ParsedMaterialTempl(), ParsedNodeTransformGenerator::ParsedNodeTransformGenerator(), ParsedODEKernel::ParsedODEKernel(), ParsedPostprocessor::ParsedPostprocessor(), ParsedReporterBase::ParsedReporterBase(), ParsedVectorReporter::ParsedVectorReporter(), ProjectSideSetOntoLevelSetGenerator::ProjectSideSetOntoLevelSetGenerator(), ReferenceResidualInterface::ReferenceResidualInterface(), Moose::FV::setInterpolationMethod(), SetupMeshAction::setupMesh(), MooseApp::setupOptions(), Output::setWallTimeIntervalFromCommandLineParam(), PetscOutput::solveSetup(), TimePeriod::TimePeriod(), UniqueExtraIDMeshGenerator::UniqueExtraIDMeshGenerator(), VariableCondensationPreconditioner::VariableCondensationPreconditioner(), VectorOfPostprocessors::VectorOfPostprocessors(), and XYQuadrilateralMeshFromBoundaryCurve::XYQuadrilateralMeshFromBoundaryCurve().

◆ getParam() [2/2]

template<typename T1 , typename T2 >
std::vector< std::pair< T1, T2 > > MooseBase::getParam ( const std::string &  param1,
const std::string &  param2 
) const
inherited

Retrieve two parameters and provide pair of parameters for the object.

Parameters
param1The name of first parameter
param2The name of second parameter
Returns
Vector of pairs of first and second parameters

Definition at line 443 of file MooseBase.h.

444{
445 return _pars.get<T1, T2>(param1, param2);
446}

◆ getPatchSize()

unsigned int MooseMesh::getPatchSize ( ) const
inherited

Getter for the patch_size parameter.

Definition at line 3465 of file MooseMesh.C.

3466{
3467 return _patch_size;
3468}
unsigned int _patch_size
The number of nodes to consider in the NearestNode neighborhood.
Definition MooseMesh.h:1726

Referenced by NearestNodeLocator::findNodes(), and NearestNodeLocator::updatePatch().

◆ getPatchUpdateStrategy()

const Moose::PatchUpdateType & MooseMesh::getPatchUpdateStrategy ( ) const
inherited

Get the current patch update strategy.

Definition at line 3477 of file MooseMesh.C.

3478{
3480}
Moose::PatchUpdateType _patch_update_strategy
The patch update strategy.
Definition MooseMesh.h:1735

Referenced by FEProblemBase::possiblyRebuildGeomSearchPatches().

◆ getPCoarseningMap()

const std::vector< QpMap > & MooseMesh::getPCoarseningMap ( const Elem &  elem) const
inherited

Get the map describing for each volumetric quadrature point (qp) on the coarse level which qp on the previous finer level the coarse qp is closest to.

Definition at line 4474 of file MooseMesh.C.

4475{
4477}
const std::vector< QpMap > & getPCoarseningMapHelper(const Elem &elem, const std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > &) const
Definition MooseMesh.C:4452

Referenced by ProjectMaterialProperties::onElement().

◆ getPCoarseningMapHelper()

const std::vector< QpMap > & MooseMesh::getPCoarseningMapHelper ( const Elem &  elem,
const std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > &   
) const
privateinherited

Definition at line 4452 of file MooseMesh.C.

4455{
4456 mooseAssert(elem.active() && elem.p_refinement_flag() == Elem::JUST_COARSENED,
4457 "These are the conditions that should be met for requesting a coarsening map");
4458 return libmesh_map_find(map, std::make_pair(elem.type(), elem.p_level()));
4459}

Referenced by MooseMesh::getPCoarseningMap(), and MooseMesh::getPCoarseningSideMap().

◆ getPCoarseningSideMap()

const std::vector< QpMap > & MooseMesh::getPCoarseningSideMap ( const Elem &  elem) const
inherited

Get the map describing for each side quadrature point (qp) on the coarse level which qp on the previous finer level the coarse qp is closest to.

Definition at line 4480 of file MooseMesh.C.

Referenced by ProjectMaterialProperties::onBoundary().

◆ getPointLocator()

std::unique_ptr< libMesh::PointLocatorBase > MooseMesh::getPointLocator ( ) const
virtualinherited

◆ getPRefinementMap()

const std::vector< QpMap > & MooseMesh::getPRefinementMap ( const Elem &  elem) const
inherited

Get the map describing for each volumetric quadrature point (qp) on the refined level which qp on the previous coarser level the fine qp is closest to.

Definition at line 4462 of file MooseMesh.C.

4463{
4465}
const std::vector< QpMap > & getPRefinementMapHelper(const Elem &elem, const std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > &) const
Definition MooseMesh.C:4441

Referenced by ProjectMaterialProperties::onElement().

◆ getPRefinementMapHelper()

const std::vector< QpMap > & MooseMesh::getPRefinementMapHelper ( const Elem &  elem,
const std::map< std::pair< libMesh::ElemType, unsigned int >, std::vector< QpMap > > &   
) const
privateinherited

Definition at line 4441 of file MooseMesh.C.

4444{
4445 // We are actually seeking the map stored with the p_level - 1 key, e.g. the refinement map that
4446 // maps from the previous p_level to this element's p_level
4447 return libmesh_map_find(map,
4448 std::make_pair(elem.type(), cast_int<unsigned int>(elem.p_level() - 1)));
4449}

Referenced by MooseMesh::getPRefinementMap(), and MooseMesh::getPRefinementSideMap().

◆ getPRefinementSideMap()

const std::vector< QpMap > & MooseMesh::getPRefinementSideMap ( const Elem &  elem) const
inherited

Get the map describing for each side quadrature point (qp) on the refined level which qp on the previous coarser level the fine qp is closest to.

Definition at line 4468 of file MooseMesh.C.

Referenced by ProjectMaterialProperties::onBoundary().

◆ getQuadratureNode()

Node * MooseMesh::getQuadratureNode ( const Elem *  elem,
const unsigned short int  side,
const unsigned int  qp 
)
inherited

Get a specified quadrature node.

Parameters
elemThe element the quadrature point is on
sideThe side the quadrature point is on
qpThe quadrature point number associated with the point

Definition at line 1607 of file MooseMesh.C.

1610{
1611 mooseAssert(_elem_to_side_to_qp_to_quadrature_nodes.find(elem->id()) !=
1613 "Elem has no quadrature nodes!");
1614 mooseAssert(_elem_to_side_to_qp_to_quadrature_nodes[elem->id()].find(side) !=
1616 "Side has no quadrature nodes!");
1617 mooseAssert(_elem_to_side_to_qp_to_quadrature_nodes[elem->id()][side].find(qp) !=
1619 "qp not found on side!");
1620
1621 return _elem_to_side_to_qp_to_quadrature_nodes[elem->id()][side][qp];
1622}

Referenced by GapValueAux::computeValue(), NearestNodeDistanceAux::computeValue(), PenetrationAux::computeValue(), and GeometricSearchData::updateQuadratureNodes().

◆ getRefinementMap()

const std::vector< std::vector< QpMap > > & MooseMesh::getRefinementMap ( const Elem &  elem,
int  parent_side,
int  child,
int  child_side 
)
inherited

Get the refinement map for a given element type.

This will tell you what quadrature points to copy from and to for stateful material properties on newly created elements from Adaptivity.

Parameters
elemThe element that represents the element type you need the refinement map for.
parent_sideThe side of the parent to map (-1 if not mapping parent sides)
childThe child number (-1 if not mapping child internal sides)
child_sideThe side number of the child (-1 if not mapping sides)

TODO: When running with parallel mesh + stateful adaptivty we will need to make sure that each processor has a complete map. This may require parallel communication. This is likely to happen when running on a mixed element mesh.

Definition at line 2529 of file MooseMesh.C.

2530{
2531 if (child == -1) // Doing volume mapping or parent side mapping
2532 {
2533 mooseAssert(parent_side == child_side,
2534 "Parent side must match child_side if not passing a specific child!");
2535
2536 std::pair<int, ElemType> the_pair(parent_side, elem.type());
2537
2539 mooseError("Could not find a suitable qp refinement map!");
2540
2541 return _elem_type_to_refinement_map[the_pair];
2542 }
2543 else // Need to map a child side to parent volume qps
2544 {
2545 std::pair<int, int> child_pair(child, child_side);
2546
2549 _elem_type_to_child_side_refinement_map[elem.type()].find(child_pair) ==
2551 mooseError("Could not find a suitable qp refinement map!");
2552
2553 return _elem_type_to_child_side_refinement_map[elem.type()][child_pair];
2554 }
2555
2562}

Referenced by ProjectMaterialProperties::onBoundary(), ProjectMaterialProperties::onElement(), and ProjectMaterialProperties::onInternalSide().

◆ getRenamedParam()

template<typename T >
const T & MooseBase::getRenamedParam ( const std::string &  old_name,
const std::string &  new_name 
) const
inherited

Retrieve a renamed parameter for the object.

This helper makes sure we check both names before erroring, and that only one parameter is passed to avoid silent errors

Parameters
old_namethe old name for the parameter
new_namethe new name for the parameter

Definition at line 420 of file MooseBase.h.

421{
422 // Most important: accept new parameter
423 if (isParamSetByUser(new_name) && !isParamValid(old_name))
424 return getParam<T>(new_name);
425 // Second most: accept old parameter
426 if (isParamValid(old_name) && !isParamSetByUser(new_name))
427 return getParam<T>(old_name);
428 // Third most: accept default for new parameter
429 if (isParamValid(new_name) && !isParamValid(old_name))
430 return getParam<T>(new_name);
431 // Refuse: no default, no value passed
432 if (!isParamValid(old_name) && !isParamValid(new_name))
433 mooseError("parameter '" + new_name +
434 "' is being retrieved without being set.\nDid you misspell it?");
435 // Refuse: both old and new parameters set by user
436 else
437 mooseError("Parameter '" + new_name + "' may not be provided alongside former parameter '" +
438 old_name + "'");
439}

◆ getRestartableData()

template<typename T , typename... Args>
const T & Restartable::getRestartableData ( const std::string &  data_name) const
protectedinherited

Declare a piece of data as "restartable" and initialize it Similar to declareRestartableData but returns a const reference to the object.

Forwarded arguments are not allowed in this case because we assume that the object is restarted and we won't need different constructors to initialize it.

NOTE: This returns a const reference! Make sure you store it in a const reference!

Parameters
data_nameThe name of the data (usually just use the same name as the member variable)

Definition at line 294 of file Restartable.h.

295{
296 return declareRestartableDataHelper<T>(data_name, nullptr).get();
297}

◆ getSharedPtr() [1/2]

std::shared_ptr< MooseObject > MooseObject::getSharedPtr ( )
inherited

Get another shared pointer to this object that has the same ownership group.

Wrapper around shared_from_this().

Definition at line 70 of file MooseObject.C.

71{
72 try
73 {
74 return shared_from_this();
75 }
76 catch (std::bad_weak_ptr &)
77 {
78 mooseError(not_shared_error);
79 }
80}

Referenced by MFEMProblem::addImagComponentToBC(), MFEMProblem::addImagComponentToKernel(), MFEMProblem::addRealComponentToBC(), MFEMProblem::addRealComponentToKernel(), and WebServerControl::addServerAction().

◆ getSharedPtr() [2/2]

std::shared_ptr< const MooseObject > MooseObject::getSharedPtr ( ) const
inherited

Definition at line 83 of file MooseObject.C.

84{
85 try
86 {
87 return shared_from_this();
88 }
89 catch (std::bad_weak_ptr &)
90 {
91 mooseError(not_shared_error);
92 }
93}

◆ getSubdomainBoundaryIds()

const std::set< BoundaryID > & MooseMesh::getSubdomainBoundaryIds ( const SubdomainID  subdomain_id) const
inherited

Get the list of boundary ids associated with the given subdomain id.

Parameters
subdomain_idThe subdomain ID you want to get the boundary ids for.
Returns
All boundary IDs connected to elements in the give

Definition at line 3561 of file MooseMesh.C.

3562{
3563 const auto it = _sub_to_data.find(subdomain_id);
3564
3565 if (it == _sub_to_data.end())
3566 mooseError("Unable to find subdomain ID: ", subdomain_id, '.');
3567
3568 return it->second.boundary_ids;
3569}

Referenced by MooseMesh::getSubdomainInterfaceBoundaryIds(), and FEProblemBase::prepareMaterials().

◆ getSubdomainID()

SubdomainID MooseMesh::getSubdomainID ( const SubdomainName &  subdomain_name) const
inherited

Get the associated subdomain ID for the subdomain name.

Parameters
subdomain_nameThe name of the subdomain
Returns
The subdomain id from the passed subdomain name.

Definition at line 1678 of file MooseMesh.C.

1679{
1680 return MooseMeshUtils::getSubdomainID(subdomain_name, getMesh());
1681}
SubdomainID getSubdomainID(const SubdomainName &subdomain_name, const MeshBase &mesh)
Gets the subdomain ID associated with the given SubdomainName.

Referenced by SystemBase::addVariable(), FEProblemBase::checkProblemIntegrity(), FVInterfaceKernel::FVInterfaceKernel(), TimedSubdomainModifier::getSubdomainIDAndCheck(), SolutionIC::initialSetup(), ElementSubdomainModifierBase::initialSetup(), PiecewiseByBlockFunctorMaterialTempl< T >::PiecewiseByBlockFunctorMaterialTempl(), PiecewiseConstantByBlockMaterialTempl< is_ad >::PiecewiseConstantByBlockMaterialTempl(), MooseMesh::prepare(), MooseMesh::setCoordSystem(), and MooseMesh::setGeneralAxisymmetricCoordAxes().

◆ getSubdomainIDs() [1/2]

std::set< SubdomainID > MooseMesh::getSubdomainIDs ( const std::set< SubdomainName > &  subdomain_names) const
inherited

Definition at line 1690 of file MooseMesh.C.

1691{
1692 return MooseMeshUtils::getSubdomainIDs(getMesh(), subdomain_name);
1693}
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.

◆ getSubdomainIDs() [2/2]

std::vector< SubdomainID > MooseMesh::getSubdomainIDs ( const std::vector< SubdomainName > &  subdomain_names) const
inherited

◆ getSubdomainInterfaceBoundaryIds()

std::set< BoundaryID > MooseMesh::getSubdomainInterfaceBoundaryIds ( const SubdomainID  subdomain_id) const
inherited

Get the list of boundaries that contact the given subdomain.

Parameters
subdomain_idThe subdomain ID you want to get the boundary ids for.
Returns
All boundary IDs connected to elements in the given subdomain

Definition at line 3572 of file MooseMesh.C.

3573{
3574 const auto & bnd_ids = getSubdomainBoundaryIds(subdomain_id);
3575 std::set<BoundaryID> boundary_ids(bnd_ids.begin(), bnd_ids.end());
3576 std::unordered_map<SubdomainID, std::set<BoundaryID>>::const_iterator it =
3577 _neighbor_subdomain_boundary_ids.find(subdomain_id);
3578
3579 boundary_ids.insert(it->second.begin(), it->second.end());
3580
3581 return boundary_ids;
3582}
const std::set< BoundaryID > & getSubdomainBoundaryIds(const SubdomainID subdomain_id) const
Get the list of boundary ids associated with the given subdomain id.
Definition MooseMesh.C:3561

◆ getSubdomainName()

const std::string & MooseMesh::getSubdomainName ( SubdomainID  subdomain_id) const
inherited

◆ getSubdomainNames()

std::vector< SubdomainName > MooseMesh::getSubdomainNames ( const std::vector< SubdomainID > &  subdomain_ids) const
inherited

Get the associated subdomainNames for the subdomain ids that are passed in.

Parameters
subdomain_idsThe ids of the subdomains
Returns
The subdomain names from the passed subdomain ids.

Definition at line 1720 of file MooseMesh.C.

1721{
1722 std::vector<SubdomainName> names(subdomain_ids.size());
1723
1724 for (unsigned int i = 0; i < subdomain_ids.size(); i++)
1725 names[i] = getSubdomainName(subdomain_ids[i]);
1726
1727 return names;
1728}

Referenced by NonlinearSystemBase::checkKernelCoverage(), FEProblemBase::checkProblemIntegrity(), SampledOutput::cloneMesh(), BlockRestrictable::initializeBlockRestrictable(), and SolutionIC::initialSetup().

◆ getUniqueCoordSystem()

Moose::CoordinateSystemType MooseMesh::getUniqueCoordSystem ( ) const
inherited

Get the coordinate system from the mesh, it must be the same in all subdomains otherwise this will error.

Definition at line 4269 of file MooseMesh.C.

4270{
4271 const auto unique_system = _coord_sys.find(*meshSubdomains().begin())->second;
4272 // Check that it is actually unique
4273 bool result = std::all_of(
4274 std::next(_coord_sys.begin()),
4275 _coord_sys.end(),
4276 [unique_system](
4277 typename std::unordered_map<SubdomainID, Moose::CoordinateSystemType>::const_reference
4278 item) { return (item.second == unique_system); });
4279 if (!result)
4280 mooseError("The unique coordinate system of the mesh was requested by the mesh contains "
4281 "multiple blocks with different coordinate systems");
4282
4284 mooseError("General axisymmetric coordinate axes are being used, and it is currently "
4285 "conservatively assumed that in this case there is no unique coordinate system.");
4286
4287 return unique_system;
4288}

Referenced by HDGKernel::HDGKernel().

◆ ghostGhostedBoundaries()

void MooseMesh::ghostGhostedBoundaries ( )
inherited

Actually do the ghosting of boundaries that need to be ghosted to this processor.

Definition at line 3378 of file MooseMesh.C.

3379{
3380 // No need to do this if using a serial mesh
3381 // We do not need to ghost boundary elements when _need_ghost_ghosted_boundaries
3382 // is not true. _need_ghost_ghosted_boundaries can be set by a mesh generator
3383 // where boundaries are already ghosted accordingly
3385 return;
3386
3387 TIME_SECTION("GhostGhostedBoundaries", 3);
3388
3389 parallel_object_only();
3390
3391 DistributedMesh & mesh = dynamic_cast<DistributedMesh &>(getMesh());
3392
3393 // We clear ghosted elements that were added by previous invocations of this
3394 // method but leave ghosted elements that were added by other code, e.g.
3395 // OversampleOutput, untouched
3396 mesh.clear_extra_ghost_elems(_ghost_elems_from_ghost_boundaries);
3398
3399 std::set<const Elem *, CompareElemsByLevel> boundary_elems_to_ghost;
3400 std::set<Node *> connected_nodes_to_ghost;
3401
3402 std::vector<const Elem *> family_tree;
3403
3404 for (const auto & t : mesh.get_boundary_info().build_side_list())
3405 {
3406 auto elem_id = std::get<0>(t);
3407 auto bc_id = std::get<2>(t);
3408
3409 if (_ghosted_boundaries.find(bc_id) != _ghosted_boundaries.end())
3410 {
3411 Elem * elem = mesh.elem_ptr(elem_id);
3412
3413#ifdef LIBMESH_ENABLE_AMR
3414 elem->family_tree(family_tree);
3415 Elem * parent = elem->parent();
3416 while (parent)
3417 {
3418 family_tree.push_back(parent);
3419 parent = parent->parent();
3420 }
3421#else
3422 family_tree.clear();
3423 family_tree.push_back(elem);
3424#endif
3425 for (const auto & felem : family_tree)
3426 {
3427 boundary_elems_to_ghost.insert(felem);
3428
3429 // The entries of connected_nodes_to_ghost need to be
3430 // non-constant, so that they will work in things like
3431 // UpdateDisplacedMeshThread. The container returned by
3432 // family_tree contains const Elems even when the Elem
3433 // it is called on is non-const, so once that interface
3434 // gets fixed we can remove this const_cast.
3435 for (unsigned int n = 0; n < felem->n_nodes(); ++n)
3436 connected_nodes_to_ghost.insert(const_cast<Node *>(felem->node_ptr(n)));
3437 }
3438 }
3439 }
3440
3441 // We really do want to store this by value instead of by reference
3442 const auto prior_ghost_elems = mesh.extra_ghost_elems();
3443
3444 mesh.comm().allgather_packed_range(&mesh,
3445 connected_nodes_to_ghost.begin(),
3446 connected_nodes_to_ghost.end(),
3447 extra_ghost_elem_inserter<Node>(mesh));
3448
3449 mesh.comm().allgather_packed_range(&mesh,
3450 boundary_elems_to_ghost.begin(),
3451 boundary_elems_to_ghost.end(),
3452 extra_ghost_elem_inserter<Elem>(mesh));
3453
3454 const auto & current_ghost_elems = mesh.extra_ghost_elems();
3455
3456 std::set_difference(current_ghost_elems.begin(),
3457 current_ghost_elems.end(),
3458 prior_ghost_elems.begin(),
3459 prior_ghost_elems.end(),
3462}
bool _need_ghost_ghosted_boundaries
A parallel mesh generator such as DistributedRectilinearMeshGenerator already make everything ready.
Definition MooseMesh.h:1999
std::set< Elem * > _ghost_elems_from_ghost_boundaries
Set of elements ghosted by ghostGhostedBoundaries.
Definition MooseMesh.h:1993
void family_tree(T elem, std::vector< T > &family, bool reset=true)

Referenced by FEProblemBase::ghostGhostedBoundaries().

◆ hasBase()

bool MooseBase::hasBase ( ) const
inlineinherited
Returns
Whether or not this object has a registered base (set via InputParameters::registerBase())

Definition at line 142 of file MooseBase.h.

142{ return _pars.hasBase(); }
bool hasBase() const

◆ hasDetectedPairedSidesets()

bool MooseMesh::hasDetectedPairedSidesets ( ) const
inlineinherited

Whether or not detectedPairedSidesets() has been called.

Definition at line 1000 of file MooseMesh.h.

1000{ return _paired_boundary.has_value(); }

Referenced by MooseMesh::getPairedBoundaryMapping(), and Moose::PeriodicBCHelper::setupPeriodicBoundaries().

◆ hasElementID()

bool MooseMesh::hasElementID ( const std::string &  id_name) const
inlineinherited

Whether mesh has an extra element integer with a given name.

Definition at line 2325 of file MooseMesh.h.

2326{
2327 return getMesh().has_elem_integer(id_name);
2328}

Referenced by MooseMesh::getElementIDIndex().

◆ hasLowerD()

bool MooseMesh::hasLowerD ( ) const
inlineinherited
Returns
Whether there are any lower-dimensional blocks

Definition at line 1545 of file MooseMesh.h.

1545{ return getMesh().elem_dimensions().size() > 1; }

Referenced by GhostLowerDElems::operator()().

◆ hasMeshBase()

bool MooseMesh::hasMeshBase ( ) const
inlineinherited

Whether mesh base object was constructed or not.

Definition at line 1244 of file MooseMesh.h.

1244{ return _mesh.get() != nullptr; }

Referenced by MeshGeneratorMesh::buildMesh(), and buildSerialMFEMMesh().

◆ hasSecondOrderElements()

bool MooseMesh::hasSecondOrderElements ( )
inherited

check if the mesh has SECOND order elements

Definition at line 3779 of file MooseMesh.C.

3780{
3781 bool mesh_has_second_order_elements = false;
3782 for (auto it = activeLocalElementsBegin(), end = activeLocalElementsEnd(); it != end; ++it)
3783 if ((*it)->default_order() == SECOND)
3784 {
3785 mesh_has_second_order_elements = true;
3786 break;
3787 }
3788
3789 // We checked our local elements, so take the max over all processors.
3790 comm().max(mesh_has_second_order_elements);
3791 return mesh_has_second_order_elements;
3792}
const MeshBase::element_iterator activeLocalElementsEnd()
Definition MooseMesh.C:3121
MeshBase::element_iterator activeLocalElementsBegin()
Calls active_local_nodes_begin/end() on the underlying libMesh mesh object.
Definition MooseMesh.C:3115

Referenced by Assembly::Assembly(), and SolutionUserObjectBase::SolutionUserObjectBase().

◆ init()

void MFEMMesh::init ( )
overridevirtualinherited

Initialize the MFEM ParMesh and placeholder MOOSE mesh.

Reimplemented from MooseMesh.

Definition at line 48 of file MFEMMesh.C.

49{
50 // MooseMesh::init() handles the libMesh dummy mesh:
51 // - recovery: reads the libMesh mesh back from its checkpoint file
52 // - normal run: calls buildMesh(), which for MFEMMesh builds both the
53 // dummy libMesh mesh and the MFEM ParMesh
55
57 {
58 // MooseMesh::init() already restored the libMesh dummy mesh from its checkpoint.
59 // Now restore the MFEM parallel mesh from its own checkpoint file.
60 const auto checkpoint_file = _app.getRestartRecoverFileBase() + _app.checkpointSuffix() +
61 ".mfem.mesh." + std::to_string(this->processor_id());
62 std::ifstream input(checkpoint_file);
63 if (!input)
64 mooseError("Unable to open MFEM recovery mesh file '", checkpoint_file, "'.");
65
66 _mfem_par_mesh = std::make_shared<mfem::ParMesh>(this->comm().get(), input);
67
68 if (isParamSetByUser("displacement"))
69 _mesh_displacement_variable.emplace(getParam<std::string>("displacement"));
70 }
71}
static const std::string & checkpointSuffix()
The file suffix for the checkpoint mesh.
Definition MooseApp.C:3044
std::string getRestartRecoverFileBase() const
The file_base for the recovery file.
Definition MooseApp.h:500
bool isRecovering() const
Whether or not this is a "recover" calculation.
Definition MooseApp.C:1674
virtual void init()
Initialize the Mesh object.
Definition MooseMesh.C:2892
bool allowRecovery() const
Returns whether this mesh is allowed to read a recovery file.
Definition MooseMesh.h:1573

◆ interiorLowerDBlocks()

const std::set< SubdomainID > & MooseMesh::interiorLowerDBlocks ( ) const
inlineinherited

◆ internalNodeToElemMap()

std::unordered_map< dof_id_type, std::vector< dof_id_type > > & MooseMesh::internalNodeToElemMap ( )
privateinherited

If not already created, creates a map from every node to all elements to which they are connected.

Definition at line 1212 of file MooseMesh.C.

1213{
1214 if (!_node_to_elem_map_built) // Guard the creation with a double checked lock
1215 {
1216 Threads::spin_mutex::scoped_lock lock(Threads::spin_mtx);
1217
1219 {
1220 // This is allowing the timing to be run even with threads
1221 // This is safe because all threads will be waiting on this section when it runs
1222 // NOTE: Do not copy this construction to other places without thinking REALLY hard about it
1223 // The PerfGraph is NOT threadsafe and will cause all kinds of havok if care isn't taken
1225 Threads::in_threads = false;
1226 TIME_SECTION("nodeToElemMap", 5, "Building Node To Elem Map");
1228
1229 mooseAssert(_node_to_elem_map.empty(), "Expected empty map before building");
1230 for (const auto & elem : getMesh().active_element_ptr_range())
1231 for (unsigned int n = 0; n < elem->n_nodes(); n++)
1232 _node_to_elem_map[elem->node_id(n)].push_back(elem->id());
1233
1234 _node_to_elem_map_built = true; // MUST be set at the end for double-checked locking to work!
1235 }
1236 }
1237 return _node_to_elem_map;
1238}
std::unordered_map< dof_id_type, std::vector< dof_id_type > > _node_to_elem_map
A map of all of the current nodes to the elements that they are connected to.
Definition MooseMesh.h:1671
bool _node_to_elem_map_built
Whether _node_to_elem_map has been built.
Definition MooseMesh.h:1674
spin_mutex spin_mtx

Referenced by MooseMesh::addQuadratureNode(), MooseMesh::nodeToElemMap(), and MooseMesh::possiblyRebuildNodeToElemMap().

◆ isBoundaryElem() [1/2]

bool MooseMesh::isBoundaryElem ( dof_id_type  elem_id) const
inherited

Returns true if the requested element is in the list of boundary elements, false otherwise.

Definition at line 3655 of file MooseMesh.C.

3656{
3657 bool found_elem = false;
3658 for (const auto & it : _bnd_elem_ids)
3659 {
3660 if (it.second.find(elem_id) != it.second.end())
3661 {
3662 found_elem = true;
3663 break;
3664 }
3665 }
3666 return found_elem;
3667}

Referenced by BoundaryMarker::computeElementMarker().

◆ isBoundaryElem() [2/2]

bool MooseMesh::isBoundaryElem ( dof_id_type  elem_id,
BoundaryID  bnd_id 
) const
inherited

Returns true if the requested element is in the list of boundary elements for the specified boundary, false otherwise.

Definition at line 3670 of file MooseMesh.C.

3671{
3672 bool found_elem = false;
3673 auto it = _bnd_elem_ids.find(bnd_id);
3674 if (it != _bnd_elem_ids.end())
3675 if (it->second.find(elem_id) != it->second.end())
3676 found_elem = true;
3677 return found_elem;
3678}

◆ isBoundaryFullyExternalToSubdomains()

bool MooseMesh::isBoundaryFullyExternalToSubdomains ( BoundaryID  bid,
const std::set< SubdomainID > &  blk_group 
) const
inherited

Returns whether a boundary (given by its id) is not crossing through a group of blocks, by which we mean that elements on both sides of the boundary are in those blocks.

Parameters
bidthe id of the boundary of interest
blk_groupthe group of blocks potentially traversed
Returns
whether the boundary does not cross between the subdomains in the group

Definition at line 1372 of file MooseMesh.C.

1374{
1375 mooseAssert(_bnd_elem_range, "Boundary element range is not initialized");
1376
1377 // Loop over all side elements of the mesh, select those on the boundary
1378 for (const auto & bnd_elem : *_bnd_elem_range)
1379 {
1380 const auto & [elem_ptr, elem_side, elem_bid] = *bnd_elem;
1381 if (elem_bid == bid)
1382 {
1383 // If an element is internal to the group of subdomain, check the neighbor
1384 if (blk_group.find(elem_ptr->subdomain_id()) != blk_group.end())
1385 {
1386 const auto * const neighbor = elem_ptr->neighbor_ptr(elem_side);
1387
1388 // If we did not ghost the neighbor, we cannot decide
1389 if (neighbor == libMesh::remote_elem)
1390 mooseError("Insufficient level of geometrical ghosting to determine "
1391 "if a boundary is internal to the mesh");
1392 // If the neighbor does not exist, then we are on the edge of the mesh
1393 if (!neighbor)
1394 continue;
1395 // If the neighbor is also in the group of subdomain,
1396 // then the boundary cuts the subdomains
1397 if (blk_group.find(neighbor->subdomain_id()) != blk_group.end())
1398 return false;
1399 }
1400 }
1401 }
1402 return true;
1403}

◆ isBoundaryNode() [1/2]

bool MooseMesh::isBoundaryNode ( dof_id_type  node_id) const
inherited

Returns true if the requested node is in the list of boundary nodes, false otherwise.

Definition at line 3629 of file MooseMesh.C.

3630{
3631 bool found_node = false;
3632 for (const auto & it : _bnd_node_ids)
3633 {
3634 if (it.second.find(node_id) != it.second.end())
3635 {
3636 found_node = true;
3637 break;
3638 }
3639 }
3640 return found_node;
3641}

Referenced by LowerBoundNodalKernel::computeQpJacobian(), UpperBoundNodalKernel::computeQpJacobian(), LowerBoundNodalKernel::computeQpOffDiagJacobian(), UpperBoundNodalKernel::computeQpOffDiagJacobian(), LowerBoundNodalKernel::computeQpResidual(), UpperBoundNodalKernel::computeQpResidual(), and NodalNormalsPreprocessor::execute().

◆ isBoundaryNode() [2/2]

bool MooseMesh::isBoundaryNode ( dof_id_type  node_id,
BoundaryID  bnd_id 
) const
inherited

Returns true if the requested node is in the list of boundary nodes for the specified boundary, false otherwise.

Definition at line 3644 of file MooseMesh.C.

3645{
3646 bool found_node = false;
3647 std::map<boundary_id_type, std::set<dof_id_type>>::const_iterator it = _bnd_node_ids.find(bnd_id);
3648 if (it != _bnd_node_ids.end())
3649 if (it->second.find(node_id) != it->second.end())
3650 found_node = true;
3651 return found_node;
3652}

◆ isCustomPartitionerRequested()

bool MooseMesh::isCustomPartitionerRequested ( ) const
inherited

Setter and getter for _custom_partitioner_requested.

Definition at line 3773 of file MooseMesh.C.

3774{
3776}

◆ isDisplaced() [1/2]

bool MooseMesh::isDisplaced ( ) const
inlineinherited

whether this mesh is a displaced mesh

Definition at line 1368 of file MooseMesh.h.

1368{ return _is_displaced; }
bool _is_displaced
Whether this mesh is displaced.
Definition MooseMesh.h:2023

◆ isDisplaced() [2/2]

void MooseMesh::isDisplaced ( bool  is_displaced)
inlineinherited

Set whether this mesh is a displaced mesh.

Definition at line 1363 of file MooseMesh.h.

1363{ _is_displaced = is_displaced; }

◆ isDistributedMesh()

bool MFEMMesh::isDistributedMesh ( ) const
inlineoverridevirtualinherited

Returns the final Mesh distribution type.

Reimplemented from MooseMesh.

Definition at line 67 of file MFEMMesh.h.

67{ return true; }

◆ isFiniteVolumeInfoDirty()

bool MooseMesh::isFiniteVolumeInfoDirty ( ) const
inlineinherited
Returns
whether the finite volume information is dirty

Definition at line 1459 of file MooseMesh.h.

1459{ return _finite_volume_info_dirty; }

Referenced by SideIntegralPostprocessor::initialSetup(), and FEProblemBase::meshChanged().

◆ isKokkosObject()

bool MooseObject::isKokkosObject ( ) const
inlineinherited

Get whether this object is a Kokkos functor The parameter MooseBase::kokkos_object_param is set by the Kokkos base classes.

Definition at line 63 of file MooseObject.h.

63{ return parameters().isKokkosObject(); }
bool isKokkosObject() const
Returns whether this InputParameters belongs to a Kokkos object Checks whether MooseBase::kokkos_obje...

Referenced by AttribKokkos::initFrom(), BlockRestrictable::initializeBlockRestrictable(), and BoundaryRestrictable::initializeBoundaryRestrictable().

◆ isParallelTypeForced()

bool MooseMesh::isParallelTypeForced ( ) const
inlineinherited

Tell the user if the distribution was overriden for any reason.

Definition at line 1146 of file MooseMesh.h.

1146{ return _parallel_type_overridden; }

◆ isParamSetByUser()

bool MooseBase::isParamSetByUser ( const std::string &  name) const
inlineinherited

Test if the supplied parameter is set by a user, as opposed to not set or set to default.

Parameters
nameThe name of the parameter to test

Definition at line 205 of file MooseBase.h.

206 {
208 }
bool isParamSetByUser(const std::string &name) const
Method returns true if the parameter was set by the user.

Referenced by DiffusionCG::addFEBCs(), DiffusionCG::addFEKernels(), DiffusionPhysicsBase::addInitialConditions(), CylinderComponent::addMeshGenerators(), AdvancedExtruderGenerator::AdvancedExtruderGenerator(), MFEMMesh::buildMesh(), MFEMBoundarySubMesh::buildSubMesh(), MFEMDomainSubMesh::buildSubMesh(), SurfaceDelaunayGeneratorBase::checkBoundaryAndHolesParams(), LibtorchNeuralNetControl::conditionalParameterError(), ConservativeAdvectionBCTempl< is_ad >::ConservativeAdvectionBCTempl(), MFEMNewtonNonlinearSolver::ConstructSolver(), MooseApp::copyInputs(), DiffusionPhysicsBase::DiffusionPhysicsBase(), MooseApp::errorCheck(), FileMesh::FileMesh(), FullSolveMultiApp::FullSolveMultiApp(), MeshDiagnosticsGenerator::generate(), OrientSurfaceMeshGenerator::generate(), SurfaceSubdomainsFromAllNormalsGenerator::generate(), MFEMVectorFESpace::getFECName(), MooseBase::getRenamedParam(), MFEMEigenproblem::getRHSCoefficient(), DefaultConvergenceBase::getSharedExecutionerParam(), AddVariableAction::init(), MFEMMesh::init(), PhysicsBase::initializePhysics(), ElementSubdomainModifierBase::initialSetup(), MatrixSymmetryCheck::MatrixSymmetryCheck(), MeshDiagnosticsGenerator::MeshDiagnosticsGenerator(), MFEMEigenproblem::MFEMEigenproblem(), MFEMGeneratedMeshGenerator::MFEMGeneratedMeshGenerator(), MFEMVariable::MFEMVariable(), MortarConstraintBase::MortarConstraintBase(), MoveNodesByParsedExpressionModifier::moveNodes(), MultiAppGeneralFieldFunctorTransfer::MultiAppGeneralFieldFunctorTransfer(), MultiAppGeneralFieldTransfer::MultiAppGeneralFieldTransfer(), OrientSurfaceMeshGenerator::OrientSurfaceMeshGenerator(), SolutionInvalidityOutput::output(), Output::Output(), MultiAppGeneralFieldTransfer::outputValueConflicts(), PetscExternalPartitioner::partition(), PolyLineMeshFollowingNodeSetGenerator::PolyLineMeshFollowingNodeSetGenerator(), MooseMesh::prepare(), SolutionUserObjectBase::readXda(), ReferenceResidualConvergence::ReferenceResidualConvergence(), PhysicsBase::reportPotentiallyMissedParameters(), MooseApp::run(), MooseApp::runInputFile(), MooseApp::runInputs(), Moose::MFEM::LinearSolverBase::SetPreconditioner(), MFEMHypreBoomerAMG::SetSolverParameters(), SetupMeshAction::setupMesh(), MooseApp::setupOptions(), SideSetsFromBoundingBoxGenerator::SideSetsFromBoundingBoxGenerator(), SmoothMeshGenerator::SmoothMeshGenerator(), SurfaceSubdomainsDelaunayRemesher::SurfaceSubdomainsDelaunayRemesher(), SurfaceSubdomainsFromAllNormalsGenerator::SurfaceSubdomainsFromAllNormalsGenerator(), TagVectorAux::TagVectorAux(), TimedSubdomainModifier::TimedSubdomainModifier(), TimeIntegratedPostprocessor::TimeIntegratedPostprocessor(), TriToQuadConverter::TriToQuadConverter(), XYFrontalDelaunayGenerator::XYFrontalDelaunayGenerator(), and XYZDelaunayGenerator::XYZDelaunayGenerator().

◆ isParamValid()

bool MooseBase::isParamValid ( const std::string &  name) const
inlineinherited

Test if the supplied parameter is valid.

Parameters
nameThe name of the parameter to test

Definition at line 199 of file MooseBase.h.

199{ return _pars.isParamValid(name); }
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another,...

Referenced by GridPartitioner::_do_partition(), HierarchicalGridPartitioner::_do_partition(), AddVariableAction::act(), AutoCheckpointAction::act(), CommonOutputAction::act(), ComposeTimeStepperAction::act(), CopyNodalVarsAction::act(), CreateDisplacedProblemAction::act(), SetAdaptivityOptionsAction::act(), SetupDebugAction::act(), SetupMeshCompleteAction::act(), DiffusionCG::addFEKernels(), DiffusionFV::addFVBCs(), DiffusionFV::addFVKernels(), DiffusionPhysicsBase::addInitialConditions(), ComponentJunction::addMeshGenerators(), CylinderComponent::addMeshGenerators(), DiffusionPhysicsBase::addPostprocessors(), AdvancedExtruderGenerator::AdvancedExtruderGenerator(), AdvectiveFluxAux::AdvectiveFluxAux(), ArrayHFEMDirichletBC::ArrayHFEMDirichletBC(), ArrayVarReductionAux::ArrayVarReductionAux(), BicubicSplineFunction::BicubicSplineFunction(), BlockDeletionGenerator::BlockDeletionGenerator(), BSplineCurveGenerator::BSplineCurveGenerator(), TimedSubdomainModifier::buildFromFile(), ParsedChainControl::buildFunction(), GeneratedMesh::buildMesh(), MooseMesh::buildTypedMesh(), CartesianGridDivision::CartesianGridDivision(), CartesianMeshGenerator::CartesianMeshGenerator(), SurfaceDelaunayGeneratorBase::checkBoundaryAndHolesParams(), MultiAppTransfer::checkParentAppUserObjectExecuteOn(), LibmeshPartitioner::clone(), SampledOutput::cloneMesh(), CombinedVectorPostprocessor::CombinedVectorPostprocessor(), CombinerGenerator::CombinerGenerator(), ComponentJunction::ComponentJunction(), ConservativeAdvectionBCTempl< is_ad >::ConservativeAdvectionBCTempl(), ConservativeAdvectionTempl< is_ad >::ConservativeAdvectionTempl(), FEProblemSolve::convergenceSetup(), CopyMeshPartitioner::CopyMeshPartitioner(), CSVReaderVectorPostprocessor::CSVReaderVectorPostprocessor(), CutMeshByLevelSetGeneratorBase::CutMeshByLevelSetGeneratorBase(), ConstantReporter::declareConstantReporterValue(), ConstantReporter::declareConstantReporterValues(), DGKernelBase::DGKernelBase(), DiffusionFluxAux::DiffusionFluxAux(), DiffusionPhysicsBase::DiffusionPhysicsBase(), DomainUserObject::DomainUserObject(), DynamicObjectRegistrationAction::DynamicObjectRegistrationAction(), EigenProblemSolve::EigenProblemSolve(), ElementGenerator::ElementGenerator(), ElementGroupCentroidPositions::ElementGroupCentroidPositions(), PIDTransientControl::execute(), MultiAppNearestNodeTransfer::execute(), MultiAppUserObjectTransfer::execute(), Exodus::Exodus(), ExtraIDIntegralReporter::ExtraIDIntegralReporter(), ExtraIDIntegralVectorPostprocessor::ExtraIDIntegralVectorPostprocessor(), FEProblemBase::FEProblemBase(), FEProblemSolve::FEProblemSolve(), FileOutput::FileOutput(), SurfaceDelaunayGeneratorBase::fillDelaunayOptions(), SpatialUserObjectVectorPostprocessor::fillPoints(), CombinerGenerator::fillPositions(), MultiApp::fillPositions(), FiniteDifferencePreconditioner::FiniteDifferencePreconditioner(), FixedPointSolve::FixedPointSolve(), FunctionDT::FunctionDT(), FunctionValuePostprocessor::FunctionValuePostprocessor(), FVInterfaceKernel::FVInterfaceKernel(), FVMassMatrix::FVMassMatrix(), SurfaceSubdomainsDelaunayRemesher::General2DDelaunay(), AddMetaDataGenerator::generate(), BlockDeletionGenerator::generate(), BreakBoundaryOnSubdomainGenerator::generate(), BSplineCurveGenerator::generate(), ConcentricCircleMeshGenerator::generate(), DistributedRectilinearMeshGenerator::generate(), ElementGenerator::generate(), ExtraNodesetGenerator::generate(), FileMeshGenerator::generate(), GeneratedMeshGenerator::generate(), LowerDBlockFromSidesetGenerator::generate(), ManifoldSubdomainGenerator::generate(), MeshExtruderGenerator::generate(), OrientSurfaceMeshGenerator::generate(), ParsedExtraElementIDGenerator::generate(), ParsedSubdomainGeneratorBase::generate(), RenumberBySubdomainGenerator::generate(), SideSetsFromNodeSetsGenerator::generate(), SphereMeshGenerator::generate(), SubdomainBoundingBoxGenerator::generate(), SubdomainPerElementGenerator::generate(), XYDelaunayGenerator::generate(), XYMeshLineCutter::generate(), XYZDelaunayGenerator::generate(), PropertyReadFile::getFileNames(), MultiAppNearestNodeTransfer::getLocalEntitiesAndComponents(), MeshGenerator::getMeshGeneratorNameFromParam(), MeshGenerator::getMeshGeneratorNamesFromParam(), MooseBase::getRenamedParam(), MultiAppNearestNodeTransfer::getTargetLocalNodes(), AddPeriodicBCAction::getVariables(), Terminator::handleMessage(), HFEMDirichletBC::HFEMDirichletBC(), EigenExecutionerBase::init(), IterationAdaptiveDT::init(), AdvancedOutput::initAvailableLists(), AdvancedOutput::initExecutionTypes(), BlockRestrictable::initializeBlockRestrictable(), BoundaryRestrictable::initializeBoundaryRestrictable(), SolutionAux::initialSetup(), SolutionScalarAux::initialSetup(), PIDTransientControl::initialSetup(), ParsedConvergence::initialSetup(), EigenProblemSolve::initialSetup(), MooseParsedFunction::initialSetup(), MooseParsedGradFunction::initialSetup(), MooseParsedVectorFunction::initialSetup(), PiecewiseTabularBase::initialSetup(), SolutionIC::initialSetup(), Console::initialSetup(), MultiAppCloneReporterTransfer::initialSetup(), MultiAppGeneralFieldTransfer::initialSetup(), MultiAppVariableValueSampleTransfer::initialSetup(), SampledOutput::initSample(), IterationAdaptiveDT::IterationAdaptiveDT(), LeastSquaresFit::LeastSquaresFit(), LibmeshPartitioner::LibmeshPartitioner(), LibtorchNeuralNetControl::LibtorchNeuralNetControl(), PNGOutput::makePNG(), MassMatrix::MassMatrix(), MatCoupledForce::MatCoupledForce(), MeshGeneratorComponent::MeshGeneratorComponent(), MFEMProblemSolve::MFEMProblemSolve(), MooseMesh::MooseMesh(), MoosePreconditioner::MoosePreconditioner(), MooseStaticCondensationPreconditioner::MooseStaticCondensationPreconditioner(), MooseVariableBase::MooseVariableBase(), MooseVariableFV< RealEigenVector >::MooseVariableFV(), MortarConstraintBase::MortarConstraintBase(), MoveNodeGenerator::MoveNodeGenerator(), MultiApp::MultiApp(), MultiAppCloneReporterTransfer::MultiAppCloneReporterTransfer(), MultiAppGeneralFieldKDTreeTransferBase::MultiAppGeneralFieldKDTreeTransferBase(), MultiAppGeneralFieldShapeEvaluationTransfer::MultiAppGeneralFieldShapeEvaluationTransfer(), MultiAppGeneralFieldTransfer::MultiAppGeneralFieldTransfer(), MultiAppGeneralFieldUserObjectTransfer::MultiAppGeneralFieldUserObjectTransfer(), MultiAppPostprocessorInterpolationTransfer::MultiAppPostprocessorInterpolationTransfer(), MultiAppPostprocessorTransfer::MultiAppPostprocessorTransfer(), MultiAppReporterTransfer::MultiAppReporterTransfer(), MultiAppTransfer::MultiAppTransfer(), MultiAppUserObjectTransfer::MultiAppUserObjectTransfer(), MultiAppVariableValueSampleTransfer::MultiAppVariableValueSampleTransfer(), MultiPostprocessorConvergence::MultiPostprocessorConvergence(), MultiSystemSolveObject::MultiSystemSolveObject(), NodeSetsGeneratorBase::NodeSetsGeneratorBase(), EigenExecutionerBase::normalizeSolution(), OrientSurfaceMeshGenerator::OrientSurfaceMeshGenerator(), Output::Output(), ParsedCurveGenerator::ParsedCurveGenerator(), ParsedSubdomainGeneratorBase::ParsedSubdomainGeneratorBase(), PetscOutput::PetscOutput(), PhysicsBasedPreconditioner::PhysicsBasedPreconditioner(), EqualValueBoundaryConstraint::pickPrimaryNode(), PIDTransientControl::PIDTransientControl(), PiecewiseTabularBase::PiecewiseTabularBase(), PlaneIDMeshGenerator::PlaneIDMeshGenerator(), EqualValueBoundaryConstraint::populateSecondaryNodes(), MooseMesh::prepare(), MultiApp::readCommandLineArguments(), SolutionUserObjectBase::readExodusIIOrNemesis(), ReferenceResidualInterface::ReferenceResidualInterface(), RenameBlockGenerator::RenameBlockGenerator(), ReporterPointSource::ReporterPointSource(), PhysicsBase::reportPotentiallyMissedParameters(), ParsedSubdomainMeshGenerator::setBlockName(), MooseMesh::setCoordSystem(), FileOutput::setFileBaseInternal(), SideSetsGeneratorBase::setup(), SurfaceMeshGeneratorBase::setup(), Split::setup(), SetupMeshAction::setupMesh(), MooseApp::setupOptions(), Output::setWallTimeIntervalFromCommandLineParam(), SideDiffusiveFluxIntegralTempl< is_ad, T >::SideDiffusiveFluxIntegralTempl(), SideSetsGeneratorBase::SideSetsGeneratorBase(), SolutionUserObjectBase::SolutionUserObjectBase(), Terminator::Terminator(), TimeIntervalTimes::TimeIntervalTimes(), TimePeriod::TimePeriod(), PIDTransientControl::timestepSetup(), MultiAppDofCopyTransfer::transfer(), TransformGenerator::TransformGenerator(), TransientBase::TransientBase(), VariableCondensationPreconditioner::VariableCondensationPreconditioner(), VectorMagnitudeFunctorMaterialTempl< is_ad >::VectorMagnitudeFunctorMaterialTempl(), XYQuadrilateralMeshFromBoundaryCurve::XYQuadrilateralMeshFromBoundaryCurve(), and XYZDelaunayGenerator::XYZDelaunayGenerator().

◆ isPartitionerForced()

bool MooseMesh::isPartitionerForced ( ) const
inlineinherited

Tell the user if the partitioner was overriden for any reason.

Definition at line 1166 of file MooseMesh.h.

1166{ return _partitioner_overridden; }
bool _partitioner_overridden
Definition MooseMesh.h:1605

◆ isRegularOrthogonal()

bool MooseMesh::isRegularOrthogonal ( )
inlineinherited

Getter to query if the mesh was detected to be regular and orthogonal.

Definition at line 1196 of file MooseMesh.h.

1196{ return _regular_orthogonal_mesh; }

Referenced by AddPeriodicBCAction::act(), and AddPeriodicBCAction::onSetupPeriodicBoundary().

◆ isSemiLocal()

bool MooseMesh::isSemiLocal ( Node *const  node) const
inherited

Returns true if the node is semi-local.

Parameters
nodeNode pointer
Returns
true is the node is semi-local, false otherwise

Definition at line 1003 of file MooseMesh.C.

1004{
1005 return _semilocal_node_list.find(node) != _semilocal_node_list.end();
1006}
std::set< Node * > _semilocal_node_list
Used for generating the semilocal node range.
Definition MooseMesh.h:1656

◆ isSplit()

bool MooseMesh::isSplit ( ) const
inlineinherited
Returns
Whether or not this mesh comes from a split mesh

Definition at line 1482 of file MooseMesh.h.

1482{ return _is_split; }

◆ isTranslatedPeriodic() [1/3]

bool MooseMesh::isTranslatedPeriodic ( const MooseVariableBase &  var,
const unsigned int  component 
) const
inherited

Returns whether this generated mesh is periodic in the given dimension for the given variable.

Parameters
var- The variable
component- An integer representing the desired component (dimension)

Definition at line 2220 of file MooseMesh.C.

2221{
2222 return isTranslatedPeriodic(var.sys().number(), var.number(), component);
2223}
bool isTranslatedPeriodic(const unsigned int sys_num, const unsigned int var_num, const unsigned int component) const
Returns whether this generated mesh is periodic in the given dimension for the given variable on the ...
Definition MooseMesh.C:2211
SystemBase & sys()
Get the system this variable is part of.
unsigned int number() const
Get variable number coming from libMesh.
unsigned int number() const
Gets the number of this system.

◆ isTranslatedPeriodic() [2/3]

bool MooseMesh::isTranslatedPeriodic ( const unsigned int  sys_num,
const unsigned int  var_num,
const unsigned int  component 
) const
inherited

Returns whether this generated mesh is periodic in the given dimension for the given variable on the given system.

Parameters
sys_num- The number of the system the variable is on
var_num- The variable number
component- An integer representing the desired component (dimension)

Definition at line 2211 of file MooseMesh.C.

2214{
2215 mooseAssert(component < dimension(), "Requested dimension out of bounds");
2216 return queryPeriodicDimensions(sys_num, var_num)[component];
2217}
const std::array< bool, 3 > & queryPeriodicDimensions(const unsigned int sys_num, const unsigned int var_num) const
Query the translated periodic dimension flags for the given variable on the given system.
Definition MooseMesh.C:2196

Referenced by MooseMesh::isTranslatedPeriodic(), and MooseMesh::isTranslatedPeriodic().

◆ isTranslatedPeriodic() [3/3]

bool MooseMesh::isTranslatedPeriodic ( const unsigned int  var_num,
const unsigned int  component 
) const
inherited

Returns whether this generated mesh is periodic in the given dimension for the given variable.

Deprecated method; assumes the system number is 0. Use the method that additionally takes the system number or the MooseVariableBase instead.

Parameters
var_num- The variable number
component- An integer representing the desired component (dimension)

Definition at line 2226 of file MooseMesh.C.

2227{
2228 mooseDoOnce(mooseDeprecated(
2229 "MooseMesh::isTranslatedPeriodic(const unsigned int, const unsigned int) is deprecated. Use "
2230 "the method that additionally takes the system number or the MooseVariableBase instead."));
2231 return isTranslatedPeriodic(0, var_num, component);
2232}

◆ lengthUnit()

const MooseUnits & MooseMesh::lengthUnit ( ) const
inherited
Returns
the length unit of this mesh provided through the coordinate transformation object

Definition at line 4414 of file MooseMesh.C.

4415{
4416 mooseAssert(_coord_transform, "This must be non-null");
4417 return _coord_transform->lengthUnit();
4418}

◆ localNodesBegin() [1/2]

MeshBase::node_iterator MooseMesh::localNodesBegin ( )
inherited

Calls local_nodes_begin/end() on the underlying libMesh mesh object.

Definition at line 3091 of file MooseMesh.C.

3092{
3093 return getMesh().local_nodes_begin();
3094}

◆ localNodesBegin() [2/2]

MeshBase::const_node_iterator MooseMesh::localNodesBegin ( ) const
inherited

Definition at line 3103 of file MooseMesh.C.

3104{
3105 return getMesh().local_nodes_begin();
3106}

◆ localNodesEnd() [1/2]

MeshBase::node_iterator MooseMesh::localNodesEnd ( )
inherited

Definition at line 3097 of file MooseMesh.C.

3098{
3099 return getMesh().local_nodes_end();
3100}

◆ localNodesEnd() [2/2]

MeshBase::const_node_iterator MooseMesh::localNodesEnd ( ) const
inherited

Definition at line 3109 of file MooseMesh.C.

3110{
3111 return getMesh().local_nodes_end();
3112}

◆ mapPoints()

void MooseMesh::mapPoints ( const std::vector< Point > &  from,
const std::vector< Point > &  to,
std::vector< QpMap > &  qp_map 
)
privateinherited

Find the closest points that map "from" to "to" and fill up "qp_map".

Essentially, for each point in "from" find the closest point in "to".

Parameters
fromThe reference positions in the parent of the the points we're mapping from
toThe reference positions in the parent of the the points we're mapping to
qp_mapThis will be filled with QpMap objects holding the mappings.

Definition at line 2604 of file MooseMesh.C.

2607{
2608 unsigned int n_from = from.size();
2609 unsigned int n_to = to.size();
2610
2611 qp_map.resize(n_from);
2612
2613 for (unsigned int i = 0; i < n_from; ++i)
2614 {
2615 const Point & from_point = from[i];
2616
2617 QpMap & current_map = qp_map[i];
2618
2619 for (unsigned int j = 0; j < n_to; ++j)
2620 {
2621 const Point & to_point = to[j];
2622 Real distance = (from_point - to_point).norm();
2623
2624 if (distance < current_map._distance)
2625 {
2626 current_map._distance = distance;
2627 current_map._from = i;
2628 current_map._to = j;
2629 }
2630 }
2631 }
2632}
unsigned int _from
The qp to map from.
Definition MooseMesh.h:81
unsigned int _to
The qp to map to.
Definition MooseMesh.h:84
Real distance(const Point &p)

Referenced by MooseMesh::buildPRefinementAndCoarseningMaps(), and MooseMesh::findAdaptivityQpMaps().

◆ markFiniteVolumeInfoDirty()

void MooseMesh::markFiniteVolumeInfoDirty ( )
inlineinherited

Mark the finite volume information as dirty.

Definition at line 1454 of file MooseMesh.h.

1454{ _finite_volume_info_dirty = true; }

◆ maxElementID()

dof_id_type MooseMesh::maxElementID ( unsigned int  elem_id_index) const
inlineinherited

Return the maximum element ID for an extra element integer with its accessing index.

Definition at line 1259 of file MooseMesh.h.

1259{ return _max_ids[elem_id_index]; }

◆ maxElemId()

dof_id_type MooseMesh::maxElemId ( ) const
virtualinherited

Definition at line 3157 of file MooseMesh.C.

3158{
3159 return getMesh().max_elem_id();
3160}

◆ maxHLevel()

unsigned int MooseMesh::maxHLevel ( ) const
inlineinherited

Returns the maximum h-refinement level of all elements.

Definition at line 1517 of file MooseMesh.h.

1517{ return _max_h_level; }
unsigned int _max_h_level
Maximum h-refinement level of all elements.
Definition MooseMesh.h:2055

◆ maxNodeId()

dof_id_type MooseMesh::maxNodeId ( ) const
virtualinherited

Calls max_node/elem_id() on the underlying libMesh mesh object.

This may be larger than n_nodes/elem() in cases where the id numbering is not contiguous.

Definition at line 3151 of file MooseMesh.C.

3152{
3153 return getMesh().max_node_id();
3154}

◆ maxPLevel()

unsigned int MooseMesh::maxPLevel ( ) const
inlineinherited

Returns the maximum p-refinement level of all elements.

Definition at line 1512 of file MooseMesh.h.

1512{ return _max_p_level; }
unsigned int _max_p_level
Maximum p-refinement level of all elements.
Definition MooseMesh.h:2053

◆ meshBoundaryIds()

const std::set< BoundaryID > & MooseMesh::meshBoundaryIds ( ) const
inherited

Returns a read-only reference to the set of boundary IDs currently present in the Mesh.

Definition at line 3241 of file MooseMesh.C.

3242{
3243 return _mesh_boundary_ids;
3244}

Referenced by BoundaryRestrictable::isBoundarySubset().

◆ meshChanged()

void MooseMesh::meshChanged ( )
inherited

Declares that the MooseMesh has changed, invalidates cached data and rebuilds caches.

Sets a flag so that clients of the MooseMesh also know when it has changed.

Definition at line 894 of file MooseMesh.C.

895{
896 TIME_SECTION("meshChanged", 3, "Updating Because Mesh Changed");
897
898 update();
899
900 // Delete all of the cached ranges
901 _active_node_range.reset();
903 _local_node_range.reset();
904 _bnd_node_range.reset();
905 _bnd_elem_range.reset();
906
907 // Rebuild the ranges
913
914 // Call the callback function onMeshChanged
916}
virtual void onMeshChanged()
Declares a callback function that is executed at the conclusion of meshChanged().
Definition MooseMesh.C:919
void update()
Calls buildNodeListFromSideList(), buildNodeList(), and buildBndElemList().
Definition MooseMesh.C:625
libMesh::ConstNodeRange * getLocalNodeRange()
Definition MooseMesh.C:1276
libMesh::NodeRange * getActiveNodeRange()
Definition MooseMesh.C:1253
libMesh::StoredRange< MooseMesh::const_bnd_node_iterator, const BndNode * > * getBoundaryNodeRange()
Definition MooseMesh.C:1290
const libMesh::ConstElemRange * getActiveLocalElementRange()
Return pointers to range objects for various types of ranges (local nodes, boundary elems,...
Definition MooseMesh.C:1247
libMesh::StoredRange< MooseMesh::const_bnd_elem_iterator, const BndElement * > * getBoundaryElementRange()
Definition MooseMesh.C:1303

Referenced by DisplacedProblem::init(), FEProblemBase::init(), DisplacedProblem::meshChanged(), and FEProblemBase::meshChanged().

◆ meshNodesetIds()

const std::set< BoundaryID > & MooseMesh::meshNodesetIds ( ) const
inherited

Returns a read-only reference to the set of nodesets currently present in the Mesh.

Definition at line 3253 of file MooseMesh.C.

3254{
3255 return _mesh_nodeset_ids;
3256}
std::set< BoundaryID > _mesh_nodeset_ids
Definition MooseMesh.h:1690

Referenced by GeometricSearchData::GeometricSearchData(), and BoundaryRestrictable::initializeBoundaryRestrictable().

◆ meshSidesetIds()

const std::set< BoundaryID > & MooseMesh::meshSidesetIds ( ) const
inherited

Returns a read-only reference to the set of sidesets currently present in the Mesh.

Definition at line 3247 of file MooseMesh.C.

3248{
3249 return _mesh_sideset_ids;
3250}
std::set< BoundaryID > _mesh_sideset_ids
Definition MooseMesh.h:1689

Referenced by DGKernelBase::DGKernelBase(), and BoundaryRestrictable::initializeBoundaryRestrictable().

◆ meshSubdomains()

const std::set< SubdomainID > & MooseMesh::meshSubdomains ( ) const
inherited

◆ messagePrefix() [1/2]

std::string MooseBase::messagePrefix ( const bool  hit_prefix = true) const
inlineinherited
Returns
A prefix to be used in messages that contain the input file location associated with this object (if any) and the name and type of the object.

Definition at line 256 of file MooseBase.h.

257 {
258 return messagePrefix(_pars, hit_prefix);
259 }

Referenced by MooseBase::callMooseError(), MooseBase::errorPrefix(), MooseBase::messagePrefix(), MooseBase::mooseDeprecated(), MooseBase::mooseDeprecatedNoTrace(), MooseBase::mooseInfo(), and MooseBase::mooseWarning().

◆ messagePrefix() [2/2]

std::string MooseBase::messagePrefix ( const InputParameters &  params,
const bool  hit_prefix 
)
staticprivateinherited

Internal method for getting the message prefix for an object (object type, name, etc).

Needs to be static so that we can call it externally from InputParameters for errors that do not have context of the MooseBase

Definition at line 140 of file MooseBase.C.

141{
142 std::string prefix = "";
143
144 if (hit_prefix)
145 if (const auto node = MooseBase::getHitNode(params))
146 prefix += Moose::hitMessagePrefix(*node);
147
148 // Don't have context without type and name
149 if (!params.isMooseBaseObject())
150 return prefix;
151
152 const auto & name = params.getObjectName();
153 const std::string base = params.hasBase() ? params.getBase() : "object";
154 const bool is_main_app = base == "Application" && name == AppFactory::main_app_name;
155 prefix += "The following occurred in the ";
156 if (is_main_app)
157 prefix += "main " + base;
158 else
159 prefix += base;
160 if (base != params.getObjectName() && name.size() && !is_main_app)
161 prefix += " '" + name + "'";
162 prefix += " of type " + params.getObjectType() + ".";
163 return prefix + "\n\n";
164}
static const std::string main_app_name
The name for the "main" moose application.
Definition AppFactory.h:68
bool isMooseBaseObject() const
const std::string & getObjectType() const
const std::string & getObjectName() const
std::string hitMessagePrefix(const hit::Node &node)
Get the prefix to be associated with a hit node for a message.
Definition Moose.C:898

◆ minElementID()

dof_id_type MooseMesh::minElementID ( unsigned int  elem_id_index) const
inlineinherited

Return the minimum element ID for an extra element integer with its accessing index.

Definition at line 1264 of file MooseMesh.h.

1264{ return _min_ids[elem_id_index]; }

◆ minPeriodicDistance() [1/3]

Real MooseMesh::minPeriodicDistance ( const MooseVariableBase &  var,
const Point &  p,
const Point &  q 
) const
inherited

Returns the distance between two points on the mesh taking into account periodicity for the given variable.

Parameters
var- The variable
p,q- The points for which to compute a minimum distance
Returns
Real - The L2 distance between p and q

Definition at line 2289 of file MooseMesh.C.

2292{
2293 return minPeriodicDistance(var.sys().number(), var.number(), p, q);
2294}
Real minPeriodicDistance(const unsigned int sys_num, const unsigned int var_num, const Point &p, const Point &q) const
Returns the distance between two points on the mesh taking into account periodicity for the given var...
Definition MooseMesh.C:2280

◆ minPeriodicDistance() [2/3]

Real MooseMesh::minPeriodicDistance ( const unsigned int  sys_num,
const unsigned int  var_num,
const Point &  p,
const Point &  q 
) const
inherited

Returns the distance between two points on the mesh taking into account periodicity for the given variable on the given system.

Parameters
sys_num- The number of the system the variable is on
var_num- The variable number
p,q- The points for which to compute a minimum distance
Returns
Real - The L2 distance between p and q

Definition at line 2280 of file MooseMesh.C.

2284{
2285 return minPeriodicVector(sys_num, var_num, p, q).norm();
2286}
RealVectorValue minPeriodicVector(const unsigned int sys_num, const unsigned int var_num, Point p, Point q) const
Returns the minimum vector between two points on the mesh taking into account periodicity for the giv...
Definition MooseMesh.C:2235

Referenced by MooseMesh::minPeriodicDistance(), and MooseMesh::minPeriodicDistance().

◆ minPeriodicDistance() [3/3]

Real MooseMesh::minPeriodicDistance ( const unsigned int  var_num,
const Point &  p,
const Point &  q 
) const
inherited

Returns the distance between two points on the mesh taking into account periodicity for the given variable.

Deprecated method; assumes the system number is 0. Use the method that additionally takes the system number or the MooseVariableBase instead.

Parameters
var_num- The variable number
p,q- The points for which to compute a minimum distance
Returns
Real - The L2 distance between p and q

Definition at line 2297 of file MooseMesh.C.

2298{
2299 mooseDoOnce(mooseDeprecated("MooseMesh::minPeriodicDistance(const unsigned int, const Point &, "
2300 "const Point &) is deprecated. Use the method that additionally "
2301 "takes the system number or the MooseVariableBase instead."));
2302 return minPeriodicDistance(0, var_num, p, q);
2303}

◆ minPeriodicVector() [1/3]

RealVectorValue MooseMesh::minPeriodicVector ( const MooseVariableBase &  var,
const Point &  p,
const Point &  q 
) const
inherited

Returns the minimum vector between two points on the mesh taking into account periodicity for the given variable.

Parameters
var- The variable
p,q- The points between which to compute a minimum vector
Returns
RealVectorValue - The vector pointing from p to q

Definition at line 2265 of file MooseMesh.C.

2266{
2267 return minPeriodicVector(var.sys().number(), var.number(), p, q);
2268}

◆ minPeriodicVector() [2/3]

RealVectorValue MooseMesh::minPeriodicVector ( const unsigned int  sys_num,
const unsigned int  var_num,
Point  p,
Point  q 
) const
inherited

Returns the minimum vector between two points on the mesh taking into account periodicity for the given variable on the given system.

Parameters
sys_num- The number of the system the variable is on
var_num- The variable number
p,q- The points between which to compute a minimum vector
Returns
RealVectorValue - The vector pointing from p to q

Definition at line 2235 of file MooseMesh.C.

2239{
2240 const auto & periodic_dims = queryPeriodicDimensions(sys_num, var_num);
2241
2242 for (const auto i : make_range(dimension()))
2243 {
2244 // check to see if we're closer in real or periodic space in x, y, and z
2245 if (periodic_dims[i])
2246 {
2247 // Need to test order before differencing
2248 if (p(i) > q(i))
2249 {
2250 if (p(i) - q(i) > _half_range(i))
2251 p(i) -= _half_range(i) * 2;
2252 }
2253 else
2254 {
2255 if (q(i) - p(i) > _half_range(i))
2256 p(i) += _half_range(i) * 2;
2257 }
2258 }
2259 }
2260
2261 return q - p;
2262}

Referenced by MooseMesh::minPeriodicDistance(), MooseMesh::minPeriodicVector(), and MooseMesh::minPeriodicVector().

◆ minPeriodicVector() [3/3]

RealVectorValue MooseMesh::minPeriodicVector ( const unsigned int  var_num,
const Point &  p,
const Point &  q 
) const
inherited

Returns the minimum vector between two points on the mesh taking into account periodicity for the given variable on the given system.

Deprecated method; assumes the system number is 0. Use the method that additionally takes the system number or the MooseVariableBase instead.

Parameters
var_num- The variable number
p,q- The points between which to compute a minimum vector
Returns
RealVectorValue - The vector pointing from p to q

Definition at line 2271 of file MooseMesh.C.

2272{
2273 mooseDoOnce(mooseDeprecated("MooseMesh::minPeriodicVector(const unsigned int, const Point &, "
2274 "const Point &) is deprecated. Use the method that additionally "
2275 "takes the system number or the MooseVariableBase instead."));
2276 return minPeriodicVector(0, var_num, p, q);
2277}

◆ mooseDeprecated() [1/2]

template<typename... Args>
void MooseBase::mooseDeprecated ( Args &&...  args) const
inlineinherited

Emits a deprecation warning prefixed with the object name and type, and a stack trace.

Definition at line 317 of file MooseBase.h.

318 {
320 _console, false, true, true, messagePrefix(true), std::forward<Args>(args)...);
321 }
const ConsoleStream _console
An instance of helper class to write streams to the Console objects.
void mooseDeprecatedStream(S &oss, const bool expired, const bool print_title, const bool show_trace, Args &&... args)
Definition MooseError.h:252

Referenced by MooseApp::addCapability(), DataFileInterface::getDataFileName(), DataFileInterface::getDataFileNameByName(), MooseApp::getRecoverFileBase(), MooseApp::hasRecoverFileBase(), and MooseApp::setupOptions().

◆ mooseDeprecated() [2/2]

template<typename... Args>
void SolutionInvalidInterface::mooseDeprecated ( Args &&...  args) const
inlineinherited

◆ mooseDeprecatedNoTrace()

template<typename... Args>
void MooseBase::mooseDeprecatedNoTrace ( Args &&...  args) const
inlineinherited

Emits a deprecation warning prefixed with the object name and type, and no stack trace.

Definition at line 327 of file MooseBase.h.

328 {
330 _console, false, true, false, messagePrefix(true), std::forward<Args>(args)...);
331 }

◆ mooseDocumentedError()

template<typename... Args>
void MooseBase::mooseDocumentedError ( const std::string &  repo_name,
const unsigned int  issue_num,
Args &&...  args 
) const
inlineinherited

Definition at line 277 of file MooseBase.h.

280 {
282 repo_name, issue_num, argumentsToString(std::forward<Args>(args)...)),
283 /* with_prefix = */ true);
284 }
std::string formatMooseDocumentedError(const std::string &repo_name, const unsigned int issue_num, const std::string &msg)
Formats a documented error.
Definition MooseError.C:140

Referenced by ManifoldSubdomainGenerator::ManifoldSubdomainGenerator().

◆ mooseError()

template<typename... Args>
void MooseBase::mooseError ( Args &&...  args) const
inlineinherited

Emits an error prefixed with object name and type and optionally a file path to the top-level block parameter if available.

Definition at line 271 of file MooseBase.h.

272 {
273 callMooseError(argumentsToString(std::forward<Args>(args)...), /* with_prefix = */ true);
274 }

Referenced by CopyMeshPartitioner::_do_partition(), GridPartitioner::_do_partition(), HierarchicalGridPartitioner::_do_partition(), PetscExternalPartitioner::_do_partition(), AdaptivityAction::act(), AddBoundsVectorsAction::act(), AddFVICAction::act(), AddICAction::act(), AddMeshGeneratorAction::act(), AddPeriodicBCAction::act(), AddTimeStepperAction::act(), AddVectorPostprocessorAction::act(), ChainControlSetupAction::act(), CheckFVBCAction::act(), CheckIntegrityAction::act(), CombineComponentsMeshes::act(), CommonOutputAction::act(), CreateDisplacedProblemAction::act(), CreateExecutionerAction::act(), CreateProblemAction::act(), CreateProblemDefaultAction::act(), CSGOnlyAction::act(), DeprecatedBlockAction::act(), InitProblemAction::act(), MaterialDerivativeTestAction::act(), MaterialOutputAction::act(), SetAdaptivityOptionsAction::act(), SetupDebugAction::act(), SetupMeshAction::act(), SetupMeshCompleteAction::act(), SetupPredictorAction::act(), SetupTimeStepperAction::act(), SplitMeshAction::act(), Action::Action(), AddActionComponentAction::AddActionComponentAction(), PhysicsComponentInterface::addBoundaryConditionsFromComponents(), MooseApp::addCapabilityInternal(), DistributedRectilinearMeshGenerator::addElement(), MooseApp::addExecutor(), SubProblem::addFunctor(), PhysicsComponentInterface::addInitialConditionsFromComponents(), ComponentJunction::addMeshGenerators(), MeshGenerator::addMeshSubgenerator(), SubProblem::addPiecewiseByBlockLambdaFunctor(), DistributedRectilinearMeshGenerator::addPoint(), DiracKernelBase::addPointWithValidId(), CreateDisplacedProblemAction::addProxyRelationshipManagers(), MooseMesh::addQuadratureNode(), AddActionComponentAction::addRelationshipManagers(), WebServerControl::addServerAction(), AddVariableAction::addVariable(), SubProblem::addVectorTag(), MooseVariableScalar::adUDot(), Output::advancedExecuteOn(), MooseVariableBase::allDofIndices(), MooseApp::appNameToLibName(), MultiApp::appPostprocessorValue(), MultiApp::appProblem(), MultiApp::appProblemBase(), MultiApp::appUserObjectBase(), MooseApp::attachRelationshipManagers(), MooseApp::attachRelationshipManagers(), Function::average(), BatchMeshGeneratorAction::BatchMeshGeneratorAction(), MooseMesh::buildCoarseningMap(), MultiApp::buildComm(), DistributedRectilinearMeshGenerator::buildCube(), PiecewiseTabularInterface::buildFromFile(), PiecewiseTabularInterface::buildFromJSON(), PiecewiseTabularInterface::buildFromXY(), MooseMesh::buildLowerDMesh(), GeneratedMesh::buildMesh(), MeshGeneratorMesh::buildMesh(), SpiralAnnularMesh::buildMesh(), TiledMesh::buildMesh(), MooseMesh::buildRefinementMap(), MaterialBase::buildRequiredMaterials(), MooseMesh::buildTypedMesh(), MooseMesh::cacheFaceInfoVariableOwnership(), CartesianGridDivision::CartesianGridDivision(), CartesianMeshGenerator::CartesianMeshGenerator(), EigenExecutionerBase::chebyshev(), SubProblem::checkBlockMatProps(), PhysicsBase::checkBlockRestrictionIdentical(), ComponentBoundaryConditionInterface::checkBoundaryConditionsAllRequested(), SubProblem::checkBoundaryMatProps(), PhysicsBase::checkComponentType(), IterationCountConvergence::checkConvergence(), MooseMesh::checkCoordinateSystems(), DiffusionLHDGAssemblyHelper::checkCoupling(), DefaultConvergenceBase::checkDuplicateSetSharedExecutionerParams(), MooseMesh::checkDuplicateSubdomainNames(), MaterialBase::checkExecutionStage(), FVFluxBC::checkFaceIntegrity(), FVInterfaceKernel::checkFaceIntegrity(), MeshGenerator::checkGetMesh(), ReporterTransferInterface::checkHasReporterValue(), EigenExecutionerBase::checkIntegrity(), Eigenvalue::checkIntegrity(), ExplicitTimeIntegrator::checkLinearConvergence(), MooseApp::checkMetaDataIntegrity(), MeshDiagnosticsGenerator::checkNonConformalMeshFromAdaptivity(), MeshDiagnosticsGenerator::checkNonMatchingEdges(), PostprocessorInterface::checkParam(), Moose::PeriodicBCHelper::checkPeriodicParams(), Sampler::checkReinitStatus(), MultiAppTransfer::checkSiblingsTransferSupported(), MaterialBase::checkStatefulSanity(), AddDefaultConvergenceAction::checkUnusedMultiAppFixedPointConvergenceParameters(), AddDefaultConvergenceAction::checkUnusedNonlinearConvergenceParameters(), AddDefaultConvergenceAction::checkUnusedSteadyStateConvergenceParameters(), Moose::PetscSupport::checkUserProvidedPetscOption(), MultiAppTransfer::checkVariable(), MeshDiagnosticsGenerator::checkWatertightNodesets(), MeshDiagnosticsGenerator::checkWatertightSidesets(), MooseMesh::clone(), LibmeshPartitioner::clone(), CombinerGenerator::CombinerGenerator(), MooseVariableFieldBase::componentName(), VariableCondensationPreconditioner::computeDInverseDiag(), CompositionDT::computeDT(), MooseVariableFieldBase::computeFaceValues(), TimeStepper::computeFailedDT(), IterationAdaptiveDT::computeFailedDT(), MooseMesh::computeFiniteVolumeCoords(), Moose::Kokkos::ResidualObject::computeOffDiagJacobian(), MaterialBase::computeProperties(), ResidualObject::computeResidualAndJacobian(), TimeStepper::computeStep(), AStableDirk4::computeTimeDerivatives(), BDF2::computeTimeDerivatives(), CrankNicolson::computeTimeDerivatives(), ExplicitEuler::computeTimeDerivatives(), ExplicitRK2::computeTimeDerivatives(), ExplicitTVDRK2::computeTimeDerivatives(), ImplicitEuler::computeTimeDerivatives(), ImplicitMidpoint::computeTimeDerivatives(), LStableDirk2::computeTimeDerivatives(), LStableDirk3::computeTimeDerivatives(), LStableDirk4::computeTimeDerivatives(), NewmarkBeta::computeTimeDerivatives(), ConcentricCircleMesh::ConcentricCircleMesh(), ConditionalEnableControl::ConditionalEnableControl(), TimeStepper::constrainStep(), LibtorchNeuralNetControl::controlNeuralNet(), TransientBase::convergedToSteadyState(), ParsedConvergence::convertRealToBool(), MooseApp::copyInputs(), CopyMeshPartitioner::CopyMeshPartitioner(), MultiApp::createApp(), MooseApp::createExecutors(), AddVariableAction::createInitialConditionAction(), MooseApp::createRMFromTemplateAndInit(), Function::curl(), ReporterTransferInterface::declareClone(), Moose::Kokkos::MaterialBase::declareKokkosPropertyInternal(), MeshGenerator::declareMeshProperty(), ReporterTransferInterface::declareVectorClone(), FunctorRelationshipManager::delete_remote_elements(), MooseMesh::deleteRemoteElements(), MooseApp::determineLibtorchDeviceType(), MeshDiagnosticsGenerator::diagnosticsLog(), Function::div(), FunctorBinnedValuesDivision::divisionIndex(), FunctorRelationshipManager::dofmap_reinit(), MooseApp::dynamicAllRegistration(), MooseApp::dynamicAppRegistration(), DistributedRectilinearMeshGenerator::elemId(), MooseApp::errorCheck(), MooseMesh::errorIfDistributedMesh(), MultiAppTransfer::errorIfObjectExecutesOnTransferInSourceApp(), FixedPointSolve::examineFixedPointConvergence(), Eigenvalue::execute(), TransientBase::execute(), WebServerControl::execute(), MooseApp::executeExecutioner(), FVInterfaceKernel::faceArg1(), FVInterfaceKernel::faceArg2(), MultiApp::fillPositions(), MooseApp::finalizeRestore(), Transfer::find_sys(), DiracKernelInfo::findPoint(), FixedPointSolve::findTransformedSystem(), FixedPointSolve::FixedPointSolve(), FunctionDT::FunctionDT(), FunctionScalarAux::FunctionScalarAux(), FunctionScalarIC::FunctionScalarIC(), LinearFVBoundaryCondition::functorFaceArg(), FVInitialConditionTempl< T >::FVInitialConditionTempl(), FVScalarLagrangeMultiplierInterface::FVScalarLagrangeMultiplierInterface(), AdvancedExtruderGenerator::generate(), BoundingBoxNodeSetGenerator::generate(), CoarsenBlockGenerator::generate(), CombinerGenerator::generate(), CutMeshByLevelSetGeneratorBase::generate(), DistributedRectilinearMeshGenerator::generate(), ElementOrderConversionGenerator::generate(), ExtraNodesetGenerator::generate(), FileMeshGenerator::generate(), FlipSidesetGenerator::generate(), GeneratedMeshGenerator::generate(), LowerDBlockFromSidesetGenerator::generate(), MeshCollectionGenerator::generate(), MeshDiagnosticsGenerator::generate(), MeshExtruderGenerator::generate(), MeshRepairGenerator::generate(), MoveNodeGenerator::generate(), PlaneIDMeshGenerator::generate(), PolyLineMeshFollowingNodeSetGenerator::generate(), ProjectSideSetOntoLevelSetGenerator::generate(), RenameBlockGenerator::generate(), RenameBoundaryGenerator::generate(), RenumberBySubdomainGenerator::generate(), SmoothMeshGenerator::generate(), SpiralAnnularMeshGenerator::generate(), StackGenerator::generate(), SubdomainBoundingBoxGenerator::generate(), SubdomainPerElementGenerator::generate(), TiledMeshGenerator::generate(), XYMeshLineCutter::generate(), XYZDelaunayGenerator::generate(), PatternedMeshGenerator::generate(), MeshGenerator::generateCSG(), MeshGenerator::generateData(), GeneratedMesh::GeneratedMesh(), GeneratedMeshGenerator::GeneratedMeshGenerator(), MeshGenerator::generateInternal(), MeshGenerator::generateInternalCSG(), CircularBoundaryCorrectionGenerator::generateRadialCorrectionFactor(), MooseMesh::getAxisymmetricRadialCoord(), MooseMesh::getBlockConnectedBlocks(), MooseMesh::getBoundaryID(), MultiApp::getBoundingBox(), ChainControl::getChainControlDataByName(), WebServerControl::getClientInfo(), MooseMesh::getCoarseningMap(), MultiApp::getCommandLineArgs(), MooseVariableBase::getContinuity(), Control::getControllableParameterByName(), MooseMesh::getCoordSystem(), PhysicsBase::getCoupledPhysics(), PhysicsBase::getCoupledPhysics(), DataFileInterface::getDataFilePath(), TransfiniteMeshGenerator::getDiscreteEdge(), MooseVariableBase::getDofIndices(), VariableCondensationPreconditioner::getDofToCondense(), TransfiniteMeshGenerator::getEdge(), EigenExecutionerBase::getEigenSystemConvergence(), MooseMesh::getElementIDIndex(), Material::getElementIDNeighbor(), Material::getElementIDNeighborByName(), MooseMesh::getElemIDMapping(), MooseMesh::getElemIDsOnBlocks(), WebServerControl::Response::getError(), MultiApp::getExecutioner(), MooseApp::getExecutor(), MultiAppTransfer::getFromMultiApp(), MultiAppTransfer::getFromMultiAppInfo(), SubProblem::getFunctor(), MooseMesh::getGeneralAxisymmetricCoordAxis(), MaterialPropertyInterface::getGenericMaterialPropertyByName(), DistributedRectilinearMeshGenerator::getGhostNeighbors(), DistributedRectilinearMeshGenerator::getIndices(), MaterialPropertyInterface::getKokkosBlockMaterialProperty(), FunctionInterface::getKokkosFunctionByName(), MaterialPropertyInterface::getKokkosMaterialPropertyByName(), Material::getMaterialByName(), SubProblem::getMatrixTagID(), AnnularMesh::getMaxInDimension(), GeneratedMesh::getMaxInDimension(), MeshGenerator::getMeshGeneratorNameFromParam(), MeshGenerator::getMeshGeneratorNamesFromParam(), AnnularMesh::getMinInDimension(), GeneratedMesh::getMinInDimension(), MultiAppTransfer::getMultiApp(), DistributedRectilinearMeshGenerator::getNeighbors(), MooseMesh::getNodeBlockIds(), MooseMesh::getNodeList(), MooseMesh::getPairedBoundaryMapping(), MaterialOutputAction::getParams(), PlaneIDMeshGenerator::getPlaneID(), PostprocessorInterface::getPostprocessorValueByNameInternal(), ComponentMaterialPropertyInterface::getPropertyValue(), MooseMesh::getRefinementMap(), MooseBase::getRenamedParam(), ReporterInterface::getReporterContextBaseByName(), ReporterInterface::getReporterName(), Reporter::getReporterValueName(), MooseApp::getRestartableDataMap(), MooseApp::getRestartableDataMapName(), MooseApp::getRestartableMetaData(), MooseApp::getRMClone(), MooseObject::getSharedPtr(), MooseObject::getSharedPtr(), PhysicsBase::getSolverSystem(), MooseMesh::getSubdomainBoundaryIds(), TransientBase::getTimeIntegratorNames(), MultiAppTransfer::getToMultiApp(), MultiAppTransfer::getToMultiAppInfo(), MooseMesh::getUniqueCoordSystem(), UserObjectInterface::getUserObjectBaseByName(), UserObjectInterface::getUserObjectName(), SubProblem::getVariableHelper(), AddPeriodicBCAction::getVariables(), VectorPostprocessorInterface::getVectorPostprocessorName(), SubProblem::getVectorTag(), SubProblem::getVectorTagID(), MultiApp::globalAppToLocal(), Function::gradient(), MooseVariableBase::hasDoFsOnNodes(), PostprocessorInterface::hasPostprocessor(), PostprocessorInterface::hasPostprocessorByName(), ReporterInterface::hasReporterValue(), ReporterInterface::hasReporterValueByName(), VectorPostprocessorInterface::hasVectorPostprocessor(), VectorPostprocessorInterface::hasVectorPostprocessor(), VectorPostprocessorInterface::hasVectorPostprocessorByName(), VectorPostprocessorInterface::hasVectorPostprocessorByName(), TransientBase::incrementStepOrReject(), NEML2Action::inferMOOSEIOType(), AddVariableAction::init(), MooseMesh::init(), Sampler::init(), EigenExecutionerBase::init(), TransientBase::init(), MFEMMesh::init(), CrankNicolson::init(), ExplicitTimeIntegrator::init(), FixedPointIterationAdaptiveDT::init(), IterationAdaptiveDT::init(), MultiApp::init(), NestedDivision::initialize(), ParsedConvergence::initializeConstantSymbol(), PhysicsBase::initializePhysics(), SubProblem::initialSetup(), AuxKernelBase::initialSetup(), SolutionScalarAux::initialSetup(), FullSolveMultiApp::initialSetup(), ExplicitTimeIntegrator::initialSetup(), Function::integral(), InternalSideIndicatorBase::InternalSideIndicatorBase(), EigenExecutionerBase::inversePowerIteration(), Sampler::isAdaptiveSamplingCompleted(), MooseMesh::isBoundaryFullyExternalToSubdomains(), MooseVariableBase::isNodal(), IterationAdaptiveDT::IterationAdaptiveDT(), IterationCountConvergence::IterationCountConvergence(), LibmeshPartitioner::LibmeshPartitioner(), MooseApp::libNameToAppName(), LibtorchNeuralNetControl::LibtorchNeuralNetControl(), LineSearch::lineSearch(), MooseApp::loadLibraryAndDependencies(), ReporterPointMarker::markerSetup(), Material::Material(), Distribution::median(), FunctorRelationshipManager::mesh_reinit(), MeshDiagnosticsGenerator::MeshDiagnosticsGenerator(), MeshExtruderGenerator::MeshExtruderGenerator(), MeshRepairGenerator::MeshRepairGenerator(), SetupMeshAction::modifyParamsForUseSplit(), MeshMetaDataInterface::mooseErrorInternal(), MooseMesh::MooseMesh(), MooseObject::MooseObject(), UserObjectInterface::mooseObjectError(), MooseVariableBase::MooseVariableBase(), MoveNodeGenerator::MoveNodeGenerator(), MultiApp::MultiApp(), MultiAppTransfer::MultiAppTransfer(), NewmarkBeta::NewmarkBeta(), DistributedRectilinearMeshGenerator::nodeId(), DistributedRectilinearMeshGenerator::numNeighbors(), Output::onInterval(), FunctorRelationshipManager::operator()(), RelationshipManager::operator==(), ActionComponent::outerSurfaceArea(), ActionComponent::outerSurfaceBoundaries(), MortarNodalGeometryOutput::output(), Output::Output(), MooseApp::outputMachineReadableData(), DistributedRectilinearMeshGenerator::paritionSquarely(), ParsedConvergence::ParsedConvergence(), ParsedCurveGenerator::ParsedCurveGenerator(), ExplicitTimeIntegrator::performExplicitSolve(), PetscExternalPartitioner::PetscExternalPartitioner(), PhysicsBasedPreconditioner::PhysicsBasedPreconditioner(), PIDTransientControl::PIDTransientControl(), PiecewiseTabularInterface::PiecewiseTabularInterface(), CutMeshByLevelSetGeneratorBase::pointPairLevelSetInterception(), ProjectSideSetOntoLevelSetGenerator::pointPairLevelSetInterception(), ReporterInterface::possiblyCheckHasReporter(), VectorPostprocessorInterface::possiblyCheckHasVectorPostprocessorByName(), AStableDirk4::postResidual(), ExplicitRK2::postResidual(), ExplicitTVDRK2::postResidual(), ImplicitMidpoint::postResidual(), LStableDirk2::postResidual(), LStableDirk3::postResidual(), LStableDirk4::postResidual(), VariableCondensationPreconditioner::preallocateCondensedJacobian(), Predictor::Predictor(), TransientBase::preExecute(), MooseMesh::prepare(), MooseMesh::prepared(), FixedPointSolve::printFixedPointConvergenceReason(), MFEMFunctorMaterial::processLiterals(), MultiApp::readCommandLineArguments(), CoarsenBlockGenerator::recursiveCoarsen(), MooseApp::recursivelyCreateExecutors(), FunctorRelationshipManager::redistribute(), MooseApp::registerRestartableData(), MooseApp::registerRestartableNameWithFilter(), Sampler::reinit(), MooseApp::removeRelationshipManager(), PhysicsBase::reportPotentiallyMissedParameters(), MooseApp::restore(), RinglebMesh::RinglebMesh(), RinglebMeshGenerator::RinglebMeshGenerator(), MooseApp::run(), MooseApp::runInputs(), ScalarComponentIC::ScalarComponentIC(), DistributedRectilinearMeshGenerator::scaleNodalPositions(), FunctorRelationshipManager::set_mesh(), MooseVariableBase::setActiveTags(), DistributedRectilinearMeshGenerator::setBoundaryNames(), MooseMesh::setCoordSystem(), MooseMesh::setGeneralAxisymmetricCoordAxes(), MeshGenerator::setMeshProperty(), MooseApp::setMFEMDevice(), Sampler::setNumberOfCols(), Sampler::setNumberOfRandomSeeds(), Sampler::setNumberOfRows(), Moose::MFEM::LinearSolverBase::SetPreconditioner(), Split::setup(), TransientMultiApp::setupApp(), Moose::PeriodicBCHelper::setupAutoPeriodicBoundaries(), Moose::PeriodicBCHelper::setupManualPeriodicBoundaries(), SetupMeshAction::setupMesh(), MooseApp::setupOptions(), TimeSequenceStepperBase::setupSequence(), TransientBase::setupTimeIntegrator(), PhysicsBase::shouldCreateIC(), PhysicsBase::shouldCreateTimeDerivative(), PhysicsBase::shouldCreateVariable(), SingleMatrixPreconditioner::SingleMatrixPreconditioner(), MooseVariableBase::sizeMatrixTagData(), SmoothMeshGenerator::SmoothMeshGenerator(), SolutionTimeAdaptiveDT::SolutionTimeAdaptiveDT(), Moose::MFEM::LinearSolverBase::Solve(), TimeIntegrator::solve(), ExplicitRK2::solve(), ExplicitTVDRK2::solve(), FullSolveMultiApp::solveStep(), UserObject::spatialPoints(), UserObject::spatialValue(), SpiralAnnularMesh::SpiralAnnularMesh(), SpiralAnnularMeshGenerator::SpiralAnnularMeshGenerator(), MeshRepairGenerator::splitNonConvexPolygons(), WebServerControl::startServer(), StitchedMesh::StitchedMesh(), MaterialBase::subdomainSetup(), CutMeshByLevelSetGeneratorBase::tet4ElemCutter(), Action::timedAct(), Function::timeDerivative(), Function::timeIntegral(), ParsedCurveGenerator::tSectionSpaceDefiner(), MooseVariableScalar::uDot(), MooseVariableScalar::uDotDot(), MooseVariableScalar::uDotDotOld(), MooseVariableScalar::uDotOld(), MooseBase::uniqueName(), AuxScalarKernel::uOld(), ScalarKernelBase::uOld(), Function::value(), VariableCondensationPreconditioner::VariableCondensationPreconditioner(), PhysicsBase::variableExists(), MultiAppTransfer::variableIntegrityCheck(), AddVariableAction::variableType(), SubProblem::vectorTagName(), SubProblem::vectorTagType(), Function::vectorValue(), SubProblem::verifyVectorTags(), ActionComponent::volume(), WebServerControl::WebServerControl(), WebServerControl::writePortFile(), MFEMMesh::writeRecoveryFiles(), and MooseApp::writeRestartableMetaData().

◆ mooseErrorNonPrefixed()

template<typename... Args>
void MooseBase::mooseErrorNonPrefixed ( Args &&...  args) const
inlineinherited

Emits an error without the prefixing included in mooseError().

Definition at line 290 of file MooseBase.h.

291 {
292 callMooseError(argumentsToString(std::forward<Args>(args)...), /* with_prefix = */ false);
293 }

◆ mooseInfo()

template<typename... Args>
void MooseBase::mooseInfo ( Args &&...  args) const
inlineinherited

◆ mooseWarning() [1/2]

template<typename... Args>
void MooseBase::mooseWarning ( Args &&...  args) const
inlineinherited

Emits a warning prefixed with object name and type.

Definition at line 299 of file MooseBase.h.

300 {
301 moose::internal::mooseWarningStream(_console, messagePrefix(true), std::forward<Args>(args)...);
302 }
void mooseWarningStream(S &oss, Args &&... args)
Definition MooseError.h:197

Referenced by DiracKernelInfo::findPoint(), DataFileInterface::getDataFilePath(), MooseApp::loadLibraryAndDependencies(), and MooseBase::paramWarning().

◆ mooseWarning() [2/2]

template<typename... Args>
void SolutionInvalidInterface::mooseWarning ( Args &&...  args) const
inlineinherited

Definition at line 73 of file SolutionInvalidInterface.h.

74 {
75 _si_moose_base.MooseBase::mooseWarning(std::forward<Args>(args)...);
76 flagSolutionWarningMultipleRegistration(_si_moose_base.name() + ": warning");
77 }

Referenced by CopyMeshPartitioner::_do_partition(), AddFunctionAction::act(), AddKernelAction::act(), CommonOutputAction::act(), MaterialOutputAction::act(), MeshOnlyAction::act(), MooseMesh::addPeriodicVariable(), BoundaryMarker::BoundaryMarker(), DistributedRectilinearMeshGenerator::buildCube(), CartesianMeshGenerator::CartesianMeshGenerator(), CheckOutputAction::checkConsoleOutput(), MultiAppTransfer::checkMultiAppExecuteOn(), MeshDiagnosticsGenerator::checkNonMatchingEdges(), MeshDiagnosticsGenerator::checkPolygons(), ActionComponent::checkRequiredTasks(), PhysicsBase::checkRequiredTasks(), MultiApp::createApp(), MeshDiagnosticsGenerator::diagnosticsLog(), CartesianGridDivision::divisionIndex(), CylindricalGridDivision::divisionIndex(), SphericalGridDivision::divisionIndex(), Postprocessor::evaluateDotWarning(), FiniteDifferencePreconditioner::FiniteDifferencePreconditioner(), FixedPointSolve::FixedPointSolve(), BSplineCurveGenerator::generate(), RenumberBySubdomainGenerator::generate(), SubdomainPerElementGenerator::generate(), SurfaceMeshGeneratorBase::get2DElemNormal(), MultiAppTransfer::getAppInfo(), FunctorBinnedValuesDivision::getBinIndex(), IndicatorMarker::IndicatorMarker(), CartesianGridDivision::initialize(), CylindricalGridDivision::initialize(), SphericalGridDivision::initialize(), MaterialBase::initStatefulProperties(), IterationAdaptiveDT::limitDTToPostprocessorValue(), MFEMRefinementMarker::MFEMRefinementMarker(), NewmarkBeta::NewmarkBeta(), Output::Output(), MaterialOutputAction::outputHelper(), Executioner::problem(), TestSourceStepper::rejectStep(), PhysicsBase::reportPotentiallyMissedParameters(), MaterialBase::resetQpProperties(), MooseMesh::setCoordSystem(), TransientMultiApp::solveStep(), MeshRepairGenerator::splitNonConvexPolygons(), and VariableCondensationPreconditioner::VariableCondensationPreconditioner().

◆ mooseWarningNonPrefixed() [1/2]

template<typename... Args>
void MooseBase::mooseWarningNonPrefixed ( Args &&...  args) const
inlineinherited

Emits a warning without the prefixing included in mooseWarning().

Definition at line 308 of file MooseBase.h.

309 {
310 moose::internal::mooseWarningStream(_console, std::forward<Args>(args)...);
311 }

◆ mooseWarningNonPrefixed() [2/2]

template<typename... Args>
void SolutionInvalidInterface::mooseWarningNonPrefixed ( Args &&...  args) const
inlineinherited

Definition at line 80 of file SolutionInvalidInterface.h.

81 {
82 _si_moose_base.MooseBase::mooseWarningNonPrefixed(std::forward<Args>(args)...);
83 flagSolutionWarningMultipleRegistration(_si_moose_base.name() + ": warning");
84 }

◆ nActiveElem()

dof_id_type MFEMMesh::nActiveElem ( ) const
inlineoverridevirtualinherited

Reimplemented from MooseMesh.

Definition at line 71 of file MFEMMesh.h.

71{ return _mfem_par_mesh->GetGlobalNE(); }

◆ nActiveLocalElem()

dof_id_type MFEMMesh::nActiveLocalElem ( ) const
inlineoverridevirtualinherited

Reimplemented from MooseMesh.

Definition at line 72 of file MFEMMesh.h.

72{ return _mfem_par_mesh->GetNE(); }

◆ name()

const std::string & MooseBase::name ( ) const
inlineinherited

Get the name of the class.

Returns
The name of the class

Definition at line 103 of file MooseBase.h.

104 {
105 mooseAssert(_name.size(), "Empty name");
106 return _name;
107 }
const std::string & _name
The name of this class.
Definition MooseBase.h:381

Referenced by AdaptivityAction::act(), AddActionComponentAction::act(), AddElementalFieldAction::act(), AddPeriodicBCAction::act(), AddTimeStepperAction::act(), CommonOutputAction::act(), CopyNodalVarsAction::act(), CSGOnlyAction::act(), DeprecatedBlockAction::act(), DisplayGhostingAction::act(), MaterialOutputAction::act(), SetupResidualDebugAction::act(), SetupTimeIntegratorAction::act(), FEProblemBase::addAnyRedistributers(), Executioner::addAttributeReporter(), FEProblemBase::addAuxKernel(), MFEMProblem::addAuxKernel(), FEProblemBase::addAuxScalarKernel(), DisplacedProblem::addAuxVariable(), FEProblemBase::addBoundaryCondition(), MFEMProblem::addBoundaryCondition(), PhysicsComponentInterface::addComponent(), FEProblemBase::addConstraint(), FEProblemBase::addConvergence(), FEProblemBase::addDamper(), FEProblemBase::addDGKernel(), FEProblemBase::addDiracKernel(), FEProblemBase::addDistribution(), MooseApp::addExecutor(), MooseApp::addExecutorParams(), MFEMProblem::addFESpace(), MFEMProblem::addFESpaceHierarchy(), FEProblemBase::addFunction(), MFEMProblem::addFunction(), SubProblem::addFunctor(), FEProblemBase::addFunctorMaterial(), MFEMProblem::addFunctorMaterial(), FunctorMaterial::addFunctorProperty(), FunctorMaterial::addFunctorPropertyByBlocks(), FEProblemBase::addFVBC(), FEProblemBase::addFVGradientMethod(), FEProblemBase::addFVInitialCondition(), FEProblemBase::addFVInterfaceKernel(), FEProblemBase::addFVInterpolationMethod(), FEProblemBase::addFVKernel(), ADDGKernel::ADDGKernel(), FEProblemBase::addHDGKernel(), MFEMProblem::addImagComponentToBC(), MFEMProblem::addImagComponentToKernel(), FEProblemBase::addIndicator(), MFEMProblem::addIndicator(), FEProblemBase::addInitialCondition(), MFEMProblem::addInitialCondition(), FEProblemBase::addInterfaceKernel(), FEProblemBase::addInterfaceMaterial(), ElementAndTraceScalarHDGAssemblyHelper::additionalROVariables(), BoundaryIntegralValueConstraint::additionalROVariables(), DiffusionLHDGKernel::additionalROVariables(), ADKernelScalarBase::additionalROVariables(), FEProblemBase::addKernel(), MFEMProblem::addKernel(), FEProblemBase::addLinearFVBC(), FEProblemBase::addLinearFVKernel(), FEProblemBase::addMarker(), MFEMProblem::addMarker(), FEProblemBase::addMaterial(), FEProblemBase::addMaterialHelper(), ComponentMaterialPropertyInterface::addMaterials(), FEProblemBase::addMeshDivision(), MooseApp::addMeshGenerator(), ComponentJunction::addMeshGenerators(), ComponentMeshTransformHelper::addMeshGenerators(), CylinderComponent::addMeshGenerators(), MeshGenerator::addMeshSubgenerator(), MeshGenerator::addMeshSubgenerator(), MFEMProblem::addMFEMProblemComposer(), MFEMProblem::addMFEMSolver(), FEProblemBase::addMultiApp(), FEProblemBase::addNodalKernel(), FEProblemBase::addObject(), InitialConditionWarehouse::addObject(), ComponentPhysicsInterface::addPhysics(), SubProblem::addPiecewiseByBlockLambdaFunctor(), FEProblemBase::addPostprocessor(), MFEMProblem::addPostprocessor(), UserObjectBase::addPostprocessorDependencyHelper(), AuxKernelBase::addPostprocessorDependencyHelper(), InitialConditionBase::addPostprocessorDependencyHelper(), FEProblemBase::addPredictor(), CreateDisplacedProblemAction::addProxyRelationshipManagers(), MFEMProblem::addRealComponentToBC(), MFEMProblem::addRealComponentToKernel(), AddActionComponentAction::addRelationshipManagers(), FEProblemBase::addReporter(), FEProblemBase::addSampler(), FEProblemBase::addScalarKernel(), WebServerControl::addServerActionsInternal(), FEProblemBase::addTimeIntegrator(), FEProblemBase::addTransfer(), MFEMProblem::addTransfer(), PhysicsBase::addUserObject(), FEProblemBase::addUserObject(), UserObjectBase::addUserObjectDependencyHelper(), AuxKernelBase::addUserObjectDependencyHelper(), InitialConditionBase::addUserObjectDependencyHelper(), DisplacedProblem::addVariable(), FEProblemBase::addVectorPostprocessor(), MFEMProblem::addVectorPostprocessor(), UserObjectBase::addVectorPostprocessorDependencyHelper(), AuxKernelBase::addVectorPostprocessorDependencyHelper(), MooseLinearVariableFV< OutputType >::adError(), Output::advancedExecuteOn(), AdvancedExtruderGenerator::AdvancedExtruderGenerator(), NEML2ModelExecutor::advanceState(), MooseVariableBase::allDofIndices(), MooseApp::appBinaryName(), MooseApp::appendMeshGenerator(), MultiApp::appPostprocessorValue(), MultiApp::appProblem(), MultiApp::appProblemBase(), MultiApp::appUserObjectBase(), ArrayDGKernel::ArrayDGKernel(), ArrayParsedAux::ArrayParsedAux(), PhysicsBase::assignBlocks(), AStableDirk4::AStableDirk4(), Function::average(), MultiApp::backup(), CoarsenedPiecewiseLinear::buildCoarsenedGrid(), PiecewiseTabularInterface::buildFromFile(), PiecewiseTabularInterface::buildFromXY(), MFEMGeometricMultigridSolver::BuildMultigrid(), MooseMesh::buildNodeListFromSideList(), MultiAppVariableValueSamplePostprocessorTransfer::cacheElemToPostprocessorData(), MooseBase::callMooseError(), ChangeOverFixedPointPostprocessor::ChangeOverFixedPointPostprocessor(), ChangeOverTimePostprocessor::ChangeOverTimePostprocessor(), PhysicsBase::checkBlockRestrictionIdentical(), PhysicsBase::checkComponentType(), DefaultNonlinearConvergence::checkConvergence(), ParsedConvergence::checkConvergence(), checkCoupledScalarVariableBlocks(), FEProblemBase::checkDependMaterialsHelper(), FVFluxBC::checkFaceIntegrity(), FVInterfaceKernel::checkFaceIntegrity(), TaggingInterface::checkForNans(), SamplerBase::checkForStandardFieldVariableType(), MeshGenerator::checkGetMesh(), ReporterTransferInterface::checkHasReporterValue(), FEProblemBase::checkICRestartError(), NonlinearSystemBase::checkKernelCoverage(), Moose::Kokkos::Material::checkMaterialProperty(), Material::checkMaterialProperty(), MooseApp::checkMetaDataIntegrity(), Damper::checkMinDamping(), SideUserObject::checkNoInterfaceMaterialPropertyDependencies(), MultiAppTransfer::checkParentAppUserObjectExecuteOn(), Checkpoint::checkpointInfo(), LinearFVGradientManager::checkRestartedGradientHistory(), FEProblemBase::checkUserObjectNameCollision(), BlockRestrictable::checkVariable(), DomainUserObject::checkVariable(), Coupleable::checkWritableVar(), CoarsenSurfaceMeshAlongSidesetGenerator::coarsenAlongSidesets(), MooseVariableFieldBase::componentName(), CompositeFunction::CompositeFunction(), MaterialBase::computeProperties(), FEProblemBase::computeUserObjectByName(), VectorPostprocessorVisualizationAux::computeValue(), MooseBase::connectControllableParams(), ConstantPostprocessor::ConstantPostprocessor(), Coupleable::coupledName(), CommonOutputAction::create(), MultiApp::createApp(), MooseApp::createExecutors(), MeshGeneratorSystem::createMeshGeneratorOrder(), MooseApp::createRecoverablePerfGraph(), MoveBoundaryNodesToCurveGenerator::curveGenerator(), CutMeshByPlaneGenerator::CutMeshByPlaneGenerator(), DebugResidualAux::DebugResidualAux(), MaterialBase::declareADProperty(), MFEMComplexVariable::declareCoefficients(), MFEMVariable::declareCoefficients(), MeshInfo::declareHelper(), Moose::Kokkos::MaterialBase::declareKokkosOnDemandProperty(), Moose::Kokkos::MaterialBase::declareKokkosProperty(), MeshGenerator::declareMeshesForSubByName(), MeshGenerator::declareNullMeshName(), MaterialBase::declareProperty(), MFEMCoordinateTransformations::declareRZCoefficients(), DOFMapOutput::demangle(), DerivativeSumMaterialTempl< is_ad >::DerivativeSumMaterialTempl(), MooseMesh::detectPairedSidesets(), DGKernel::DGKernel(), DGKernelBase::DGKernelBase(), DomainUserObject::DomainUserObject(), DumpObjectsProblem::dumpObjectHelper(), ElementDamper::ElementDamper(), ElementGroupCentroidPositions::ElementGroupCentroidPositions(), ElementMaterialSampler::ElementMaterialSampler(), ElementValueSampler::ElementValueSampler(), EigenKernel::enabled(), MooseMesh::errorIfDistributedMesh(), SolutionUserObjectBase::evalMeshFunction(), SolutionUserObjectBase::evalMeshFunctionGradient(), SolutionUserObjectBase::evalMultiValuedMeshFunction(), SolutionUserObjectBase::evalMultiValuedMeshFunctionGradient(), GreaterThanLessThanPostprocessor::execute(), PointValue::execute(), RestartableDataReporter::execute(), MultiAppGeneralFieldTransfer::execute(), MultiAppNearestNodeTransfer::execute(), MultiAppProjectionTransfer::execute(), MultiAppUserObjectTransfer::execute(), SideValueSampler::execute(), WebServerControl::execute(), ActionWarehouse::executeActionsWithAction(), Exodus::Exodus(), ExtraIDIntegralVectorPostprocessor::ExtraIDIntegralVectorPostprocessor(), FVInterfaceKernel::faceArg1(), FVInterfaceKernel::faceArg2(), FEProblemBase::FEProblemBase(), NEML2ModelExecutor::fillInputs(), MultiApp::fillPositions(), MultiAppGeometricInterpolationTransfer::fillSourceInterpolationPoints(), PointSamplerBase::finalize(), ChainControl::fullControlDataName(), FunctionArrayAux::FunctionArrayAux(), FunctionDT::FunctionDT(), FVFunctionIC::functionName(), FunctionIC::functionName(), FunctorPositions::FunctorPositions(), FunctorSmootherTempl< T >::FunctorSmootherTempl(), FVInitialConditionTempl< T >::FVInitialConditionTempl(), FVOneVarDiffusionInterface::FVOneVarDiffusionInterface(), GapValueAux::GapValueAux(), BoundaryDeletionGenerator::generate(), BreakMeshByBlockGenerator::generate(), CoarsenSurfaceMeshAlongSidesetGenerator::generate(), GeneratedMeshGenerator::generate(), ManifoldSubdomainGenerator::generate(), ParsedExtraElementIDGenerator::generate(), ParsedSubdomainGeneratorBase::generate(), RenameBlockGenerator::generate(), RenameBoundaryGenerator::generate(), RenumberBySubdomainGenerator::generate(), SideSetsFromNodeSetsGenerator::generate(), StitchBoundaryMeshGenerator::generate(), StitchMeshGenerator::generate(), SubdomainBoundingBoxGenerator::generate(), SubdomainsFromPartitionerGenerator::generate(), UniqueExtraIDMeshGenerator::generate(), MeshGenerator::generateInternal(), MeshGenerator::generateInternalCSG(), InterfaceMaterial::getADMaterialProperty(), Material::getADMaterialProperty(), MultiAppTransfer::getAppInfo(), MooseMesh::getBoundaryString(), MultiApp::getBoundingBox(), MooseBase::getCheckedPointerParam(), MooseApp::getCheckpointDirectories(), MFEMProblem::getComplexGridFunction(), Control::getControllableParameterByName(), Control::getControllableValue(), Control::getControllableValueByName(), FEProblemBase::getConvergence(), MeshGenerator::getCSGBase(), MeshGenerator::getCSGBasesByName(), UserObjectBase::getDependObjects(), FEProblemBase::getDistribution(), DistributionInterface::getDistribution(), DistributionInterface::getDistributionByName(), ElementUOProvider::getElementalValueLong(), ElementUOProvider::getElementalValueReal(), MultiApp::getExecutioner(), FEProblemBase::getExecutor(), MooseApp::getExecutor(), OutputWarehouse::getFileNumbers(), FEProblemBase::getFunction(), SubProblem::getFunctor(), FEProblemBase::getFVAdvectedInterpolationMethod(), FEProblemBase::getFVFaceInterpolationMethod(), FEProblemBase::getFVGradientMethod(), FEProblemBase::getFVInterpolationMethod(), AuxKernelTempl< ComputeValueType >::getGenericMaterialProperty(), NodalPatchRecovery::getGenericMaterialProperty(), InterfaceMaterial::getGenericMaterialProperty(), Material::getGenericMaterialProperty(), InterfaceMaterial::getGenericNeighborMaterialProperty(), InterfaceMaterial::getGenericNeighborMaterialPropertyByName(), Material::getGenericOptionalMaterialProperty(), MaterialBase::getGenericZeroMaterialProperty(), MFEMProblem::getGridFunction(), FEProblemBase::getKokkosFunction(), FEProblemBase::getKokkosUserObject(), SolutionUserObjectBase::getLocalVarIndex(), Marker::getMarkerValue(), Material::getMaterial(), FEProblemBase::getMaterial(), Material::getMaterialByName(), AuxKernelTempl< ComputeValueType >::getMaterialProperty(), NodalPatchRecovery::getMaterialProperty(), InterfaceMaterial::getMaterialProperty(), Material::getMaterialProperty(), SubProblem::getMaterialPropertyBlockNames(), SubProblem::getMaterialPropertyBoundaryNames(), AuxKernelTempl< ComputeValueType >::getMaterialPropertyOld(), NodalPatchRecovery::getMaterialPropertyOld(), InterfaceMaterial::getMaterialPropertyOld(), Material::getMaterialPropertyOld(), AuxKernelTempl< ComputeValueType >::getMaterialPropertyOlder(), NodalPatchRecovery::getMaterialPropertyOlder(), InterfaceMaterial::getMaterialPropertyOlder(), Material::getMaterialPropertyOlder(), MFEMObject::getMatrixCoefficient(), MFEMObject::getMatrixCoefficientByName(), MeshGenerator::getMesh(), FEProblemBase::getMeshDivision(), MeshGenerator::getMeshesByName(), MooseApp::getMeshGenerator(), MeshGenerator::getMeshGeneratorNameFromParam(), MeshGenerator::getMeshGeneratorNamesFromParam(), MFEMProblem::getMFEMObject(), ActionWarehouse::getMooseAppName(), NEML2FEInterpolation::getMOOSEVariable(), MultiAppTransfer::getMultiApp(), InterfaceMaterial::getNeighborADMaterialProperty(), InterfaceMaterial::getNeighborMaterialProperty(), InterfaceMaterial::getNeighborMaterialPropertyOld(), InterfaceMaterial::getNeighborMaterialPropertyOlder(), Material::getOptionalADMaterialProperty(), Material::getOptionalMaterialProperty(), Material::getOptionalMaterialPropertyOld(), Material::getOptionalMaterialPropertyOlder(), MooseBase::getParam(), FEProblemBase::getPositionsObject(), FEProblemBase::getPostprocessorValueByName(), ComponentMaterialPropertyInterface::getPropertyValue(), ReporterData::getReporterInfo(), MFEMExecutedObject::getRequestedItems(), MooseApp::getRestartableDataMap(), MooseApp::getRestartableDataMapName(), MooseApp::getRestartableMetaData(), FEProblemBase::getSampler(), MFEMObject::getScalarCoefficient(), MFEMObject::getScalarCoefficientByName(), TimedSubdomainModifier::getSubdomainIDAndCheck(), MFEMExecutedObject::getSuppliedItems(), TransientBase::getTimeStepperName(), ProjectedStatefulMaterialStorageAction::getTypeEnum(), FEProblemBase::getUserObject(), FEProblemBase::getUserObjectBase(), MFEMObject::getVectorCoefficient(), MFEMObject::getVectorCoefficientByName(), LinearFVGradientManager::gradientStateVectorName(), Terminator::handleMessage(), Control::hasControllableParameterByName(), FEProblemBase::hasConvergence(), FEProblemBase::hasDistribution(), FEProblemBase::hasFunction(), SubProblem::hasFunctor(), SubProblem::hasFunctorWithType(), FEProblemBase::hasFVGradientMethod(), FEProblemBase::hasFVInterpolationMethod(), MeshInfo::hasItem(), MooseApp::hasMeshGenerator(), MFEMProblem::hasMFEMObject(), AdvancedOutput::hasOutputHelper(), FEProblemBase::hasPostprocessor(), FEProblemBase::hasPostprocessorValueByName(), MooseApp::hasRelationshipManager(), MooseApp::hasRestartableDataMap(), MooseApp::hasRestartableMetaData(), FEProblemBase::hasUserObject(), NEML2Action::inferMOOSEIOType(), AddVariableAction::init(), AdvancedOutput::init(), IterationAdaptiveDT::init(), AdvancedOutput::initAvailableLists(), MeshInfo::initCombinedInfos(), AdvancedOutput::initExecutionTypes(), AttribName::initFrom(), NestedDivision::initialize(), TransformedPositions::initialize(), BoundaryRestrictable::initializeBoundaryRestrictable(), AuxKernelBase::initialSetup(), SolutionScalarAux::initialSetup(), MFEMScalarQuadratureFunction::initialSetup(), MFEMVectorQuadratureFunction::initialSetup(), Console::initialSetup(), JSONOutput::initialSetup(), BoundaryLinearFVFluxIntegral::initialSetup(), NodalVariableValue::initialSetup(), SideFVFluxBCIntegral::initialSetup(), MultiAppGeneralFieldFunctorTransfer::initialSetup(), MultiAppProjectionTransfer::initialSetup(), BoundaryMeshBuilder::initialSetup(), SolutionUserObjectBase::initialSetup(), AdvancedOutput::initOutputList(), AdvancedOutput::initPostprocessorOrVectorPostprocessorLists(), MaterialBase::initStatefulProperties(), Function::integral(), InterfaceKernelTempl< T >::InterfaceKernelTempl(), MultiAppGeometricInterpolationTransfer::interpolateTargetPoints(), MeshGenerator::isChildMeshGenerator(), DerivativeMaterialInterface< T >::isNotObjectVariable(), MeshGenerator::isNullMeshName(), MooseBase::isParamSetByUser(), MooseBase::isParamValid(), MeshGenerator::isParentMeshGenerator(), LinearCombinationFunction::LinearCombinationFunction(), FEProblemBase::logAdd(), MooseLinearVariableFV< OutputType >::lowerDError(), Marker::Marker(), MaterialBase::markMatPropRequested(), Material::Material(), Distribution::median(), MemoryUsageReporter::MemoryUsageReporter(), NEML2ModelExecutor::meshChanged(), MeshGenerator::meshPropertyPrefix(), MooseBase::messagePrefix(), MFEMGeometricMultigridSolver::MFEMGeometricMultigridSolver(), MFEMScalarQuadratureFunction::MFEMScalarQuadratureFunction(), MFEMTransient::MFEMTransient(), MFEMVectorQuadratureFunction::MFEMVectorQuadratureFunction(), OutputWarehouse::mooseConsole(), SolutionInvalidInterface::mooseDeprecated(), MooseVariableBase::MooseVariableBase(), MooseVariableInterface< T >::MooseVariableInterface(), SolutionInvalidInterface::mooseWarning(), SolutionInvalidInterface::mooseWarningNonPrefixed(), MoveNodesByParsedExpressionModifier::MoveNodesByParsedExpressionModifier(), MultiAppGeneralFieldTransfer::MultiAppGeneralFieldTransfer(), MultiAppUserObjectTransfer::MultiAppUserObjectTransfer(), NEML2PreKernel::NEML2PreKernel(), NodalDamper::NodalDamper(), MooseLinearVariableFV< OutputType >::nodalError(), NodalPatchRecoveryAuxBase::NodalPatchRecoveryAuxBase(), NodalValueSampler::NodalValueSampler(), MeshGenerator::Comparator::operator()(), DOFMapOutput::output(), ProgressOutput::output(), Output::Output(), AdvancedOutput::outputElementalVariables(), ConsoleUtils::outputExecutionInformation(), MaterialOutputAction::outputHelper(), AdvancedOutput::outputInput(), AdvancedOutput::outputNodalVariables(), AdvancedOutput::outputPostprocessors(), Exodus::outputPostprocessors(), Nemesis::outputPostprocessors(), TableOutput::outputReporter(), AdvancedOutput::outputReporters(), AdvancedOutput::outputScalarVariables(), AdvancedOutput::outputSystemInformation(), AdvancedOutput::outputVectorPostprocessors(), SolutionInvalidInterface::paramWarning(), ParsedCurveGenerator::ParsedCurveGenerator(), ParsedODEKernel::ParsedODEKernel(), ComponentPhysicsInterface::physicsExists(), PiecewiseBilinear::PiecewiseBilinear(), PiecewiseByBlockFunctorMaterialTempl< T >::PiecewiseByBlockFunctorMaterialTempl(), PiecewiseFunction::PiecewiseFunction(), PointInUnionCheckUO::PointInUnionCheckUO(), MooseApp::possiblyLoadRestartableMetaData(), MFEMExecutedObject::postprocessorDependencyKey(), PhysicsBase::prefix(), MooseMesh::prepare(), BlockRestrictionDebugOutput::printBlockRestrictionMap(), PerfGraphLivePrint::printStats(), FEProblemBase::projectInitialConditionOnCustomRange(), MooseBase::queryParam(), MultiApp::readCommandLineArguments(), Receiver::Receiver(), Executor::Result::record(), FEProblemBase::registerRandomInterface(), MooseApp::registerRestartableDataMapName(), MooseApp::registerRestartableNameWithFilter(), MaterialBase::resetQpProperties(), MultiApp::restore(), ScalarComponentIC::ScalarComponentIC(), MultiApp::setAppOutputFileBase(), FEProblemBase::setAuxKernelParamsAndLog(), MooseMesh::setBoundaryName(), Control::setControllableValue(), Control::setControllableValueByName(), OutputWarehouse::setFileNumbers(), FEProblemBase::setPostprocessorValueByName(), FEProblemBase::setResidualObjectParamsAndLog(), MooseMesh::setSubdomainName(), MooseMesh::setSubdomainName(), NodeSetsGeneratorBase::setup(), SideSetsGeneratorBase::setup(), SurfaceMeshGeneratorBase::setup(), Split::setup(), TransientMultiApp::setupApp(), MoveNodesByParsedExpressionModifier::setupNodalOutputVariables(), NEML2Action::setupOutputMappings(), SideSetExtruderGenerator::SideSetExtruderGenerator(), TransientMultiApp::solveStep(), UserObject::spatialValue(), LinearFVGradientReader::stateComponents(), StitchedMesh::StitchedMesh(), SubProblem::storeBoundaryDelayedCheckMatProp(), SubProblem::storeBoundaryMatPropName(), MaterialBase::storeBoundaryZeroMatProp(), SubProblem::storeBoundaryZeroMatProp(), SubProblem::storeSubdomainDelayedCheckMatProp(), SubProblem::storeSubdomainMatPropName(), MaterialBase::storeSubdomainZeroMatProp(), SubProblem::storeSubdomainZeroMatProp(), ConstraintWarehouse::subdomainsCovered(), MaterialBase::subdomainSetup(), SumPostprocessor::SumPostprocessor(), MFEMPostprocessor::suppliedPostprocessorName(), MFEMVectorPostprocessor::suppliedVectorPostprocessorName(), BoundaryMeshBuilder::surfaceElementSet(), NEML2FEInterpolation::syncWithMainThread(), TaggingInterface::TaggingInterface(), MooseLinearVariableFV< OutputType >::timeIntegratorError(), VectorPostprocessorVisualizationAux::timestepSetup(), ElementSubdomainModifierBase::timestepSetup(), to_json(), MultiAppDofCopyTransfer::transfer(), MultiAppShapeEvaluationTransfer::transferVariable(), MultiAppMFEMCopyTransfer::transferVariables(), MultiAppMFEMShapeEvaluationTransfer::transferVariables(), TransientMultiApp::TransientMultiApp(), MooseBase::typeAndName(), MooseBase::uniqueParameterName(), FVQpFluxBC::uOnGhost(), FVQpFluxBC::uOnUSub(), UserObjectBase::UserObjectBase(), UserObjectInterface::userObjectName(), ParsedAux::validateGenericVectorNames(), MeshInfo::validParams(), MFEMExecutedObject::variableDependencyKey(), PhysicsBase::variableExists(), MultiAppTransfer::variableIntegrityCheck(), VectorMagnitudeFunctorMaterialTempl< is_ad >::VectorMagnitudeFunctorMaterialTempl(), MFEMExecutedObject::vectorPostprocessorDependencyKey(), Convergence::verboseOutput(), AdvancedOutput::wantOutput(), Coupleable::writableCoupledValue(), Coupleable::writableVariable(), Console::write(), MooseApp::writeRestartableMetaData(), and XYQuadrilateralMeshFromBoundaryCurve::XYQuadrilateralMeshFromBoundaryCurve().

◆ needGhostGhostedBoundaries()

void MooseMesh::needGhostGhostedBoundaries ( bool  needghost)
inlineinherited

Whether or not we want to ghost ghosted boundaries.

Definition at line 624 of file MooseMesh.h.

624{ _need_ghost_ghosted_boundaries = needghost; }

Referenced by DistributedRectilinearMeshGenerator::generate().

◆ needsPrepareForUse()

void MooseMesh::needsPrepareForUse ( )
inherited

If this method is called, we will call libMesh's prepare_for_use method when we call Moose's prepare method.

This should only be set when the mesh structure is changed by MeshGenerators (i.e. Element deletion).

Definition at line 3229 of file MooseMesh.C.

3230{
3231 prepared(false);
3232}
bool prepared() const
Setter/getter for whether the mesh is prepared.
Definition MooseMesh.C:3201

◆ needsRemoteElemDeletion() [1/2]

bool MooseMesh::needsRemoteElemDeletion ( ) const
inlineinherited

Whether we need to delete remote elements.

Definition at line 1224 of file MooseMesh.h.

1224{ return _need_delete; }

◆ needsRemoteElemDeletion() [2/2]

void MooseMesh::needsRemoteElemDeletion ( bool  need_delete)
inlineinherited

Set whether we need to delete remote elements.

Definition at line 1219 of file MooseMesh.h.

1219{ _need_delete = need_delete; }

◆ nElem()

dof_id_type MooseMesh::nElem ( ) const
virtualinherited

Definition at line 3145 of file MooseMesh.C.

3146{
3147 return getMesh().n_elem();
3148}

Referenced by PropertyReadFile::getElementData(), and PropertyReadFile::readData().

◆ nFace()

unsigned int MooseMesh::nFace ( ) const
inlineinherited

accessors for the FaceInfo objects

Definition at line 1302 of file MooseMesh.h.

1302{ return _face_info.size(); }

◆ nLocalNodes()

virtual dof_id_type MooseMesh::nLocalNodes ( ) const
inlinevirtualinherited

Definition at line 336 of file MooseMesh.h.

336{ return _mesh->n_local_nodes(); }

◆ nNodes()

dof_id_type MooseMesh::nNodes ( ) const
virtualinherited

Calls n_nodes/elem() on the underlying libMesh mesh object.

Definition at line 3139 of file MooseMesh.C.

3140{
3141 return getMesh().n_nodes();
3142}

Referenced by PropertyReadFile::getNodeData(), and PropertyReadFile::readData().

◆ node() [1/2]

Node & MooseMesh::node ( const dof_id_type  i)
virtualinherited

Definition at line 839 of file MooseMesh.C.

840{
841 mooseDeprecated("MooseMesh::node() is deprecated, please use MooseMesh::nodeRef() instead");
842 return nodeRef(i);
843}
virtual const Node & nodeRef(const dof_id_type i) const
Definition MooseMesh.C:846

◆ node() [2/2]

const Node & MooseMesh::node ( const dof_id_type  i) const
virtualinherited

Various accessors (pointers/references) for Node "i".

If the requested node is a remote node on a distributed mesh, only the query accessors are valid to call, and they return NULL.

Definition at line 832 of file MooseMesh.C.

833{
834 mooseDeprecated("MooseMesh::node() is deprecated, please use MooseMesh::nodeRef() instead");
835 return nodeRef(i);
836}

Referenced by MooseMesh::addUniqueNode(), GeneratedMesh::buildMesh(), MooseMesh::buildPeriodicNodeMap(), MooseMesh::detectOrthogonalDimRanges(), MooseMesh::getNodeBlockIds(), MooseMesh::isSemiLocal(), and MooseMesh::updateActiveSemiLocalNodeRange().

◆ nodePtr() [1/2]

Node * MooseMesh::nodePtr ( const dof_id_type  i)
virtualinherited

Definition at line 866 of file MooseMesh.C.

867{
868 return &nodeRef(i);
869}

◆ nodePtr() [2/2]

const Node * MooseMesh::nodePtr ( const dof_id_type  i) const
virtualinherited

Definition at line 860 of file MooseMesh.C.

861{
862 return &nodeRef(i);
863}

Referenced by ElementSubdomainModifierBase::reinitializedNodeRange().

◆ nodeRef() [1/2]

Node & MooseMesh::nodeRef ( const dof_id_type  i)
virtualinherited

Definition at line 854 of file MooseMesh.C.

855{
856 return const_cast<Node &>(const_cast<const MooseMesh *>(this)->nodeRef(i));
857}
MooseMesh wraps a libMesh::Mesh object and enhances its capabilities by caching additional data and s...
Definition MooseMesh.h:95

◆ nodeRef() [2/2]

const Node & MooseMesh::nodeRef ( const dof_id_type  i) const
virtualinherited

◆ nodeSetNodes()

const std::map< boundary_id_type, std::vector< dof_id_type > > & MooseMesh::nodeSetNodes ( ) const
inlineinherited
Returns
A map from nodeset ids to the vector of node ids in the nodeset

Definition at line 2359 of file MooseMesh.h.

2360{
2361 return _node_set_nodes;
2362}

◆ nodeToElemMap()

const std::unordered_map< dof_id_type, std::vector< dof_id_type > > & MooseMesh::nodeToElemMap ( )
inherited

◆ nPartitions()

virtual unsigned int MooseMesh::nPartitions ( ) const
inlinevirtualinherited

Definition at line 341 of file MooseMesh.h.

341{ return _mesh->n_partitions(); }

◆ nSubdomains()

SubdomainID MFEMMesh::nSubdomains ( ) const
inlineoverridevirtualinherited

Reimplemented from MooseMesh.

Definition at line 70 of file MFEMMesh.h.

70{ return _mfem_par_mesh->attributes.Size(); }

◆ onMeshChanged()

void MooseMesh::onMeshChanged ( )
virtualinherited

Declares a callback function that is executed at the conclusion of meshChanged().

Ther user can implement actions required after changing the mesh here.

Definition at line 919 of file MooseMesh.C.

920{
921}

Referenced by MooseMesh::meshChanged().

◆ operator const libMesh::MeshBase &()

MooseMesh::operator const libMesh::MeshBase & ( ) const
inherited

Definition at line 3503 of file MooseMesh.C.

3503{ return getMesh(); }

◆ operator libMesh::MeshBase &()

MooseMesh::operator libMesh::MeshBase & ( )
inherited

Implicit conversion operator from MooseMesh -> libMesh::MeshBase.

Definition at line 3501 of file MooseMesh.C.

3501{ return getMesh(); }

◆ ownedElemInfoBegin()

MooseMesh::elem_info_iterator MooseMesh::ownedElemInfoBegin ( )
inherited

Iterators to owned faceInfo objects.

These faceInfo-s are required for the face loops and to filter out the faceInfo-s that are not owned by this processor in case we have a distributed mesh and we included FaceInfo objects that are on processor boundaries

Definition at line 1476 of file MooseMesh.C.

1477{
1478 return elem_info_iterator(_elem_info.begin(),
1479 _elem_info.end(),
1480 Predicates::NotNull<std::vector<const ElemInfo *>::iterator>());
1481}

Referenced by LinearSystem::computeLinearSystemInternal(), and FEProblemBase::projectSolution().

◆ ownedElemInfoEnd()

MooseMesh::elem_info_iterator MooseMesh::ownedElemInfoEnd ( )
inherited

Definition at line 1484 of file MooseMesh.C.

1485{
1486 return elem_info_iterator(_elem_info.end(),
1487 _elem_info.end(),
1488 Predicates::NotNull<std::vector<const ElemInfo *>::iterator>());
1489}

Referenced by LinearSystem::computeLinearSystemInternal(), and FEProblemBase::projectSolution().

◆ ownedFaceInfoBegin()

MooseMesh::face_info_iterator MooseMesh::ownedFaceInfoBegin ( )
inherited

Iterators to owned faceInfo objects.

These faceInfo-s are required for the face loops and to filter out the faceInfo-s that are not owned by this processor in case we have a distributed mesh and we included FaceInfo objects that are on processor boundaries

Definition at line 1458 of file MooseMesh.C.

1459{
1460 return face_info_iterator(
1461 _face_info.begin(),
1462 _face_info.end(),
1463 libMesh::Predicates::pid<std::vector<const FaceInfo *>::iterator>(this->processor_id()));
1464}

Referenced by NonlinearSystemBase::computeJacobianInternal(), LinearSystem::computeLinearSystemInternal(), NonlinearSystemBase::computeResidualAndJacobianInternal(), and NonlinearSystemBase::computeResidualInternal().

◆ ownedFaceInfoEnd()

MooseMesh::face_info_iterator MooseMesh::ownedFaceInfoEnd ( )
inherited

Definition at line 1467 of file MooseMesh.C.

1468{
1469 return face_info_iterator(
1470 _face_info.end(),
1471 _face_info.end(),
1472 libMesh::Predicates::pid<std::vector<const FaceInfo *>::iterator>(this->processor_id()));
1473}

Referenced by NonlinearSystemBase::computeJacobianInternal(), LinearSystem::computeLinearSystemInternal(), NonlinearSystemBase::computeResidualAndJacobianInternal(), and NonlinearSystemBase::computeResidualInternal().

◆ paramError()

template<typename... Args>
void MooseBase::paramError ( const std::string &  param,
Args...  args 
) const
inherited

Emits an error prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.

If this object's parameters were not created directly by the Parser, then this function falls back to the normal behavior of mooseError - only printing a message using the given args.

Definition at line 457 of file MooseBase.h.

458{
459 _pars.paramError(param, std::forward<Args>(args)...);
460}
void paramError(const std::string &param, Args... args) const
Emits a parameter error prefixed with the parameter location and object information if available.

Referenced by HierarchicalGridPartitioner::_do_partition(), AutoCheckpointAction::act(), CommonOutputAction::act(), SetupDebugAction::act(), DiffusionCG::addFEKernels(), DiffusionFV::addFVKernels(), NEML2ModelExecutor::addGatheredParameter(), NEML2ModelExecutor::addGatheredVariable(), ADDGKernel::ADDGKernel(), ComponentJunction::addMeshGenerators(), CylinderComponent::addMeshGenerators(), ReporterPointSource::addPoints(), DiffusionPhysicsBase::addPostprocessors(), ADIntegratedBCTempl< T >::ADIntegratedBCTempl(), ADKernelTempl< T >::ADKernelTempl(), ADPenaltyPeriodicSegmentalConstraint::ADPenaltyPeriodicSegmentalConstraint(), ADPeriodicSegmentalConstraint::ADPeriodicSegmentalConstraint(), AdvancedExtruderGenerator::AdvancedExtruderGenerator(), AdvectiveFluxAux::AdvectiveFluxAux(), AnnularMesh::AnnularMesh(), AnnularMeshGenerator::AnnularMeshGenerator(), ArrayBodyForce::ArrayBodyForce(), ArrayCoupledForce::ArrayCoupledForce(), ArrayDGKernel::ArrayDGKernel(), ArrayDGLowerDKernel::ArrayDGLowerDKernel(), ArrayDirichletBC::ArrayDirichletBC(), ArrayHFEMDirichletBC::ArrayHFEMDirichletBC(), ArrayIntegratedBC::ArrayIntegratedBC(), ArrayKernel::ArrayKernel(), ArrayLowerDIntegratedBC::ArrayLowerDIntegratedBC(), ArrayParsedAux::ArrayParsedAux(), ArrayPenaltyDirichletBC::ArrayPenaltyDirichletBC(), ArrayReactionNodalKernelTempl< is_ad >::ArrayReactionNodalKernelTempl(), ArrayVacuumBC::ArrayVacuumBC(), ArrayVarReductionAux::ArrayVarReductionAux(), ParsedSubdomainIDsGenerator::assignElemSubdomainID(), AuxKernelBase::AuxKernelBase(), BatchMeshGeneratorAction::BatchMeshGeneratorAction(), BlockDeletionGenerator::BlockDeletionGenerator(), BlockWeightedPartitioner::BlockWeightedPartitioner(), BoundaryIntegralValueConstraint::BoundaryIntegralValueConstraint(), BoundaryLinearFVFluxIntegral::BoundaryLinearFVFluxIntegral(), BoundsBase::BoundsBase(), BreakMeshByBlockGenerator::BreakMeshByBlockGenerator(), BSplineCurveGenerator::BSplineCurveGenerator(), BuildArrayVariableAux::BuildArrayVariableAux(), MFEMFESpaceHierarchy::buildHierarchy(), MFEMMesh::buildMesh(), MFEMGeometricMultigridSolver::BuildMultigrid(), TimeSequenceStepperBase::buildSequence(), CartesianGridDivision::CartesianGridDivision(), CartesianMeshGenerator::CartesianMeshGenerator(), SurfaceDelaunayGeneratorBase::checkBoundaryAndHolesParams(), checkComponent(), Moose::Kokkos::ParsedObjectBase::checkDuplicateSymbols(), SamplerBase::checkForStandardFieldVariableType(), MeshGenerator::checkGetMesh(), ComponentInitialConditionInterface::checkInitialConditionsAllRequested(), BatchMeshGeneratorAction::checkInputParameterType(), PhysicsBase::checkIntegrityEarly(), SurfaceDelaunayGeneratorBase::checkInteriorPoints(), SideUserObject::checkNoInterfaceMaterialPropertyDependencies(), PostprocessorInterface::checkParam(), FEProblemBase::checkProblemIntegrity(), MultiAppReporterTransfer::checkSiblingsTransferSupported(), MFEMMultiAppTransfer::checkValidTransferProblemTypes(), Coupleable::checkVar(), MultiAppTransfer::checkVariable(), CircularBoundaryCorrectionGenerator::CircularBoundaryCorrectionGenerator(), CircularBoundaryCorrectionGenerator::circularCenterCalculator(), MultiAppGeneralFieldTransfer::closestToPosition(), CoarsenBlockGenerator::CoarsenBlockGenerator(), CombinedVectorPostprocessor::CombinedVectorPostprocessor(), CombinerGenerator::CombinerGenerator(), ComponentInitialConditionInterface::ComponentInitialConditionInterface(), ComponentJunction::ComponentJunction(), ComponentMaterialPropertyInterface::ComponentMaterialPropertyInterface(), CompositionDT::CompositionDT(), ConcentricCircleMeshGenerator::ConcentricCircleMeshGenerator(), LibtorchNeuralNetControl::conditionalParameterError(), ConservativeAdvectionBCTempl< is_ad >::ConservativeAdvectionBCTempl(), ConservativeAdvectionTempl< is_ad >::ConservativeAdvectionTempl(), ConstantVectorPostprocessor::ConstantVectorPostprocessor(), MFEMNewtonNonlinearSolver::ConstructSolver(), ContainsPointAux::ContainsPointAux(), CopyValueAux::CopyValueAux(), MultiAppGeneralFieldTransfer::correctSolutionVectorValues(), Coupleable::Coupleable(), CoupledForceTempl< is_ad >::CoupledForceTempl(), CoupledValueFunctionMaterialTempl< is_ad >::CoupledValueFunctionMaterialTempl(), MultiApp::createApp(), MeshGeneratorSystem::createMeshGenerator(), MoveBoundaryNodesToCurveGenerator::curveGenerator(), CylindricalGridDivision::CylindricalGridDivision(), DebugResidualAux::DebugResidualAux(), ConstantReporter::declareConstantReporterValue(), ConstantReporter::declareConstantReporterValues(), AccumulateReporter::declareLateValues(), DefaultMultiAppFixedPointConvergence::DefaultMultiAppFixedPointConvergence(), DGKernel::DGKernel(), DGKernelBase::DGKernelBase(), DGLowerDKernel::DGLowerDKernel(), DiffusionFluxAux::DiffusionFluxAux(), DomainUserObject::DomainUserObject(), EigenProblem::EigenProblem(), EigenProblemSolve::EigenProblemSolve(), ElementAdaptivityLevelAux::ElementAdaptivityLevelAux(), ElementGenerator::ElementGenerator(), ElementGroupCentroidPositions::ElementGroupCentroidPositions(), ElementLengthAux::ElementLengthAux(), ElementLpNormAux::ElementLpNormAux(), ElementNormalAux::ElementNormalAux(), ExtraIDIntegralVectorPostprocessor::elementValue(), ElementValueSampler::ElementValueSampler(), ElementVectorL2Error::ElementVectorL2Error(), EqualValueEmbeddedConstraintTempl< is_ad >::EqualValueEmbeddedConstraintTempl(), ReporterPointSource::errorCheck(), StitchMeshGeneratorBase::errorMissingBoundary(), ExamplePatchMeshGenerator::ExamplePatchMeshGenerator(), FunctorNodalCorrector::execute(), MultiAppNearestNodeTransfer::execute(), MultiAppUserObjectTransfer::execute(), ExtraElementIDAux::ExtraElementIDAux(), ExtraElementIntegerDivision::ExtraElementIntegerDivision(), ExtraIDIntegralVectorPostprocessor::ExtraIDIntegralVectorPostprocessor(), FEProblemBase::FEProblemBase(), FEProblemSolve::FEProblemSolve(), FileMeshGenerator::FileMeshGenerator(), FillBetweenCurvesGenerator::FillBetweenCurvesGenerator(), FillBetweenSidesetsGenerator::FillBetweenSidesetsGenerator(), SpatialUserObjectVectorPostprocessor::fillPoints(), CombinerGenerator::fillPositions(), MultiApp::fillPositions(), InternalSideIndicatorBase::finalize(), MeshTriangulationUtils::finalizeTriangulation(), FixedPointSolve::findTransformedSystem(), FixedPointSolve::FixedPointSolve(), ForcingFunctionAux::ForcingFunctionAux(), FullSolveMultiApp::FullSolveMultiApp(), FunctionArrayAux::FunctionArrayAux(), FunctionValuePostprocessor::FunctionValuePostprocessor(), FunctorADConverterTempl< T >::FunctorADConverterTempl(), FunctorAux::FunctorAux(), FunctorBinnedValuesDivision::FunctorBinnedValuesDivision(), FunctorCoordinatesFunctionAux::FunctorCoordinatesFunctionAux(), FunctorElementalGradientAuxTempl< is_ad >::FunctorElementalGradientAuxTempl(), FunctorExtremaPositions::FunctorExtremaPositions(), FunctorIC::FunctorIC(), FunctorNodalCorrector::FunctorNodalCorrector(), FunctorPositions::FunctorPositions(), FunctorSmootherTempl< T >::FunctorSmootherTempl(), FunctorVectorElementalAuxTempl< is_ad >::FunctorVectorElementalAuxTempl(), FVAdvection::FVAdvection(), FVFluxBC::FVFluxBC(), FVInterfaceKernel::FVInterfaceKernel(), FVOneVarDiffusionInterface::FVOneVarDiffusionInterface(), FVTwoVarContinuityConstraint::FVTwoVarContinuityConstraint(), Boundary2DDelaunayGenerator::General2DDelaunay(), SurfaceSubdomainsDelaunayRemesher::General2DDelaunay(), AddMetaDataGenerator::generate(), AdvancedExtruderGenerator::generate(), BlockDeletionGenerator::generate(), BlockToMeshConverterGenerator::generate(), Boundary2DDelaunayGenerator::generate(), BoundaryDeletionGenerator::generate(), BoundaryElementConversionGenerator::generate(), BreakBoundaryOnSubdomainGenerator::generate(), BreakMeshByBlockGenerator::generate(), BreakMeshByElementGenerator::generate(), CircularBoundaryCorrectionGenerator::generate(), CoarsenBlockGenerator::generate(), CoarsenSurfaceMeshAlongSidesetGenerator::generate(), CombinerGenerator::generate(), CutMeshByLevelSetGeneratorBase::generate(), ElementsToTetrahedronsConverter::generate(), ExtraNodesetGenerator::generate(), FillBetweenCurvesGenerator::generate(), FillBetweenSidesetsGenerator::generate(), FlipSidesetGenerator::generate(), GeneratedMeshGenerator::generate(), LowerDBlockFromSidesetGenerator::generate(), ManifoldSubdomainGenerator::generate(), MeshCollectionGenerator::generate(), MeshExtruderGenerator::generate(), MoveBoundaryNodesToCurveGenerator::generate(), ParsedCurveGenerator::generate(), ParsedExtraElementIDGenerator::generate(), ParsedSubdomainGeneratorBase::generate(), PlaneIDMeshGenerator::generate(), PolyLineMeshFollowingNodeSetGenerator::generate(), ProjectSideSetOntoLevelSetGenerator::generate(), RefineBlockGenerator::generate(), RefineSidesetGenerator::generate(), RenameBlockGenerator::generate(), RenameBoundaryGenerator::generate(), RenumberBySubdomainGenerator::generate(), SideSetsFromNodeSetsGenerator::generate(), StackGenerator::generate(), SubdomainBoundingBoxGenerator::generate(), SubdomainsFromPartitionerGenerator::generate(), SurfaceSubdomainsDelaunayRemesher::generate(), TriToQuadConverter::generate(), UniqueExtraIDMeshGenerator::generate(), XYFrontalDelaunayGenerator::generate(), XYMeshLineCutter::generate(), XYZDelaunayGenerator::generate(), PatternedMeshGenerator::generate(), GeneratedMeshGenerator::GeneratedMeshGenerator(), BoundaryLayerUtils::generateOffsetPolyline(), GenericConstantStdVectorMaterialTempl< is_ad >::GenericConstantStdVectorMaterialTempl(), GenericFunctorGradientMaterialTempl< is_ad >::GenericFunctorGradientMaterialTempl(), GenericFunctorMaterialTempl< is_ad >::GenericFunctorMaterialTempl(), GenericFunctorTimeDerivativeMaterialTempl< is_ad >::GenericFunctorTimeDerivativeMaterialTempl(), GenericVectorFunctorMaterialTempl< is_ad >::GenericVectorFunctorMaterialTempl(), PropertyReadFile::getBlockData(), ComponentBoundaryConditionInterface::getBoundaryCondition(), MultiApp::getCommandLineArgs(), PropertyReadFile::getData(), PropertyReadFile::getFileNames(), Sampler::getGlobalSamples(), ComponentInitialConditionInterface::getInitialCondition(), NEML2Action::getInputParameterMapping(), MultiAppNearestNodeTransfer::getLocalEntitiesAndComponents(), Sampler::getLocalSamples(), MeshGenerator::getMeshGeneratorNameFromParam(), MeshGenerator::getMeshGeneratorNamesFromParam(), Sampler::getNextLocalRow(), FEProblemSolve::getParamFromNonlinearSystemVectorParam(), PostprocessorInterface::getPostprocessorNameInternal(), PostprocessorInterface::getPostprocessorValueInternal(), MultiAppNearestNodeTransfer::getTargetLocalNodes(), UserObjectInterface::getUserObjectBase(), UserObjectInterface::getUserObjectName(), AddPeriodicBCAction::getVariables(), HFEMDirichletBC::HFEMDirichletBC(), AddVariableAction::init(), MFEMTransient::init(), MultiApp::init(), DistributedPositions::initialize(), BlockWeightedPartitioner::initialize(), BlockRestrictable::initializeBlockRestrictable(), BoundaryRestrictable::initializeBoundaryRestrictable(), PhysicsBase::initializePhysics(), ReferenceResidualConvergence::initialSetup(), Axisymmetric2D3DSolutionFunction::initialSetup(), PiecewiseConstantFromCSV::initialSetup(), SolutionIC::initialSetup(), LibtorchControlValuePostprocessor::initialSetup(), ElementSubdomainModifierBase::initialSetup(), MFEMScalarCoefficientPointValueSampler::initialSetup(), FullSolveMultiApp::initialSetup(), JSONOutput::initialSetup(), BoundaryLinearFVFluxIntegral::initialSetup(), SideFVFluxBCIntegral::initialSetup(), MultiAppCloneReporterTransfer::initialSetup(), MultiAppDofCopyTransfer::initialSetup(), MultiAppGeneralFieldKDTreeTransferBase::initialSetup(), MultiAppGeneralFieldNearestLocationTransfer::initialSetup(), MultiAppGeneralFieldTransfer::initialSetup(), MultiAppVariableValueSamplePostprocessorTransfer::initialSetup(), PointInPolyhedronCheckUO::initialSetup(), HistogramVectorPostprocessor::initialSetup(), SampledOutput::initSample(), AddMetaDataGenerator::inputChecker(), IntegratedBC::IntegratedBC(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::InterfaceDiffusiveFluxIntegralTempl(), InterfaceValueUserObjectAux::InterfaceValueUserObjectAux(), InternalSideIndicatorBase::InternalSideIndicatorBase(), InterpolatedStatefulMaterialTempl< T >::InterpolatedStatefulMaterialTempl(), InversePowerMethod::InversePowerMethod(), IterationAdaptiveDT::IterationAdaptiveDT(), MultiApp::keepSolutionDuringRestore(), Kernel::Kernel(), LibtorchNeuralNetControl::LibtorchNeuralNetControl(), LinearCombinationFunction::LinearCombinationFunction(), LinearFVAdvectionDiffusionFunctorRobinBC::LinearFVAdvectionDiffusionFunctorRobinBC(), LowerDIntegratedBC::LowerDIntegratedBC(), PNGOutput::makeMeshFunc(), MatCoupledForce::MatCoupledForce(), MaterialADConverterTempl< T >::MaterialADConverterTempl(), MaterialFunctorConverterTempl< T >::MaterialFunctorConverterTempl(), MatReactionTempl< is_ad >::MatReactionTempl(), MatrixSymmetryCheck::MatrixSymmetryCheck(), PatternedMeshGenerator::mergeSubdomainNameMaps(), MeshCollectionGenerator::MeshCollectionGenerator(), MeshDiagnosticsGenerator::MeshDiagnosticsGenerator(), MeshDivisionAux::MeshDivisionAux(), MeshGenerator::MeshGenerator(), MeshGeneratorComponent::MeshGeneratorComponent(), MeshInfo::MeshInfo(), MFEMComplexSumAux::MFEMComplexSumAux(), MFEMEigenproblem::MFEMEigenproblem(), MFEMFunctorMaterial::MFEMFunctorMaterial(), MFEMGeneratedMeshGenerator::MFEMGeneratedMeshGenerator(), MFEMGenericFunctorMaterial::MFEMGenericFunctorMaterial(), MFEMGenericFunctorMatrixMaterial::MFEMGenericFunctorMatrixMaterial(), MFEMGenericFunctorVectorMaterial::MFEMGenericFunctorVectorMaterial(), MFEMGeometricMultigridSolver::MFEMGeometricMultigridSolver(), MFEMHypreBoomerAMG::MFEMHypreBoomerAMG(), MFEMMultiAppTransfer::MFEMMultiAppTransfer(), MFEMNDtoRTAux::MFEMNDtoRTAux(), MFEMSumAux::MFEMSumAux(), MFEMVariable::MFEMVariable(), MooseLinearVariableFV< OutputType >::MooseLinearVariableFV(), UserObjectInterface::mooseObjectError(), MoosePreconditioner::MoosePreconditioner(), MooseStaticCondensationPreconditioner::MooseStaticCondensationPreconditioner(), MooseVariableBase::MooseVariableBase(), MortarConstraintBase::MortarConstraintBase(), MortarNodalAuxKernelTempl< ComputeValueType >::MortarNodalAuxKernelTempl(), MultiApp::moveApp(), MoveBoundaryNodesToCurveGenerator::MoveBoundaryNodesToCurveGenerator(), MoveNodeGenerator::MoveNodeGenerator(), MoveNodesByParsedExpressionModifier::MoveNodesByParsedExpressionModifier(), TriToQuadConverter::moveSurvivingTriangles(), MultiApp::MultiApp(), MultiAppCloneReporterTransfer::MultiAppCloneReporterTransfer(), MultiAppGeneralFieldFunctorTransfer::MultiAppGeneralFieldFunctorTransfer(), MultiAppGeneralFieldKDTreeTransferBase::MultiAppGeneralFieldKDTreeTransferBase(), MultiAppGeneralFieldShapeEvaluationTransfer::MultiAppGeneralFieldShapeEvaluationTransfer(), MultiAppGeneralFieldTransfer::MultiAppGeneralFieldTransfer(), MultiAppGeneralFieldUserObjectTransfer::MultiAppGeneralFieldUserObjectTransfer(), MultiAppGeometricInterpolationTransfer::MultiAppGeometricInterpolationTransfer(), MultiAppNearestNodeTransfer::MultiAppNearestNodeTransfer(), MultiAppPostprocessorInterpolationTransfer::MultiAppPostprocessorInterpolationTransfer(), MultiAppPostprocessorToAuxScalarTransfer::MultiAppPostprocessorToAuxScalarTransfer(), MultiAppPostprocessorTransfer::MultiAppPostprocessorTransfer(), MultiAppProjectionTransfer::MultiAppProjectionTransfer(), MultiAppReporterTransfer::MultiAppReporterTransfer(), MultiAppScalarToAuxScalarTransfer::MultiAppScalarToAuxScalarTransfer(), MultiAppShapeEvaluationTransfer::MultiAppShapeEvaluationTransfer(), MultiAppTransfer::MultiAppTransfer(), MultiAppUserObjectTransfer::MultiAppUserObjectTransfer(), MultiAppVariableValueSamplePostprocessorTransfer::MultiAppVariableValueSamplePostprocessorTransfer(), MultiAppVariableValueSampleTransfer::MultiAppVariableValueSampleTransfer(), MultiAppVectorPostprocessorTransfer::MultiAppVectorPostprocessorTransfer(), MultiSystemSolveObject::MultiSystemSolveObject(), NearestNodeValueAux::NearestNodeValueAux(), NEML2Action::NEML2Action(), NEML2PreKernel::NEML2PreKernel(), NestedDivision::NestedDivision(), NodalBC::NodalBC(), NodalEqualValueConstraint::NodalEqualValueConstraint(), NodalKernel::NodalKernel(), NodalPatchRecoveryAux::NodalPatchRecoveryAux(), NodalValueSampler::NodalValueSampler(), NumDOFs::NumDOFs(), OrientSurfaceMeshGenerator::OrientSurfaceMeshGenerator(), MeshTriangulationUtils::outerBoundaryIds(), Output::Output(), ParsedCurveGenerator::ParsedCurveGenerator(), ParsedFunctorMaterialTempl< is_ad >::ParsedFunctorMaterialTempl(), ParsedPostprocessor::ParsedPostprocessor(), ParsedReporterBase::ParsedReporterBase(), ParsedScalarReporter::ParsedScalarReporter(), ParsedSubdomainGeneratorBase::ParsedSubdomainGeneratorBase(), ParsedVectorRealReductionReporter::ParsedVectorRealReductionReporter(), ParsedVectorReporter::ParsedVectorReporter(), ParsedVectorVectorRealReductionReporter::ParsedVectorVectorRealReductionReporter(), PatternedMeshGenerator::PatternedMeshGenerator(), PenaltyPeriodicSegmentalConstraint::PenaltyPeriodicSegmentalConstraint(), PeriodicSegmentalConstraint::PeriodicSegmentalConstraint(), PIDTransientControl::PIDTransientControl(), PlaneDeletionGenerator::PlaneDeletionGenerator(), PlaneIDMeshGenerator::PlaneIDMeshGenerator(), PointInPolyhedronBaseUO::PointInPolyhedronBaseUO(), PointInSignedFunctionCheckUO::PointInSignedFunctionCheckUO(), PointInUnionCheckUO::PointInUnionCheckUO(), PointwiseRenormalizeVector::PointwiseRenormalizeVector(), PolyLineMeshFollowingNodeSetGenerator::PolyLineMeshFollowingNodeSetGenerator(), EqualValueBoundaryConstraint::populateSecondaryNodes(), ReporterInterface::possiblyCheckHasReporter(), VectorPostprocessorInterface::possiblyCheckHasVectorPostprocessor(), LibmeshPartitioner::prepareBlocksForSubdomainPartitioner(), ProjectedMaterialPropertyNodalPatchRecoveryAux::ProjectedMaterialPropertyNodalPatchRecoveryAux(), ProjectSideSetOntoLevelSetGenerator::ProjectSideSetOntoLevelSetGenerator(), PropertyReadFile::PropertyReadFile(), RandomIC::RandomIC(), RankTwoTensorFromComponentProperties::RankTwoTensorFromComponentProperties(), MultiApp::readCommandLineArguments(), PropertyReadFile::readData(), SolutionUserObjectBase::readExodusIIOrNemesis(), SolutionUserObjectBase::readXda(), ReferenceResidualConvergence::ReferenceResidualConvergence(), RefineBlockGenerator::RefineBlockGenerator(), RefineSidesetGenerator::RefineSidesetGenerator(), RenameBlockGenerator::RenameBlockGenerator(), RenameBoundaryGenerator::RenameBoundaryGenerator(), ReporterPointSource::ReporterPointSource(), FEProblemBase::restoreSolutions(), SecondTimeDerivativeAux::SecondTimeDerivativeAux(), FEProblemBase::setLinearConvergenceNames(), FEProblemBase::setNonlinearConvergenceNames(), MooseMesh::setPartitioner(), NodeSetsGeneratorBase::setup(), SideSetsGeneratorBase::setup(), SurfaceMeshGeneratorBase::setup(), CylinderComponent::setupComponent(), NEML2Action::setupDerivativeMappings(), NEML2Action::setupInputMappings(), MultiSystemSolveObject::setupMultiSystemFixedPointRelaxationFactors(), MoveNodesByParsedExpressionModifier::setupNodalOutputVariables(), NEML2Action::setupParameterDerivativeMappings(), NEML2Action::setupParameterMappings(), SetupQuadratureAction::SetupQuadratureAction(), SidesetAroundSubdomainUpdater::SidesetAroundSubdomainUpdater(), SideSetsFromBoundingBoxGenerator::SideSetsFromBoundingBoxGenerator(), SideValueSampler::SideValueSampler(), SingleRankPartitioner::SingleRankPartitioner(), SphericalGridDivision::SphericalGridDivision(), StitchBoundaryMeshGenerator::StitchBoundaryMeshGenerator(), StitchMeshGenerator::StitchMeshGenerator(), SurfaceSubdomainsDelaunayRemesher::SurfaceSubdomainsDelaunayRemesher(), SymmetryTransformGenerator::SymmetryTransformGenerator(), TagVectorAux::TagVectorAux(), XYFrontalDelaunayGenerator::targetArea(), Terminator::Terminator(), TimeDerivativeAux::TimeDerivativeAux(), Transfer::Transfer(), TransformGenerator::TransformGenerator(), TransientMultiApp::TransientMultiApp(), CylinderComponent::translation(), MeshTriangulationUtils::triangulateWithDelaunay(), TriToQuadConverter::TriToQuadConverter(), ParsedCurveGenerator::tSectionSpaceDefiner(), UniqueExtraIDMeshGenerator::UniqueExtraIDMeshGenerator(), UserObjectBase::UserObjectBase(), Checkpoint::validateExecuteOn(), ParsedAux::validateGenericVectorNames(), SolutionAux::validateVariable(), MFEMProblem::validateVariableNumericType(), VariableCondensationPreconditioner::VariableCondensationPreconditioner(), VectorBodyForce::VectorBodyForce(), VectorFunctionDirichletBC::VectorFunctionDirichletBC(), VectorFunctionIC::VectorFunctionIC(), VolumeAux::VolumeAux(), WebServerControl::WebServerControl(), XYDelaunayGenerator::XYDelaunayGenerator(), XYFrontalDelaunayGenerator::XYFrontalDelaunayGenerator(), XYMeshLineCutter::XYMeshLineCutter(), XYQuadrilateralMeshFromBoundaryCurve::XYQuadrilateralMeshFromBoundaryCurve(), and XYZDelaunayGenerator::XYZDelaunayGenerator().

◆ parameters()

const InputParameters & MooseBase::parameters ( ) const
inlineinherited

Get the parameters of the object.

Returns
The parameters of the object

Definition at line 131 of file MooseBase.h.

131{ return _pars; }

Referenced by AddActionComponentAction::act(), CommonOutputAction::act(), CSGOnlyAction::act(), MeshOnlyAction::act(), SetupDebugAction::act(), SplitMeshAction::act(), Action::Action(), FEProblemBase::addAnyRedistributers(), FEProblemBase::addAuxKernel(), MFEMProblem::addAuxKernel(), FEProblemBase::addAuxScalarKernel(), DisplacedProblem::addAuxVariable(), MFEMProblem::addAuxVariable(), FEProblemBase::addBoundaryCondition(), MFEMProblem::addBoundaryCondition(), FEProblemBase::addConstraint(), FEProblemBase::addConvergence(), FEProblemBase::addDamper(), AddDefaultConvergenceAction::addDefaultMultiAppFixedPointConvergence(), FEProblemBase::addDefaultMultiAppFixedPointConvergence(), AddDefaultConvergenceAction::addDefaultNonlinearConvergence(), FEProblemBase::addDefaultNonlinearConvergence(), ReferenceResidualProblem::addDefaultNonlinearConvergence(), AddDefaultConvergenceAction::addDefaultSteadyStateConvergence(), FEProblemBase::addDefaultSteadyStateConvergence(), FEProblemBase::addDGKernel(), FEProblemBase::addDiracKernel(), FEProblemBase::addDistribution(), MFEMProblem::addFESpace(), MFEMProblem::addFESpaceHierarchy(), FEProblemBase::addFunction(), MFEMProblem::addFunction(), FEProblemBase::addFunctorMaterial(), MFEMProblem::addFunctorMaterial(), FEProblemBase::addFVBC(), FEProblemBase::addFVGradientMethod(), FEProblemBase::addFVInitialCondition(), FEProblemBase::addFVInterfaceKernel(), FEProblemBase::addFVInterpolationMethod(), FEProblemBase::addFVKernel(), MFEMProblem::addGridFunction(), FEProblemBase::addHDGKernel(), MFEMProblem::addImagComponentToBC(), MFEMProblem::addImagComponentToKernel(), FEProblemBase::addIndicator(), MFEMProblem::addIndicator(), FEProblemBase::addInitialCondition(), MFEMProblem::addInitialCondition(), DiffusionPhysicsBase::addInitialConditions(), FEProblemBase::addInterfaceKernel(), FEProblemBase::addInterfaceMaterial(), FEProblemBase::addKernel(), MFEMProblem::addKernel(), FEProblemBase::addLinearFVBC(), FEProblemBase::addLinearFVKernel(), FEProblem::addLineSearch(), FEProblemBase::addMarker(), MFEMProblem::addMarker(), FEProblemBase::addMaterial(), FEProblemBase::addMaterialHelper(), FEProblemBase::addMeshDivision(), MFEMProblem::addMFEMFESpaceFromMOOSEVariable(), MFEMProblem::addMFEMProblemComposer(), MFEMProblem::addMFEMSolver(), FEProblemBase::addMultiApp(), FEProblemBase::addNodalKernel(), FEProblemBase::addObject(), FEProblemBase::addObjectParamsHelper(), FEProblemBase::addOutput(), FEProblemBase::addPostprocessor(), MFEMProblem::addPostprocessor(), FEProblemBase::addPredictor(), MFEMProblem::addRealComponentToBC(), MFEMProblem::addRealComponentToKernel(), FEProblemBase::addReporter(), FEProblemBase::addSampler(), FEProblemBase::addScalarKernel(), MFEMProblem::addSubMesh(), FEProblemBase::addTimeIntegrator(), FEProblemBase::addTransfer(), MFEMProblem::addTransfer(), FEProblemBase::addUserObject(), DisplacedProblem::addVariable(), MFEMEigenproblem::addVariable(), MFEMProblem::addVariable(), FEProblemBase::addVectorPostprocessor(), MFEMProblem::addVectorPostprocessor(), ADPiecewiseLinearInterpolationMaterial::ADPiecewiseLinearInterpolationMaterial(), AdvancedOutput::AdvancedOutput(), AnnularMesh::AnnularMesh(), AnnularMeshGenerator::AnnularMeshGenerator(), assemble_l2(), Moose::assemble_matrix(), Action::associateWithParameter(), AuxKernelBase::AuxKernelBase(), AuxScalarKernel::AuxScalarKernel(), BoundsBase::BoundsBase(), MooseMesh::buildTypedMesh(), MeshGenerator::checkGetMesh(), PostprocessorInterface::checkParam(), AddDefaultConvergenceAction::checkUnusedMultiAppFixedPointConvergenceParameters(), AddDefaultConvergenceAction::checkUnusedNonlinearConvergenceParameters(), AddDefaultConvergenceAction::checkUnusedSteadyStateConvergenceParameters(), SampledOutput::cloneMesh(), Moose::compute_bounds(), Moose::compute_jacobian(), Moose::compute_nearnullspace(), Moose::compute_nullspace(), Moose::compute_postcheck(), Moose::compute_transpose_nullspace(), LibtorchNeuralNetControl::conditionalParameterError(), Console::Console(), MooseMeshUtils::copyIntoMesh(), CommonOutputAction::create(), MultiApp::createApp(), Postprocessor::declareValue(), DumpObjectsProblem::deduceNecessaryParameters(), DefaultMultiAppFixedPointConvergence::DefaultMultiAppFixedPointConvergence(), DumpObjectsProblem::dumpObjectHelper(), DumpObjectsProblem::DumpObjectsProblem(), EigenProblem::EigenProblem(), EigenProblemSolve::EigenProblemSolve(), ElementMaterialSampler::ElementMaterialSampler(), ExamplePatchMeshGenerator::ExamplePatchMeshGenerator(), Executor::Executor(), Exodus::Exodus(), ElementSubdomainModifierBase::extrapolatePolynomial(), FEProblem::FEProblem(), FixedPointSolve::FixedPointSolve(), FunctorSmootherTempl< T >::FunctorSmootherTempl(), GapValueAux::GapValueAux(), ParsedSubdomainGeneratorBase::generate(), ActionWarehouse::getCurrentActionName(), ExecutorInterface::getExecutor(), Material::getMaterial(), Moose::PeriodicBCHelper::getParams(), ReporterInterface::getReporterName(), Reporter::getReporterValueName(), UserObjectInterface::getUserObjectName(), AuxKernelBase::getVariableHelper(), VectorPostprocessorInterface::getVectorPostprocessorName(), GhostingUserObject::GhostingUserObject(), MeshGeneratorSystem::hasDataDrivenAllowed(), AttribSystem::initFrom(), AttribDisplaced::initFrom(), BlockRestrictable::initializeBlockRestrictable(), FullSolveMultiApp::initialSetup(), FEProblemBase::initNullSpaceVectors(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::InterfaceDiffusiveFluxIntegralTempl(), InterfaceIntegralVariableValuePostprocessor::InterfaceIntegralVariableValuePostprocessor(), InterfaceKernelTempl< T >::InterfaceKernelTempl(), MooseObject::isKokkosObject(), isValid(), IterationAdaptiveDT::IterationAdaptiveDT(), LibtorchNeuralNetControl::LibtorchNeuralNetControl(), MooseObject::MooseObject(), UserObjectInterface::mooseObjectError(), MooseVariableInterface< T >::MooseVariableInterface(), MultiApp::MultiApp(), MultiAppGeneralFieldTransfer::MultiAppGeneralFieldTransfer(), MultiAppGeneralFieldUserObjectTransfer::MultiAppGeneralFieldUserObjectTransfer(), MultiAppTransfer::MultiAppTransfer(), MultiAppVariableValueSamplePostprocessorTransfer::MultiAppVariableValueSamplePostprocessorTransfer(), NodeFaceConstraint::NodeFaceConstraint(), ConsoleUtils::outputLegacyInformation(), OverlayMeshGenerator::OverlayMeshGenerator(), ParsedReporterBase::ParsedReporterBase(), ParsedScalarReporter::ParsedScalarReporter(), PenetrationAux::PenetrationAux(), PiecewiseBilinear::PiecewiseBilinear(), PiecewiseLinearInterpolationMaterial::PiecewiseLinearInterpolationMaterial(), NEML2Action::printSummary(), ProjectedStatefulMaterialStorageAction::processProperty(), PropertyReadFile::PropertyReadFile(), PseudoTimestep::PseudoTimestep(), RandomIC::RandomIC(), ReferenceResidualConvergence::ReferenceResidualConvergence(), InputParameterWarehouse::removeInputParameters(), FEProblemBase::setAuxKernelParamsAndLog(), FEProblemBase::setInputParametersFEProblem(), FEProblem::setInputParametersFEProblem(), FEProblemBase::setResidualObjectParamsAndLog(), SideSetsGeneratorBase::setup(), NonlinearSystemBase::shouldEvaluatePreSMOResidual(), SideSetsFromBoundingBoxGenerator::SideSetsFromBoundingBoxGenerator(), Moose::PetscSupport::storePetscOptions(), DumpObjectsProblem::stringifyParameters(), TaggingInterface::TaggingInterface(), Transfer::Transfer(), TransientBase::TransientBase(), VectorBodyForce::VectorBodyForce(), VectorFunctionDirichletBC::VectorFunctionDirichletBC(), VectorFunctionIC::VectorFunctionIC(), and VectorMagnitudeFunctorMaterialTempl< is_ad >::VectorMagnitudeFunctorMaterialTempl().

◆ paramInfo()

template<typename... Args>
void MooseBase::paramInfo ( const std::string &  param,
Args...  args 
) const
inherited

Emits an informational message prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.

If this object's parameters were not created directly by the Parser, then this function falls back to the normal behavior of mooseInfo - only printing a message using the given args.

Definition at line 471 of file MooseBase.h.

472{
473 mooseInfo(_pars.paramMessage(param, std::forward<Args>(args)...));
474}
std::string paramMessage(const std::string &param, Args... args) const

Referenced by GridPartitioner::_do_partition(), ComboMarker::ComboMarker(), Control::Control(), FEProblemBase::execMultiApps(), FunctorIC::FunctorIC(), and TransientMultiApp::TransientMultiApp().

◆ paramWarning() [1/2]

template<typename... Args>
void MooseBase::paramWarning ( const std::string &  param,
Args...  args 
) const
inherited

Emits a warning prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.

If this object's parameters were not created directly by the Parser, then this function falls back to the normal behavior of mooseWarning - only printing a message using the given args.

Definition at line 464 of file MooseBase.h.

465{
466 mooseWarning(_pars.paramMessage(param, std::forward<Args>(args)...));
467}

◆ paramWarning() [2/2]

template<typename... Args>
void SolutionInvalidInterface::paramWarning ( const std::string &  param,
Args...  args 
) const
inlineinherited

◆ partitionerName()

const MooseEnum & MooseMesh::partitionerName ( ) const
inlineinherited

Definition at line 1161 of file MooseMesh.h.

1161{ return _partitioner_name; }
MooseEnum _partitioner_name
The partitioner used on this mesh.
Definition MooseMesh.h:1604

◆ partitioning()

MooseEnum MooseMesh::partitioning ( )
staticinherited

returns MooseMesh partitioning options so other classes can use it

Definition at line 3982 of file MooseMesh.C.

3983{
3985 "default=-3 metis=-2 parmetis=-1 linear=0 centroid hilbert_sfc morton_sfc custom", "default");
3986 return partitioning;
3987}
static MooseEnum partitioning()
returns MooseMesh partitioning options so other classes can use it
Definition MooseMesh.C:3982

Referenced by MooseMesh::partitioning(), and MooseMesh::validParams().

◆ perfGraph()

PerfGraph & PerfGraphInterface::perfGraph ( )
inherited

Get the PerfGraph.

Definition at line 86 of file PerfGraphInterface.C.

87{
88 return _pg_moose_app.perfGraph();
89}
PerfGraph & perfGraph()
Get the PerfGraph for this app.
Definition MooseApp.h:179
MooseApp & _pg_moose_app
The MooseApp that owns the PerfGraph.

Referenced by CommonOutputAction::act(), PerfGraphData::finalize(), PerfGraphReporter::finalize(), and PerfGraphOutput::output().

◆ possiblyRebuildNodeToElemMap()

bool MooseMesh::possiblyRebuildNodeToElemMap ( )
inherited

rebuild the node to element map if it's been requsted previously

Returns
Whether the map was re-built, or equivalently whether the map had been requested previously

Definition at line 608 of file MooseMesh.C.

609{
610 // *Rebuild* the node to element map. I emphasize rebuild because if it has not been built
611 // previously we won't do anything
613 {
614 mooseAssert(_node_to_elem_map.empty(), "If it hasn't been built, it better well be empty");
615 return false;
616 }
617
618 _node_to_elem_map.clear();
621 return true;
622}

Referenced by MooseMesh::update().

◆ prepare() [1/2]

void MooseMesh::prepare ( )
inherited

Calls prepare_for_use() if the underlying MeshBase object isn't prepared, then communicates various boundary information on parallel meshes.

Also calls update() internally.

Definition at line 399 of file MooseMesh.C.

400{
401 TIME_SECTION("prepare", 2, "Preparing Mesh", true);
402
403 parallel_object_only();
404
405 mooseAssert(_mesh, "The MeshBase has not been constructed");
406
407 if (!dynamic_cast<DistributedMesh *>(&getMesh()) || _is_nemesis)
408 // For whatever reason we do not want to allow renumbering here nor ever in the future?
409 getMesh().allow_renumbering(false);
410
411 if (!_mesh->is_prepared())
412 {
413 _mesh->complete_preparation();
414 _moose_mesh_prepared = false;
415 }
416
418 return;
419
420 // Collect (local) subdomain IDs
421 _mesh_subdomains.clear();
422 for (const auto & elem : getMesh().element_ptr_range())
423 _mesh_subdomains.insert(elem->subdomain_id());
424
425 // add explicitly requested subdomains
426 if (isParamValid("add_subdomain_ids") && !isParamValid("add_subdomain_names"))
427 {
428 // only subdomain ids are explicitly given
429 const auto & add_subdomain_id = getParam<std::vector<SubdomainID>>("add_subdomain_ids");
430 _mesh_subdomains.insert(add_subdomain_id.begin(), add_subdomain_id.end());
431 }
432 else if (isParamValid("add_subdomain_ids") && isParamValid("add_subdomain_names"))
433 {
434 const auto add_subdomain =
435 getParam<SubdomainID, SubdomainName>("add_subdomain_ids", "add_subdomain_names");
436 for (const auto & [sub_id, sub_name] : add_subdomain)
437 {
438 // add subdomain id
439 _mesh_subdomains.insert(sub_id);
440 // set name of the subdomain just added
441 setSubdomainName(sub_id, sub_name, true);
442 }
443 }
444 else if (isParamValid("add_subdomain_names"))
445 {
446 // the user has defined add_subdomain_names, but not add_subdomain_ids
447 const auto & add_subdomain_names = getParam<std::vector<SubdomainName>>("add_subdomain_names");
448
449 // to define subdomain ids, we need the largest subdomain id defined yet.
450 subdomain_id_type offset = 0;
451 if (!_mesh_subdomains.empty())
452 offset = *_mesh_subdomains.rbegin();
453
454 // add all subdomains (and auto-assign ids)
455 for (const SubdomainName & sub_name : add_subdomain_names)
456 {
457 // to avoid two subdomains with the same ID (notably on recover)
458 if (getSubdomainID(sub_name) != libMesh::Elem::invalid_subdomain_id)
459 continue;
460 const auto sub_id = ++offset;
461 // add subdomain id
462 _mesh_subdomains.insert(sub_id);
463 // set name of the subdomain just added
464 setSubdomainName(sub_id, sub_name, true);
465 }
466 }
467
468 // Make sure nodesets have been generated
470
471 // Collect (local) boundary IDs
472 const std::set<BoundaryID> & local_bids = getMesh().get_boundary_info().get_boundary_ids();
473 _mesh_boundary_ids.insert(local_bids.begin(), local_bids.end());
474
475 const std::set<BoundaryID> & local_node_bids =
476 getMesh().get_boundary_info().get_node_boundary_ids();
477 _mesh_nodeset_ids.insert(local_node_bids.begin(), local_node_bids.end());
478
479 const std::set<BoundaryID> & local_side_bids =
480 getMesh().get_boundary_info().get_side_boundary_ids();
481 _mesh_sideset_ids.insert(local_side_bids.begin(), local_side_bids.end());
482
483 // Add explicitly requested sidesets/nodesets
484 // This is done *after* the side boundaries (e.g. "right", ...) have been generated.
485 auto add_sets = [this](const bool sidesets, auto & set_ids)
486 {
487 const std::string type = sidesets ? "sideset" : "nodeset";
488 const std::string id_param = "add_" + type + "_ids";
489 const std::string name_param = "add_" + type + "_names";
490
491 if (isParamValid(id_param))
492 {
493 const auto & add_ids = getParam<std::vector<BoundaryID>>(id_param);
494 _mesh_boundary_ids.insert(add_ids.begin(), add_ids.end());
495 set_ids.insert(add_ids.begin(), add_ids.end());
497 {
498 const auto & add_names = getParam<std::vector<BoundaryName>>(name_param);
499 mooseAssert(add_names.size() == add_ids.size(),
500 "Id and name sets must be the same size when adding.");
501 for (const auto i : index_range(add_ids))
502 setBoundaryName(add_ids[i], add_names[i]);
503 }
504 }
505 else if (isParamValid(name_param))
506 {
507 // the user has defined names, but not ids
508 const auto & add_names = getParam<std::vector<BoundaryName>>(name_param);
509
510 auto & mesh_ids = sidesets ? _mesh_sideset_ids : _mesh_nodeset_ids;
511
512 // to define ids, we need the largest id defined yet.
513 boundary_id_type offset = 0;
514 if (!mesh_ids.empty())
515 offset = *mesh_ids.rbegin();
516 if (!_mesh_boundary_ids.empty())
517 offset = std::max(offset, *_mesh_boundary_ids.rbegin());
518
519 // add all sidesets/nodesets (and auto-assign ids)
520 for (const auto & name : add_names)
521 {
522 // to avoid two sets with the same ID (notably on recover)
524 continue;
525 const auto id = ++offset;
526 // add sideset id
527 _mesh_boundary_ids.insert(id);
528 set_ids.insert(id);
529 // set name of the sideset just added
531 }
532 }
533 };
534
535 add_sets(true, _mesh_sideset_ids);
536 add_sets(false, _mesh_nodeset_ids);
537
538 // Communicate subdomain and boundary IDs if this is a parallel mesh
539 if (!getMesh().is_serial())
540 {
545 }
546
548 {
550 setCoordSystem(_provided_coord_blocks, getParam<MultiMooseEnum>("coord_type"));
551 else if (_pars.isParamSetByUser("coord_type"))
553 "Trying to set coordinate system type information based on the user input file, but "
554 "the coordinate system type information has already been set programmatically! "
555 "Either remove your coordinate system type information from the input file, or contact "
556 "your application developer");
557 }
558
559 // Set general axisymmetric axes if provided
560 if (isParamValid("rz_coord_blocks") && isParamValid("rz_coord_origins") &&
561 isParamValid("rz_coord_directions"))
562 {
563 const auto rz_coord_blocks = getParam<std::vector<SubdomainName>>("rz_coord_blocks");
564 const auto rz_coord_origins = getParam<std::vector<Point>>("rz_coord_origins");
565 const auto rz_coord_directions = getParam<std::vector<RealVectorValue>>("rz_coord_directions");
566 if (rz_coord_origins.size() == rz_coord_blocks.size() &&
567 rz_coord_directions.size() == rz_coord_blocks.size())
568 {
569 std::vector<std::pair<Point, RealVectorValue>> rz_coord_axes;
570 for (unsigned int i = 0; i < rz_coord_origins.size(); ++i)
571 rz_coord_axes.push_back(std::make_pair(rz_coord_origins[i], rz_coord_directions[i]));
572
573 setGeneralAxisymmetricCoordAxes(rz_coord_blocks, rz_coord_axes);
574
575 if (isParamSetByUser("rz_coord_axis"))
576 mooseError("The parameter 'rz_coord_axis' may not be provided if 'rz_coord_blocks', "
577 "'rz_coord_origins', and 'rz_coord_directions' are provided.");
578 }
579 else
580 mooseError("The parameters 'rz_coord_blocks', 'rz_coord_origins', and "
581 "'rz_coord_directions' must all have the same size.");
582 }
583 else if (isParamValid("rz_coord_blocks") || isParamValid("rz_coord_origins") ||
584 isParamValid("rz_coord_directions"))
585 mooseError("If any of the parameters 'rz_coord_blocks', 'rz_coord_origins', and "
586 "'rz_coord_directions' are provided, then all must be provided.");
587
589
590 update();
591
592 // Check if there is subdomain name duplication for the same subdomain ID
594
596}
static const std::string name_param
The name of the parameter that contains the object name.
Definition MooseBase.h:55
void setBoundaryName(BoundaryID boundary_id, BoundaryName name)
This method sets the boundary name of the boundary based on the id parameter.
Definition MooseMesh.C:1731
bool _coord_system_set
Whether the coordinate system has been set.
Definition MooseMesh.h:2045
void buildNodeListFromSideList()
Calls BoundaryInfo::build_node_list_from_side_list().
Definition MooseMesh.C:3012
void checkDuplicateSubdomainNames()
Loop through all subdomain IDs and check if there is name duplication used for the subdomains with sa...
Definition MooseMesh.C:4421
SubdomainID getSubdomainID(const SubdomainName &subdomain_name) const
Get the associated subdomain ID for the subdomain name.
Definition MooseMesh.C:1678
bool _moose_mesh_prepared
True if prepare has been called on the mesh.
Definition MooseMesh.h:1640
BoundaryID getBoundaryID(const BoundaryName &boundary_name) const
Get the associated BoundaryID for the boundary name.
Definition MooseMesh.C:1639
void setGeneralAxisymmetricCoordAxes(const std::vector< SubdomainName > &blocks, const std::vector< std::pair< Point, RealVectorValue > > &axes)
Sets the general coordinate axes for axisymmetric blocks.
Definition MooseMesh.C:4305
std::vector< SubdomainName > _provided_coord_blocks
Set for holding user-provided coordinate system type block names.
Definition MooseMesh.h:2048
void setSubdomainName(SubdomainID subdomain_id, const SubdomainName &name, const bool synchronous=false)
This method sets the name for subdomain_id to name.
Definition MooseMesh.C:1696
void setCoordSystem(const std::vector< SubdomainName > &blocks, const MultiMooseEnum &coord_sys)
Set the coordinate system for the provided blocks to coord_sys.
Definition MooseMesh.C:4165
bool _built_from_other_mesh
Whether or not this mesh was built from another mesh.
Definition MooseMesh.h:1582
bool detectOrthogonalDimRanges(Real tol=1e-6)
This routine determines whether the Mesh is a regular orthogonal mesh (i.e.
Definition MooseMesh.C:1883
const BoundaryID INVALID_BOUNDARY_ID
Definition MooseTypes.C:22
auto index_range(const T &sizable)
TestClass subdomain_id_type

Referenced by MooseApp::restore(), and TransientMultiApp::setupApp().

◆ prepare() [2/2]

void MooseMesh::prepare ( const MeshBase *  mesh_to_clone)
inherited

Deprecated method; mesh_to_clone is no longer supported and must be null.

Use the no-argument prepare() instead.

Parameters
mesh_to_cloneMust be null; mesh cloning is handled elsewhere now

◆ prepared() [1/2]

bool MooseMesh::prepared ( ) const
inherited

Setter/getter for whether the mesh is prepared.

Definition at line 3201 of file MooseMesh.C.

3202{
3203 return _mesh->is_prepared() && _moose_mesh_prepared;
3204}

Referenced by MooseMesh::needsPrepareForUse(), AnnularMesh::prepared(), and GeneratedMesh::prepared().

◆ prepared() [2/2]

void MooseMesh::prepared ( bool  state)
virtualinherited

If we are explicitly setting the mesh to not prepared, then we've likely modified the mesh and can no longer make assumptions about orthogonality. We really should recheck.

Reimplemented in AnnularMesh, and GeneratedMesh.

Definition at line 3207 of file MooseMesh.C.

3208{
3209 if (state)
3210 mooseError("We don't have any right to tell the libmesh mesh that it *is* prepared. Only a "
3211 "call to prepare_for_use should tell us that");
3212
3213 // Some people may call this even before we have a MeshBase object. This isn't dangerous really
3214 // because when the MeshBase object is born, it knows it's in an unprepared state
3215 if (_mesh)
3216 _mesh->unset_is_prepared();
3217
3218 // If the libMesh mesh isn't preparead, then our MooseMesh wrapper is also no longer prepared
3219 _moose_mesh_prepared = false;
3220
3226}

◆ printInfo()

void MooseMesh::printInfo ( std::ostream &  os = libMesh::out,
const unsigned int  verbosity = 0 
) const
inherited

Calls print_info() on the underlying Mesh.

Definition at line 3526 of file MooseMesh.C.

3527{
3528 os << '\n';
3529 getMesh().print_info(os, verbosity);
3530 os << std::flush;
3531}

Referenced by Adaptivity::adaptMesh().

◆ queryElemPtr() [1/2]

Elem * MooseMesh::queryElemPtr ( const dof_id_type  i)
virtualinherited

◆ queryElemPtr() [2/2]

const Elem * MooseMesh::queryElemPtr ( const dof_id_type  i) const
virtualinherited

Definition at line 3195 of file MooseMesh.C.

3196{
3197 return getMesh().query_elem_ptr(i);
3198}

◆ queryNodePtr() [1/2]

Node * MooseMesh::queryNodePtr ( const dof_id_type  i)
virtualinherited

Definition at line 888 of file MooseMesh.C.

889{
890 return const_cast<Node *>(const_cast<const MooseMesh *>(this)->queryNodePtr(i));
891}

◆ queryNodePtr() [2/2]

const Node * MooseMesh::queryNodePtr ( const dof_id_type  i) const
virtualinherited

Definition at line 872 of file MooseMesh.C.

873{
874 if (i > getMesh().max_node_id())
875 {
876 auto it = _quadrature_nodes.find(i);
877 if (it == _quadrature_nodes.end())
878 return nullptr;
879 auto & node_ptr = it->second;
880 mooseAssert(node_ptr, "Uninitialized quadrature node");
881 return node_ptr;
882 }
883
884 return getMesh().query_node_ptr(i);
885}

Referenced by NonlinearSystemBase::findImplicitGeometricCouplingEntries(), NodePositions::initialize(), MooseMesh::nodeRef(), EqualValueBoundaryConstraint::populateSecondaryNodes(), and MooseMesh::queryNodePtr().

◆ queryParam()

template<typename T >
const T * MooseBase::queryParam ( const std::string &  name) const
inherited

Query a parameter for the object.

If a parameter of the given name and type does not exist or if the parameter is not valid, nullptr will be returned

Parameters
nameThe name of the parameter
Returns
A pointer to the parameter value, if it exists

Definition at line 413 of file MooseBase.h.

414{
415 return _pars.queryParam<T>(name);
416}
const T * queryParam(const std::string &name) const
Query a parameter.

Referenced by MFEMExecutedObject::getRequestedItems(), and MFEMGeometricMultigridSolver::MFEMGeometricMultigridSolver().

◆ queryPeriodicDimensions() [1/2]

const std::array< bool, 3 > & MooseMesh::queryPeriodicDimensions ( const MooseVariableBase &  var) const
inherited

Query the translated periodic dimension flags for the given variable.

\

Query here means that it will not error if a variable isn't found to be periodic, instead the default value is returned (false for each dimension)

Parameters
var- The variable

Definition at line 2205 of file MooseMesh.C.

2206{
2207 return queryPeriodicDimensions(var.sys().number(), var.number());
2208}

◆ queryPeriodicDimensions() [2/2]

const std::array< bool, 3 > & MooseMesh::queryPeriodicDimensions ( const unsigned int  sys_num,
const unsigned int  var_num 
) const
inherited

Query the translated periodic dimension flags for the given variable on the given system.

Query here means that it will not error if a variable isn't found to be periodic, instead the default value is returned (false for each dimension)

Parameters
sys_num- The number of the system the variable is on
var_num- The variable number

Definition at line 2196 of file MooseMesh.C.

2197{
2198 const auto key = std::make_pair(sys_num, var_num);
2199 if (const auto it = _periodic_dim.find(key); it != _periodic_dim.end())
2200 return it->second;
2201 return periodic_dim_default;
2202}

Referenced by MooseMesh::isTranslatedPeriodic(), MooseMesh::minPeriodicVector(), and MooseMesh::queryPeriodicDimensions().

◆ refinedElementRange()

ConstElemPointerRange * MooseMesh::refinedElementRange ( ) const
inherited

Return a range that is suitable for threaded execution over elements that were just refined.

Returns
The Parent elements that are now set to be INACTIVE. Their children are the new elements.

Definition at line 942 of file MooseMesh.C.

943{
944 return _refined_elements.get();
945}

Referenced by FEProblemBase::meshChanged().

◆ registerInvalidSolutionInternal()

InvalidSolutionID SolutionInvalidInterface::registerInvalidSolutionInternal ( const std::string &  message,
const bool  warning 
) const
protectedinherited

Definition at line 55 of file SolutionInvalidInterface.C.

57{
59 _si_moose_base.type(), message, warning);
60}
InvalidSolutionID registerInvalidity(const std::string &object_type, const std::string &message, const bool warning)
Call to register an invalid calculation.

◆ registerRestartableDataOnApp()

RestartableDataValue & Restartable::registerRestartableDataOnApp ( std::unique_ptr< RestartableDataValue >  data,
THREAD_ID  tid 
) const
privateinherited

Helper function for actually registering the restartable data.

Definition at line 63 of file Restartable.C.

65{
67 std::move(data), tid, _restartable_read_only, _metaname);
68}
RestartableDataValue & registerRestartableData(std::unique_ptr< RestartableDataValue > data, THREAD_ID tid, bool read_only, const RestartableDataMapName &metaname="")
Definition MooseApp.C:2454
const RestartableDataMapName _metaname
Restartable metadata name.
const bool _restartable_read_only
Flag for toggling read only status (see ReporterData)
MooseApp & _restartable_app
Reference to the application.

Referenced by Restartable::declareRestartableDataHelper().

◆ registerRestartableNameWithFilterOnApp()

void Restartable::registerRestartableNameWithFilterOnApp ( const std::string &  name,
Moose::RESTARTABLE_FILTER  filter 
)
privateinherited

Helper function for actually registering the restartable data.

Definition at line 71 of file Restartable.C.

73{
75}
void registerRestartableNameWithFilter(const std::string &name, Moose::RESTARTABLE_FILTER filter)
NOTE: This is an internal function meant for MOOSE use only!
Definition MooseApp.C:1706

Referenced by Restartable::declareRecoverableData().

◆ registerTimedSection() [1/2]

PerfID PerfGraphInterface::registerTimedSection ( const std::string &  section_name,
const unsigned int  level 
) const
protectedinherited

Call to register a named section for timing.

Parameters
section_nameThe name of the code section to be timed
levelThe importance of the timer - lower is more important (0 will always come out)
Returns
The ID of the section - use when starting timing

Definition at line 61 of file PerfGraphInterface.C.

63{
64 const auto timed_section_name = timedSectionName(section_name);
65 if (!moose::internal::getPerfGraphRegistry().sectionExists(timed_section_name))
66 return moose::internal::getPerfGraphRegistry().registerSection(timed_section_name, level);
67 else
68 return moose::internal::getPerfGraphRegistry().sectionID(timed_section_name);
69}
std::string timedSectionName(const std::string &section_name) const
PerfID sectionID(const std::string &section_name) const
Given a name return the PerfID @section_name The name of the section.
PerfID registerSection(const std::string &section_name, const unsigned int level)
Call to register a named section for timing.
PerfGraphRegistry & getPerfGraphRegistry()
Get the global PerfGraphRegistry singleton.

◆ registerTimedSection() [2/2]

PerfID PerfGraphInterface::registerTimedSection ( const std::string &  section_name,
const unsigned int  level,
const std::string &  live_message,
const bool  print_dots = true 
) const
protectedinherited

Call to register a named section for timing.

Parameters
section_nameThe name of the code section to be timed
levelThe importance of the timer - lower is more important (0 will always come out)
live_messageThe message to be printed to the screen during execution
print_dotsWhether or not progress dots should be printed for this section
Returns
The ID of the section - use when starting timing

Definition at line 72 of file PerfGraphInterface.C.

76{
77 const auto timed_section_name = timedSectionName(section_name);
78 if (!moose::internal::getPerfGraphRegistry().sectionExists(timed_section_name))
80 timedSectionName(section_name), level, live_message, print_dots);
81 else
82 return moose::internal::getPerfGraphRegistry().sectionID(timed_section_name);
83}

◆ restartableName()

std::string Restartable::restartableName ( const std::string &  data_name) const
protectedinherited

Gets the name of a piece of restartable data given a data name, adding the system name and object name prefix.

This should only be used in this interface and in testing.

Definition at line 78 of file Restartable.C.

79{
80 return _restartable_system_name + "/" + _restartable_name + "/" + data_name;
81}
const std::string _restartable_system_name
The system name this object is in.

Referenced by Restartable::declareRecoverableData(), and Restartable::declareRestartableDataHelper().

◆ safeClone()

std::unique_ptr< MooseMesh > MFEMMeshGeneratorMesh::safeClone ( ) const
overridevirtual

A safer version of the clone() method that hands back an allocated object wrapped in a smart pointer.

This makes it much less likely that the caller will leak the memory in question.

Implements MooseMesh.

Definition at line 39 of file MFEMMeshGeneratorMesh.C.

40{
41 return _app.getFactory().copyConstruct(*this);
42}
std::unique_ptr< T > copyConstruct(const T &object)
Copy constructs the object object.
Definition Factory.h:358

◆ setAxisymmetricCoordAxis()

void MooseMesh::setAxisymmetricCoordAxis ( const MooseEnum &  rz_coord_axis)
inherited

For axisymmetric simulations, set the symmetry coordinate axis.

For r in the x-direction, z in the y-direction the coordinate axis would be y

Definition at line 4297 of file MooseMesh.C.

4298{
4299 _rz_coord_axis = rz_coord_axis;
4300
4302}
void updateCoordTransform()
Update the coordinate transformation object based on our coordinate system data.
Definition MooseMesh.C:4369

Referenced by FEProblemBase::setAxisymmetricCoordAxis().

◆ setBoundaryName()

void MooseMesh::setBoundaryName ( BoundaryID  boundary_id,
BoundaryName  name 
)
inherited

This method sets the boundary name of the boundary based on the id parameter.

Definition at line 1731 of file MooseMesh.C.

1732{
1733 BoundaryInfo & boundary_info = getMesh().get_boundary_info();
1734
1735 // We need to figure out if this boundary is a sideset or nodeset
1736 if (boundary_info.get_side_boundary_ids().count(boundary_id))
1737 boundary_info.sideset_name(boundary_id) = name;
1738 else
1739 boundary_info.nodeset_name(boundary_id) = name;
1740}

Referenced by MooseMesh::prepare(), and ActivateElementsUserObjectBase::setNewBoundayName().

◆ setBoundaryToNormalMap() [1/2]

void MooseMesh::setBoundaryToNormalMap ( std::map< BoundaryID, RealVectorValue > *  boundary_map)
inherited

Definition at line 3272 of file MooseMesh.C.

3273{
3274 mooseDeprecated("setBoundaryToNormalMap(std::map<BoundaryID, RealVectorValue> * boundary_map) is "
3275 "deprecated, use the unique_ptr version instead");
3276 _boundary_to_normal_map.reset(boundary_map);
3277}

◆ setBoundaryToNormalMap() [2/2]

void MooseMesh::setBoundaryToNormalMap ( std::unique_ptr< std::map< BoundaryID, RealVectorValue > >  boundary_map)
inherited

Sets the mapping between BoundaryID and normal vector Is called by AddAllSideSetsByNormals.

Definition at line 3265 of file MooseMesh.C.

3267{
3268 _boundary_to_normal_map = std::move(boundary_map);
3269}

◆ setCoordData()

void MooseMesh::setCoordData ( const MooseMesh &  other_mesh)
inherited

Set the coordinate system data to that of other_mesh.

Definition at line 4406 of file MooseMesh.C.

4407{
4408 _coord_sys = other_mesh._coord_sys;
4409 _rz_coord_axis = other_mesh._rz_coord_axis;
4411}

Referenced by DisplacedProblem::DisplacedProblem().

◆ setCoordSystem()

void MooseMesh::setCoordSystem ( const std::vector< SubdomainName > &  blocks,
const MultiMooseEnum &  coord_sys 
)
inherited

Set the coordinate system for the provided blocks to coord_sys.

Definition at line 4165 of file MooseMesh.C.

4167{
4168 TIME_SECTION("setCoordSystem", 5, "Setting Coordinate System");
4170 {
4171 const std::string param_name = isParamValid("coord_block") ? "coord_block" : "block";
4172 mooseWarning("Supplied blocks in the 'setCoordSystem' method do not match the value of the "
4173 "'Mesh/",
4174 param_name,
4175 "' parameter. Did you provide different parameter values for 'Mesh/",
4176 param_name,
4177 "' and 'Problem/block'?. We will honor the parameter value from 'Mesh/",
4178 param_name,
4179 "'");
4180 mooseAssert(_coord_system_set,
4181 "If we are arriving here due to a bad specification in the Problem block, then we "
4182 "should have already set our coordinate system subdomains from the Mesh block");
4183 return;
4184 }
4185 if (_pars.isParamSetByUser("coord_type") && getParam<MultiMooseEnum>("coord_type") != coord_sys)
4186 mooseError("Supplied coordinate systems in the 'setCoordSystem' method do not match the value "
4187 "of the 'Mesh/coord_type' parameter. Did you provide different parameter values for "
4188 "'coord_type' to 'Mesh' and 'Problem'?");
4189
4190 // If blocks contain ANY_BLOCK_ID, it should be the only block specified, and coord_sys should
4191 // have one and only one entry. In that case, the same coordinate system will be set for all
4192 // subdomains.
4193 if (blocks.size() == 1 && blocks[0] == "ANY_BLOCK_ID")
4194 {
4195 if (coord_sys.size() > 1)
4196 mooseError("If you specify ANY_BLOCK_ID as the only block, you must also specify a single "
4197 "coordinate system for it.");
4198 if (!_mesh->is_prepared())
4199 mooseError(
4200 "You cannot set the coordinate system for ANY_BLOCK_ID before the mesh is prepared. "
4201 "Please call this method after the mesh is prepared.");
4202 const auto coord_type = coord_sys.size() == 0
4204 : Moose::stringToEnum<Moose::CoordinateSystemType>(coord_sys[0]);
4205 for (const auto sid : meshSubdomains())
4206 _coord_sys[sid] = coord_type;
4207 return;
4208 }
4209
4210 // If multiple blocks are specified, but one of them is ANY_BLOCK_ID, let's emit a helpful error
4211 if (std::find(blocks.begin(), blocks.end(), "ANY_BLOCK_ID") != blocks.end())
4212 mooseError("You cannot specify ANY_BLOCK_ID together with other blocks in the "
4213 "setCoordSystem() method. If you want to set the same coordinate system for all "
4214 "blocks, use ANY_BLOCK_ID as the only block.");
4215
4216 auto subdomains = meshSubdomains();
4217 // It's possible that a user has called this API before the mesh is prepared and consequently we
4218 // don't yet have the subdomains in meshSubdomains()
4219 for (const auto & sub_name : blocks)
4220 {
4221 const auto sub_id = getSubdomainID(sub_name);
4222 subdomains.insert(sub_id);
4223 }
4224
4225 if (coord_sys.size() <= 1)
4226 {
4227 // We will specify the same coordinate system for all blocks
4228 const auto coord_type = coord_sys.size() == 0
4230 : Moose::stringToEnum<Moose::CoordinateSystemType>(coord_sys[0]);
4231 for (const auto sid : subdomains)
4232 _coord_sys[sid] = coord_type;
4233 }
4234 else
4235 {
4236 if (blocks.size() != coord_sys.size())
4237 mooseError("Number of blocks and coordinate systems does not match.");
4238
4239 for (const auto i : index_range(blocks))
4240 {
4242 Moose::CoordinateSystemType coord_type =
4243 Moose::stringToEnum<Moose::CoordinateSystemType>(coord_sys[i]);
4244 _coord_sys[sid] = coord_type;
4245 }
4246
4247 for (const auto & sid : subdomains)
4248 if (_coord_sys.find(sid) == _coord_sys.end())
4249 mooseError("Subdomain '" + Moose::stringify(sid) +
4250 "' does not have a coordinate system specified.");
4251 }
4252
4253 _coord_system_set = true;
4254
4256}
unsigned int size() const
Return the number of active items in the MultiMooseEnum.
CoordinateSystemType
Definition MooseTypes.h:864
@ COORD_XYZ
Definition MooseTypes.h:865
std::string stringify(MOOSEIOType type)
Definition NEML2Utils.C:18

Referenced by MooseMesh::prepare(), and FEProblemBase::setCoordSystem().

◆ setCustomPartitioner()

void MooseMesh::setCustomPartitioner ( libMesh::Partitioner *  partitioner)
inherited

Setter for custom partitioner.

Definition at line 3763 of file MooseMesh.C.

3764{
3765 _custom_partitioner = partitioner->clone();
3767 if (_mesh)
3768 _mesh->partitioner() = _custom_partitioner->clone();
3769 _partitioner_name = "custom";
3770}
void setIsCustomPartitionerRequested(bool cpr)
Definition MooseMesh.C:3795
virtual std::unique_ptr< Partitioner > clone() const=0

◆ setGeneralAxisymmetricCoordAxes()

void MooseMesh::setGeneralAxisymmetricCoordAxes ( const std::vector< SubdomainName > &  blocks,
const std::vector< std::pair< Point, RealVectorValue > > &  axes 
)
inherited

Sets the general coordinate axes for axisymmetric blocks.

This method must be used if any of the following are true:

  • There are multiple axisymmetric coordinate systems
  • Any axisymmetric coordinate system axis/direction is not the +X or +Y axis
  • Any axisymmetric coordinate system does not start at (0,0,0)
Parameters
[in]blocksSubdomain names
[in]axesPair of values defining the axisymmetric coordinate axis for each subdomain. The first value is the point on the axis corresponding to the origin. The second value is the direction vector of the axis (normalization not necessary).

Definition at line 4305 of file MooseMesh.C.

4308{
4309 // Set the axes for the given blocks
4310 mooseAssert(blocks.size() == axes.size(), "Blocks and axes vectors must be the same length.");
4311 for (const auto i : index_range(blocks))
4312 {
4313 const auto subdomain_id = getSubdomainID(blocks[i]);
4314 const auto it = _coord_sys.find(subdomain_id);
4315 if (it == _coord_sys.end())
4316 mooseError("The block '",
4317 blocks[i],
4318 "' has not set a coordinate system. Make sure to call setCoordSystem() before "
4319 "setGeneralAxisymmetricCoordAxes().");
4320 else
4321 {
4322 if (it->second == Moose::COORD_RZ)
4323 {
4324 const auto direction = axes[i].second;
4325 if (direction.is_zero())
4326 mooseError("Only nonzero vectors may be supplied for RZ directions.");
4327
4328 _subdomain_id_to_rz_coord_axis[subdomain_id] =
4329 std::make_pair(axes[i].first, direction.unit());
4330 }
4331 else
4332 mooseError("The block '",
4333 blocks[i],
4334 "' was provided in setGeneralAxisymmetricCoordAxes(), but the coordinate system "
4335 "for this block is not 'RZ'.");
4336 }
4337 }
4338
4339 // Make sure there are no RZ blocks that still do not have axes
4340 const auto all_subdomain_ids = meshSubdomains();
4341 for (const auto subdomain_id : all_subdomain_ids)
4342 if (getCoordSystem(subdomain_id) == Moose::COORD_RZ &&
4344 mooseError("The block '",
4345 getSubdomainName(subdomain_id),
4346 "' was specified to use the 'RZ' coordinate system but was not given in "
4347 "setGeneralAxisymmetricCoordAxes().");
4348
4350}
const std::map< SubdomainID, Moose::CoordinateSystemType > & getCoordSystem() const
Get the map from subdomain ID to coordinate system type, e.g.
Definition MooseMesh.C:4291

Referenced by MooseMesh::prepare().

◆ setGhostedBoundaryInflation()

void MooseMesh::setGhostedBoundaryInflation ( const std::vector< Real > &  inflation)
inherited

This sets the inflation amount for the bounding box for each partition for use in ghosting boundaries.

Definition at line 3299 of file MooseMesh.C.

3300{
3302}

◆ setIsCustomPartitionerRequested()

void MooseMesh::setIsCustomPartitionerRequested ( bool  cpr)
inherited

Definition at line 3795 of file MooseMesh.C.

3796{
3798}

Referenced by MooseMesh::setCustomPartitioner().

◆ setMeshBase()

void MooseMesh::setMeshBase ( std::unique_ptr< MeshBase >  mesh_base)
inherited

Method to set the mesh_base object.

If this method is NOT called prior to calling init(), a MeshBase object will be automatically constructed and set.

Definition at line 2885 of file MooseMesh.C.

2886{
2887 _mesh = std::move(mesh_base);
2888 _mesh->allow_remote_element_removal(_allow_remote_element_removal);
2889}

Referenced by ActionUnitTest::buildMinimalObjects(), and MooseObjectUnitTest::buildObjects().

◆ setMeshBoundaryIDs()

void MooseMesh::setMeshBoundaryIDs ( std::set< BoundaryID >  boundary_IDs)
inherited

Sets the set of BoundaryIDs Is called by AddAllSideSetsByNormals.

Definition at line 3259 of file MooseMesh.C.

3260{
3261 _mesh_boundary_ids = boundary_IDs;
3262}

◆ setParallelType()

void MooseMesh::setParallelType ( ParallelType  parallel_type)
inlineinherited

Allow to change parallel type.

Definition at line 2318 of file MooseMesh.h.

2319{
2320 _parallel_type = parallel_type;
2322}
void determineUseDistributedMesh()
Determine whether to use a distributed mesh.
Definition MooseMesh.C:2845

Referenced by MFEMMesh::buildDummyMooseMesh(), and MooseMesh::buildTypedMesh().

◆ setPartitioner()

void MooseMesh::setPartitioner ( MeshBase &  mesh_base,
MooseEnum &  partitioner,
bool  use_distributed_mesh,
const InputParameters &  params,
MooseObject &  context_obj 
)
staticinherited

Method for setting the partitioner on the passed in mesh_base object.

Definition at line 3704 of file MooseMesh.C.

3709{
3710 // Set the partitioner based on partitioner name
3711 switch (partitioner)
3712 {
3713 case -3: // default
3714 // We'll use the default partitioner, but notify the user of which one is being used...
3715 if (use_distributed_mesh)
3716 partitioner = "parmetis";
3717 else
3718 partitioner = "metis";
3719 break;
3720
3721 // No need to explicitily create the metis or parmetis partitioners,
3722 // They are the default for serial and parallel mesh respectively
3723 case -2: // metis
3724 case -1: // parmetis
3725 break;
3726
3727 case 0: // linear
3728 mesh_base.partitioner().reset(new libMesh::LinearPartitioner);
3729 break;
3730 case 1: // centroid
3731 {
3732 if (!params.isParamValid("centroid_partitioner_direction"))
3733 context_obj.paramError(
3734 "centroid_partitioner_direction",
3735 "If using the centroid partitioner you _must_ specify centroid_partitioner_direction!");
3736
3737 MooseEnum direction = params.get<MooseEnum>("centroid_partitioner_direction");
3738
3739 if (direction == "x")
3740 mesh_base.partitioner().reset(
3742 else if (direction == "y")
3743 mesh_base.partitioner().reset(
3745 else if (direction == "z")
3746 mesh_base.partitioner().reset(
3748 else if (direction == "radial")
3749 mesh_base.partitioner().reset(
3751 break;
3752 }
3753 case 2: // hilbert_sfc
3754 mesh_base.partitioner().reset(new libMesh::HilbertSFCPartitioner);
3755 break;
3756 case 3: // morton_sfc
3757 mesh_base.partitioner().reset(new libMesh::MortonSFCPartitioner);
3758 break;
3759 }
3760}

Referenced by MooseMesh::setPartitionerHelper().

◆ setPartitionerHelper()

void MooseMesh::setPartitionerHelper ( MeshBase *  mesh = nullptr)
protectedinherited

Definition at line 3692 of file MooseMesh.C.

3693{
3694 if (_use_distributed_mesh && (_partitioner_name != "default" && _partitioner_name != "parmetis"))
3695 {
3696 _partitioner_name = "parmetis";
3698 }
3699
3701}
static void setPartitioner(MeshBase &mesh_base, MooseEnum &partitioner, bool use_distributed_mesh, const InputParameters &params, MooseObject &context_obj)
Method for setting the partitioner on the passed in mesh_base object.
Definition MooseMesh.C:3704

Referenced by MooseMesh::buildTypedMesh().

◆ setPatchUpdateStrategy()

void MooseMesh::setPatchUpdateStrategy ( Moose::PatchUpdateType  patch_update_strategy)
inherited

Set the patch size update strategy.

Definition at line 3471 of file MooseMesh.C.

3472{
3473 _patch_update_strategy = patch_update_strategy;
3474}

◆ setSubdomainName() [1/2]

void MooseMesh::setSubdomainName ( MeshBase &  mesh,
SubdomainID  subdomain_id,
const SubdomainName &  name,
const bool  synchronous = false 
)
staticinherited

This method sets the name for subdomain_id on the provided mesh to name.

Definition at line 1704 of file MooseMesh.C.

1708{
1709 mooseAssert(name != "ANY_BLOCK_ID", "Cannot set subdomain name to 'ANY_BLOCK_ID'");
1710 mesh.set_subdomain_name(subdomain_id, name, synchronous);
1711}

◆ setSubdomainName() [2/2]

void MooseMesh::setSubdomainName ( SubdomainID  subdomain_id,
const SubdomainName &  name,
const bool  synchronous = false 
)
inherited

This method sets the name for subdomain_id to name.

Definition at line 1696 of file MooseMesh.C.

1699{
1700 setSubdomainName(getMesh(), subdomain_id, name, synchronous);
1701}

Referenced by MooseMesh::prepare(), and MooseMesh::setSubdomainName().

◆ setUniformRefineLevel()

void MooseMesh::setUniformRefineLevel ( unsigned int  level,
bool  deletion = true 
)
inherited

Set uniform refinement level.

Definition at line 3286 of file MooseMesh.C.

3287{
3288 _uniform_refine_level = level;
3290}
bool _skip_deletion_repartition_after_refine
Whether or not skip remote deletion and repartition after uniform refinements.
Definition MooseMesh.h:1631
unsigned int _uniform_refine_level
The level of uniform refinement requested (set to zero if AMR is disabled)
Definition MooseMesh.h:1625

◆ setupFiniteVolumeMeshData()

void MooseMesh::setupFiniteVolumeMeshData ( ) const
inherited

Sets up the additional data needed for finite volume computations.

This involves building FaceInfo and ElemInfo objects, caching variable associations and elemental DoF indices for FV variables.

Definition at line 4156 of file MooseMesh.C.

4157{
4162}
void cacheFaceInfoVariableOwnership() const
Cache if variables live on the elements connected by the FaceInfo objects.
Definition MooseMesh.C:4025
void buildFiniteVolumeInfo() const
Builds the face and elem info vectors that store meta-data needed for looping over and doing calculat...
Definition MooseMesh.C:3807
void cacheFVElementalDoFs() const
Cache the DoF indices for FV variables on each element.
Definition MooseMesh.C:4103
void computeFiniteVolumeCoords() const
Compute the face coordinate value for all FaceInfo and ElemInfo objects.
Definition MooseMesh.C:3961

Referenced by DisplacedProblem::init(), FEProblemBase::init(), FEProblemBase::meshChanged(), and DisplacedProblem::updateMesh().

◆ shouldDisplace()

bool MFEMMesh::shouldDisplace ( ) const
inlineinherited

Returns true if mesh displacement is required.

Definition at line 51 of file MFEMMesh.h.

51{ return _mesh_displacement_variable.has_value(); }

◆ sideWithBoundaryID()

unsigned int MooseMesh::sideWithBoundaryID ( const Elem *const  elem,
const BoundaryID  boundary_id 
) const
inherited

Calls BoundaryInfo::side_with_boundary_id().

Definition at line 3085 of file MooseMesh.C.

3086{
3087 return getMesh().get_boundary_info().side_with_boundary_id(elem, boundary_id);
3088}

◆ skipDeletionRepartitionAfterRefine()

bool MooseMesh::skipDeletionRepartitionAfterRefine ( ) const
inlineinherited

Return a flag indicating whether or not we should skip remote deletion and repartition after uniform refinements.

If the flag is true, uniform refinements will run more efficiently, but at the same time, there might be extra ghosting elements. The number of layers of additional ghosting elements depends on the number of uniform refinement levels. This flag should be used only when you have a "fine enough" coarse mesh and want to refine the mesh by a few levels. Otherwise, it might introduce an unbalanced workload and too large ghosting domain.

Definition at line 2312 of file MooseMesh.h.

2313{
2315}

◆ skipNoncriticalPartitioning()

bool MooseMesh::skipNoncriticalPartitioning ( ) const
virtualinherited

Definition at line 4486 of file MooseMesh.C.

4487{
4488 return _mesh->skip_noncritical_partitioning();
4489}

◆ skipPartitioning()

virtual bool MooseMesh::skipPartitioning ( ) const
inlinevirtualinherited

Definition at line 342 of file MooseMesh.h.

342{ return _mesh->skip_partitioning(); }

◆ skipRefineWhenUseSplit()

bool MooseMesh::skipRefineWhenUseSplit ( ) const
inlineinherited

Whether or not skip uniform refinements when using a pre-split mesh.

Definition at line 593 of file MooseMesh.h.

bool _skip_refine_when_use_split
Whether or not to skip uniform refinements when using a pre-split mesh.
Definition MooseMesh.h:1628

◆ spatialDimension()

unsigned int MFEMMesh::spatialDimension ( ) const
inlineoverridevirtualinherited

Returns MeshBase::spatial_dimension.

Reimplemented from MooseMesh.

Definition at line 69 of file MFEMMesh.h.

69{ return _mfem_par_mesh->SpaceDimension(); }

◆ timedSectionName()

std::string PerfGraphInterface::timedSectionName ( const std::string &  section_name) const
protectedinherited
Returns
The name of the timed section with the name section_name.

Optionally adds a prefix if one is defined.

Definition at line 55 of file PerfGraphInterface.C.

56{
57 return _prefix.empty() ? "" : (_prefix + "::") + section_name;
58}
const std::string _prefix
A prefix to use for all sections.

Referenced by PerfGraphInterface::registerTimedSection(), and PerfGraphInterface::registerTimedSection().

◆ type()

const std::string & MooseBase::type ( ) const
inlineinherited

Get the type of this class.

Returns
the name of the type of this class

Definition at line 93 of file MooseBase.h.

94 {
95 mooseAssert(_type.size(), "Empty type");
96 return _type;
97 }
const std::string & _type
The type of this class.
Definition MooseBase.h:378

Referenced by CreateProblemDefaultAction::act(), MaterialDerivativeTestAction::act(), MaterialOutputAction::act(), SetupDebugAction::act(), FEProblemBase::addAuxArrayVariable(), FEProblemBase::addAuxScalarVariable(), FEProblemBase::addConvergence(), FEProblemBase::addDistribution(), DistributedRectilinearMeshGenerator::addElement(), DistributedRectilinearMeshGenerator::addElement(), MooseApp::addExecutor(), MooseApp::addExecutorParams(), MFEMProblem::addFESpace(), MFEMProblem::addFESpaceHierarchy(), FEProblemBase::addFunction(), MFEMProblem::addFunction(), FEProblemBase::addMeshDivision(), MooseApp::addMeshGenerator(), MeshGenerator::addMeshSubgenerator(), MeshGenerator::addMeshSubgenerator(), MFEMProblem::addMFEMProblemComposer(), FEProblemBase::addObject(), DistributedRectilinearMeshGenerator::addPoint(), MFEMProblem::addPostprocessor(), FEProblemBase::addPredictor(), CreateDisplacedProblemAction::addProxyRelationshipManagers(), FEProblemBase::addReporter(), FEProblemBase::addSampler(), WebServerControl::addServerActionsInternal(), FEProblemBase::addTimeIntegrator(), MFEMProblem::addVectorPostprocessor(), SubProblem::addVectorTag(), DisplacedProblem::addVectorTag(), FEProblemBase::advanceMultiApps(), MooseApp::appendMeshGenerator(), AuxKernelBase::AuxKernelBase(), FEProblemBase::backupMultiApps(), BatchMeshGeneratorAction::BatchMeshGeneratorAction(), BoundaryPreservedMarker::BoundaryPreservedMarker(), DistributedRectilinearMeshGenerator::buildCube(), MooseMesh::buildHRefinementAndCoarseningMaps(), MooseMesh::buildLowerDMesh(), MooseMesh::buildPRefinementAndCoarseningMaps(), PhysicsBase::checkComponentType(), MeshGenerator::checkGetMesh(), MeshDiagnosticsGenerator::checkNonConformalMeshFromAdaptivity(), ActionComponent::checkRequiredTasks(), PhysicsBase::checkRequiredTasks(), FEProblemBase::checkUserObjectNameCollision(), MFEMMultiAppTransfer::checkValidTransferProblemTypes(), MeshInfo::CombinedInfos< ElemInfoMap, ElemInfoItems >::CombinedInfos(), ElemElemConstraint::computeElemNeighJacobian(), ArrayDGKernel::computeElemNeighJacobian(), DGKernel::computeElemNeighJacobian(), ADDGKernel::computeElemNeighJacobian(), ElemElemConstraint::computeElemNeighResidual(), ArrayDGKernel::computeElemNeighResidual(), DGKernel::computeElemNeighResidual(), ADDGKernel::computeElemNeighResidual(), ArrayDGLowerDKernel::computeLowerDJacobian(), DGLowerDKernel::computeLowerDJacobian(), ArrayLowerDIntegratedBC::computeLowerDJacobian(), LowerDIntegratedBC::computeLowerDJacobian(), ArrayLowerDIntegratedBC::computeLowerDOffDiagJacobian(), LowerDIntegratedBC::computeLowerDOffDiagJacobian(), ArrayHFEMDirichletBC::computeLowerDQpJacobian(), HFEMDirichletBC::computeLowerDQpJacobian(), ArrayHFEMDiffusion::computeLowerDQpJacobian(), HFEMDiffusion::computeLowerDQpJacobian(), ArrayLowerDIntegratedBC::computeLowerDQpOffDiagJacobian(), ArrayDGLowerDKernel::computeLowerDQpOffDiagJacobian(), ArrayHFEMDirichletBC::computeLowerDQpOffDiagJacobian(), HFEMDirichletBC::computeLowerDQpOffDiagJacobian(), FEProblemBase::computeMultiAppsDT(), ArrayDGKernel::computeOffDiagElemNeighJacobian(), DGKernel::computeOffDiagElemNeighJacobian(), ADDGKernel::computeOffDiagElemNeighJacobian(), ArrayDGLowerDKernel::computeOffDiagLowerDJacobian(), DGLowerDKernel::computeOffDiagLowerDJacobian(), ScalarKernel::computeQpJacobian(), CoupledTiedValueConstraint::computeQpJacobian(), EqualValueBoundaryConstraint::computeQpJacobian(), LinearNodalConstraint::computeQpJacobian(), TiedValueConstraint::computeQpJacobian(), DGConvection::computeQpJacobian(), ArrayDGDiffusion::computeQpJacobian(), DGDiffusion::computeQpJacobian(), InterfaceDiffusion::computeQpJacobian(), InterfaceReaction::computeQpJacobian(), CoupledTiedValueConstraint::computeQpOffDiagJacobian(), ArrayDGKernel::computeQpOffDiagJacobian(), HFEMTestJump::computeQpOffDiagJacobian(), HFEMTrialJump::computeQpOffDiagJacobian(), ScalarKernel::computeQpResidual(), CoupledTiedValueConstraint::computeQpResidual(), EqualValueBoundaryConstraint::computeQpResidual(), LinearNodalConstraint::computeQpResidual(), TiedValueConstraint::computeQpResidual(), DGConvection::computeQpResidual(), ADDGAdvection::computeQpResidual(), ADDGDiffusion::computeQpResidual(), DGDiffusion::computeQpResidual(), HFEMDiffusion::computeQpResidual(), HFEMTestJump::computeQpResidual(), HFEMTrialJump::computeQpResidual(), ADMatInterfaceReaction::computeQpResidual(), InterfaceDiffusion::computeQpResidual(), InterfaceReaction::computeQpResidual(), ArrayDGDiffusion::computeQpResidual(), ArrayHFEMDiffusion::computeQpResidual(), FEProblemBase::computeSystems(), FEProblemBase::computeUserObjectByName(), FEProblemBase::computeUserObjects(), FEProblemBase::computeUserObjectsInternal(), FEProblemBase::createQRules(), DisplacedProblem::createQRules(), MooseApp::createRecoverablePerfGraph(), MoveBoundaryNodesToCurveGenerator::curveGenerator(), MeshGenerator::declareMeshProperty(), DumpObjectsProblem::deduceNecessaryParameters(), DumpObjectsProblem::dumpObjectHelper(), FEProblemBase::duplicateVariableCheck(), FEProblemBase::execMultiAppTransfers(), SteadyBase::execute(), WebServerControl::execute(), ActionWarehouse::executeActionsWithAction(), FEProblemBase::finishMultiAppStep(), FVScalarLagrangeMultiplierInterface::FVScalarLagrangeMultiplierInterface(), Boundary2DDelaunayGenerator::General2DDelaunay(), SurfaceSubdomainsDelaunayRemesher::General2DDelaunay(), Boundary2DDelaunayGenerator::generate(), LowerDBlockFromSidesetGenerator::generate(), SubdomainPerElementGenerator::generate(), PatternedMeshGenerator::generate(), MeshGenerator::generateInternal(), MeshGenerator::generateInternalCSG(), MultiAppTransfer::getAppInfo(), TransfiniteMeshGenerator::getEdge(), ElementGenerator::getElemType(), FEProblemBase::getMaterial(), FEProblemBase::getMaterialData(), FEProblemBase::getMaterialPropertyStorageConsumers(), MaterialOutputAction::getParams(), ReporterData::getReporterInfo(), MooseServer::getSyntaxMetadata(), FEProblemBase::getTransfers(), FEProblemBase::getUOQuery(), SubProblem::getVectorTags(), DisplacedProblem::getVectorTags(), EqualValueBoundaryConstraint::ghostPrimary(), CommonOutputAction::hasConsole(), FEProblemBase::hasMultiApps(), AdvancedOutput::hasOutput(), FEProblemBase::incrementMultiAppTStep(), NEML2Action::inferMOOSEIOType(), AdvancedOutput::initAvailableLists(), FunctorPositions::initialize(), FunctorTimes::initialize(), LinearFVAdvection::initialSetup(), LinearFVAnisotropicDiffusion::initialSetup(), LinearFVDiffusion::initialSetup(), MultiAppConservativeTransfer::initialSetup(), ArrayDGDiffusion::initQpResidual(), AdvancedOutput::initShowHideLists(), RelationshipManager::isType(), FEProblemBase::logAdd(), MaterialFunctorConverterTempl< T >::MaterialFunctorConverterTempl(), MooseObject::MooseObject(), SubProblem::numVectorTags(), DisplacedProblem::numVectorTags(), AdvancedOutput::output(), Console::output(), ConsoleUtils::outputExecutionInformation(), Output::outputStep(), SampledOutput::outputStep(), FEProblemBase::outputStep(), MooseServer::parseDocumentForDiagnostics(), PointInUnionCheckUO::PointInUnionCheckUO(), MooseMesh::prepare(), MFEMFunctorMaterial::processLiterals(), ProjectedStatefulMaterialStorageAction::processProperty(), MooseApp::recursivelyCreateExecutors(), SolutionInvalidInterface::registerInvalidSolutionInternal(), FEProblemBase::restoreMultiApps(), MeshRepairGenerator::separateSubdomainsByElementType(), FEProblemBase::setCoupling(), MooseApp::setupOptions(), ExplicitRK2::solve(), ExplicitTVDRK2::solve(), Reporter::store(), MooseBase::typeAndName(), AuxScalarKernel::uOld(), ScalarKernelBase::uOld(), DisplacedProblem::updateGeomSearch(), FEProblemBase::updateGeomSearch(), UserObjectInterface::userObjectType(), and AdvancedOutput::wantOutput().

◆ typeAndName()

std::string MooseBase::typeAndName ( ) const
inherited

Get the class's combined type and name; useful in error handling.

Returns
The type and name of this class in the form '<type()> "<name()>"'.

Definition at line 57 of file MooseBase.C.

58{
59 return type() + std::string(" \"") + name() + std::string("\"");
60}

Referenced by MaterialPropertyStorage::addProperty(), FEProblemBase::checkUserObjectNameCollision(), MeshGeneratorSystem::dataDrivenError(), ReporterContext< T >::finalize(), ReporterData::getReporterInfo(), MFEMSamplerBase::initialSetup(), MFEMVariableSamplerBase::initialSetup(), WebServerControl::outputMessage(), and Action::timedAct().

◆ uniformRefineLevel()

unsigned int MooseMesh::uniformRefineLevel ( ) const
inherited

Returns the level of uniform refinement requested (zero if AMR is disabled).

Definition at line 3280 of file MooseMesh.C.

3281{
3282 return _uniform_refine_level;
3283}

Referenced by Adaptivity::uniformRefineWithProjection().

◆ uniformRefinement()

void MFEMMesh::uniformRefinement ( mfem::Mesh &  mesh,
const unsigned int  nref 
) const
protectedinherited

Performs a uniform refinement on the chosen mesh nref times.

Definition at line 154 of file MFEMMesh.C.

155{
156 for (unsigned int i = 0; i < nref; ++i)
157 mesh.UniformRefinement();
158}

Referenced by MFEMMesh::buildMesh().

◆ uniqueName()

MooseObjectName MooseBase::uniqueName ( ) const
inherited
Returns
The unique name for accessing input parameters of this object in the InputParameterWarehouse

Definition at line 69 of file MooseBase.C.

70{
71 if (!_pars.have_parameter<std::string>(unique_name_param))
72 mooseError("uniqueName(): Object does not have a unique name");
73 return MooseObjectName(_pars.get<std::string>(unique_name_param));
74}
bool have_parameter(std::string_view name) const
A wrapper around the Parameters base class method.
static const std::string unique_name_param
The name of the parameter that contains the unique object name.
Definition MooseBase.h:57
A class for storing the names of MooseObject by tag and object name.

Referenced by MooseBase::connectControllableParams(), and Action::uniqueActionName().

◆ uniqueParameterName()

MooseObjectParameterName MooseBase::uniqueParameterName ( const std::string &  parameter_name) const
inherited
Returns
The unique parameter name of a valid parameter of this object for accessing parameter controls

Definition at line 63 of file MooseBase.C.

64{
65 return MooseObjectParameterName(getBase(), name(), parameter_name);
66}
const std::string & getBase() const
Definition MooseBase.h:147

◆ update()

void MooseMesh::update ( )
inherited

Calls buildNodeListFromSideList(), buildNodeList(), and buildBndElemList().

Definition at line 625 of file MooseMesh.C.

626{
627 TIME_SECTION("update", 3, "Updating Mesh", true);
628
629 // Rebuild the boundary conditions
631
634 cacheInfo();
636
637 // this will make moose mesh aware of p-refinement added by mesh generators including
638 // a file mesh generator loading a restart checkpoint file
639 _max_p_level = 0;
640 _max_h_level = 0;
641 for (const auto & elem : getMesh().active_local_element_ptr_range())
642 {
643 if (elem->p_level() > _max_p_level)
644 _max_p_level = elem->p_level();
645 if (elem->level() > _max_h_level)
646 _max_h_level = elem->level();
647 }
650
651 // the flag might have been set by calling doingPRefinement(true)
653
655
656#ifdef MOOSE_KOKKOS_ENABLED
659 _kokkos_mesh->update();
660#endif
661
663
665}
bool hasKokkosObjects() const
bool initialized() const
Executioner * getExecutioner() const
Retrieve the Executioner for this App.
Definition MooseApp.C:2020
void buildBndElemList()
Definition MooseMesh.C:1189
bool possiblyRebuildNodeToElemMap()
rebuild the node to element map if it's been requsted previously
Definition MooseMesh.C:608
void computeMaxPerElemAndSide()
Compute the maximum numbers per element and side.
Definition MooseMesh.C:1070
void buildElemIDInfo()
Build extra data for faster access to the information of extra element integers.
Definition MooseMesh.C:1093
void buildNodeList()
Calls BoundaryInfo::build_node_list()/build_side_list() and makes separate copies of Nodes/Elems in t...
Definition MooseMesh.C:1036
void cacheInfo()
Definition MooseMesh.C:1406

Referenced by MooseMesh::meshChanged(), MooseMesh::MooseMesh(), and MooseMesh::prepare().

◆ updateActiveSemiLocalNodeRange()

void MooseMesh::updateActiveSemiLocalNodeRange ( std::set< dof_id_type > &  ghosted_elems)
inherited

Clears the "semi-local" node list and rebuilds it.

Semi-local nodes consist of all nodes that belong to local and ghost elements.

Definition at line 962 of file MooseMesh.C.

963{
964 TIME_SECTION("updateActiveSemiLocalNodeRange", 5, "Updating ActiveSemiLocalNode Range");
965
966 _semilocal_node_list.clear();
967
968 // First add the nodes connected to local elems
969 const ConstElemRange * active_local_elems = getActiveLocalElementRange();
970 for (const auto & elem : *active_local_elems)
971 {
972 for (unsigned int n = 0; n < elem->n_nodes(); ++n)
973 {
974 // Since elem is const here but we require a non-const Node * to
975 // store in the _semilocal_node_list (otherwise things like
976 // UpdateDisplacedMeshThread don't work), we are using a
977 // const_cast. A more long-term fix would be to have
978 // getActiveLocalElementRange return a non-const ElemRange.
979 Node * node = const_cast<Node *>(elem->node_ptr(n));
980
982 }
983 }
984
985 // Now add the nodes connected to ghosted_elems
986 for (const auto & ghost_elem_id : ghosted_elems)
987 {
988 Elem * elem = getMesh().elem_ptr(ghost_elem_id);
989 for (unsigned int n = 0; n < elem->n_nodes(); n++)
990 {
991 Node * node = elem->node_ptr(n);
992
994 }
995 }
996
997 // Now create the actual range
998 _active_semilocal_node_range = std::make_unique<SemiLocalNodeRange>(_semilocal_node_list.begin(),
1000}

Referenced by FEProblemBase::meshChanged(), and FEProblemBase::possiblyRebuildGeomSearchPatches().

◆ updateCoordTransform()

void MooseMesh::updateCoordTransform ( )
privateinherited

Update the coordinate transformation object based on our coordinate system data.

The coordinate transformation will be created if it hasn't been already

Definition at line 4369 of file MooseMesh.C.

4370{
4371 if (!_coord_transform)
4372 _coord_transform = std::make_unique<MooseAppCoordTransform>(*this);
4373 else
4374 _coord_transform->setCoordinateSystem(*this);
4375}

Referenced by MooseMesh::MooseMesh(), MooseMesh::setAxisymmetricCoordAxis(), MooseMesh::setCoordSystem(), and MooseMesh::setGeneralAxisymmetricCoordAxes().

◆ usingGeneralAxisymmetricCoordAxes()

bool MooseMesh::usingGeneralAxisymmetricCoordAxes ( ) const
inherited

Returns true if general axisymmetric coordinate axes are being used.

Definition at line 4363 of file MooseMesh.C.

4364{
4365 return _subdomain_id_to_rz_coord_axis.size() > 0;
4366}

Referenced by MooseMesh::getAxisymmetricRadialCoord(), and MooseMesh::getUniqueCoordSystem().

◆ validParams()

InputParameters MFEMMeshGeneratorMesh::validParams ( )
static

Definition at line 19 of file MFEMMeshGeneratorMesh.C.

20{
22
23 // Mark this as a mesh-generator-based mesh so SetupMeshAction routes the
24 // pipeline output to us via setMeshBase() before buildMesh() is called.
25 params.set<bool>("_mesh_generator_mesh") = true;
26
28 "Mesh type for building an mfem::ParMesh from a chain of MFEMMeshGenerator objects.");
29
30 return params;
31}
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
void addClassDescription(const std::string &doc_string)
This method adds a description of the class that will be displayed in the input file syntax dump.
T & set(const std::string &name, bool quiet_mode=false)
Returns a writable reference to the named parameters.
static InputParameters validParams()
Definition MFEMMesh.C:19

◆ writeRecoveryFiles()

std::vector< std::filesystem::path > MFEMMesh::writeRecoveryFiles ( const std::filesystem::path &  file_base)
overridevirtualinherited

Write the mesh files needed for recovery/checkpointing.

The base implementation writes the libMesh checkpoint mesh. Derived classes may extend this to write additional backend-specific files.

Returns
The additional backend-specific files written by the derived class.

Reimplemented from MooseMesh.

Definition at line 119 of file MFEMMesh.C.

120{
122
123 mooseAssert(_mfem_par_mesh, "MFEM parallel mesh is not initialized");
124
125 const auto checkpoint_file =
126 file_base.string() + ".mfem.mesh." + std::to_string(this->processor_id());
127 std::ofstream output(checkpoint_file);
128 if (!output)
129 mooseError("Unable to open MFEM recovery mesh file '", checkpoint_file, "' for writing.");
130
131 _mfem_par_mesh->ParPrint(output);
132 return {checkpoint_file};
133}
virtual std::vector< std::filesystem::path > writeRecoveryFiles(const std::filesystem::path &file_base)
Write the mesh files needed for recovery/checkpointing.
Definition MooseMesh.C:2941

Member Data Documentation

◆ _action_factory

ActionFactory& ParallelParamObject::_action_factory
protectedinherited

◆ _active_node_range

std::unique_ptr<libMesh::NodeRange> MooseMesh::_active_node_range
protectedinherited

Definition at line 1663 of file MooseMesh.h.

Referenced by MooseMesh::getActiveNodeRange(), and MooseMesh::meshChanged().

◆ _active_semilocal_node_range

std::unique_ptr<SemiLocalNodeRange> MooseMesh::_active_semilocal_node_range
protectedinherited

Ranges for use with threading, cached so they don't have to get rebuilt all the time (which takes time).

Definition at line 1662 of file MooseMesh.h.

Referenced by MooseMesh::getActiveSemiLocalNodeRange(), MooseMesh::meshChanged(), and MooseMesh::updateActiveSemiLocalNodeRange().

◆ _all_face_info

std::vector<FaceInfo> MooseMesh::_all_face_info
mutableprivateinherited

FaceInfo object storing information for face based loops.

This container holds all the FaceInfo objects accessible from this process

Definition at line 1774 of file MooseMesh.h.

Referenced by MooseMesh::allFaceInfo(), MooseMesh::buildFiniteVolumeInfo(), MooseMesh::cacheFaceInfoVariableOwnership(), and MooseMesh::computeFiniteVolumeCoords().

◆ _allow_recovery

bool MooseMesh::_allow_recovery
privateinherited

Whether or not this Mesh is allowed to read a recovery file.

Definition at line 1977 of file MooseMesh.h.

Referenced by MooseMesh::allowRecovery(), MooseMesh::allowRecovery(), and MooseMesh::init().

◆ _allow_remote_element_removal

bool MooseMesh::_allow_remote_element_removal
privateinherited

◆ _app

MooseApp& MooseBase::_app
protectedinherited

The MOOSE application this is associated with.

Definition at line 375 of file MooseBase.h.

Referenced by AB2PredictorCorrector::AB2PredictorCorrector(), FEProblemBase::acceptInvalidSolution(), FEProblemBase::addAnyRedistributers(), MeshGenerator::addChildMeshGenerator(), FEProblemBase::addMaterialHelper(), MeshGenerator::addMeshSubgenerator(), MeshGenerator::addMeshSubgenerator(), FEProblemBase::addOutput(), MeshGenerator::addParentMeshGenerator(), FEProblemBase::allowOutput(), AStableDirk4::AStableDirk4(), FileMesh::buildMesh(), MooseMesh::buildTypedMesh(), MooseMesh::cacheFaceInfoVariableOwnership(), MooseMesh::cacheFVElementalDoFs(), DefaultNonlinearConvergence::checkConvergence(), MeshGenerator::checkGetMesh(), FEProblemBase::checkICRestartError(), FEProblemBase::checkProblemIntegrity(), LibmeshPartitioner::clone(), BlockWeightedPartitioner::clone(), CopyMeshPartitioner::clone(), GridPartitioner::clone(), HierarchicalGridPartitioner::clone(), PetscExternalPartitioner::clone(), RandomPartitioner::clone(), SingleRankPartitioner::clone(), ElementPointNeighborLayers::clone(), ElementSideNeighborLayers::clone(), GhostAllPointNeighbors::clone(), GhostBoundary::clone(), GhostEverything::clone(), GhostHigherDLowerDPointNeighbors::clone(), GhostLowerDElems::clone(), GhostPrimaryFace::clone(), ProxyRelationshipManager::clone(), RedistributeProperties::clone(), SampledOutput::cloneMesh(), FEProblemBase::computeJacobianSys(), FEProblemBase::computeJacobianTags(), FEProblemBase::computeLinearSystemTags(), FEProblemBase::computeResidualAndJacobian(), FEProblemBase::computeResidualSys(), FEProblemBase::computeResidualTags(), Console::Console(), TimeStepper::constrainStep(), Control::Control(), CopyMeshPartitioner::CopyMeshPartitioner(), MultiApp::createApp(), MultiApp::createApps(), MoveBoundaryNodesToCurveGenerator::curveGenerator(), FEProblemBase::customSetup(), MeshGenerator::declareMeshProperty(), MeshGenerator::declareNullMeshName(), MooseMesh::determineUseDistributedMesh(), DumpObjectsProblem::dumpObjectHelper(), DumpObjectsProblem::DumpObjectsProblem(), DumpObjectsProblem::dumpVariableHelper(), EigenExecutionerBase::EigenExecutionerBase(), EigenKernel::EigenKernel(), PIDTransientControl::execute(), Eigenvalue::execute(), InversePowerMethod::execute(), NonlinearEigen::execute(), SteadyBase::execute(), TransientBase::execute(), MFEMSteady::execute(), PseudoTimestep::execute(), IterationInfo::execute(), EigenProblem::execute(), Executioner::Executioner(), Executioner::Executioner(), ExtraIDIntegralReporter::ExtraIDIntegralReporter(), FEProblemBase::FEProblemBase(), FileOutput::FileOutput(), NEML2Assembly::finalize(), ChangeOverFixedPointPostprocessor::finalize(), RadialAverage::finalize(), FixedPointSolve::FixedPointSolve(), FEProblemBase::forceOutput(), FullSolveMultiApp::FullSolveMultiApp(), FunctorSmootherTempl< T >::FunctorSmootherTempl(), FVAdvection::FVAdvection(), FileMeshGenerator::generate(), MeshGenerator::generateInternal(), MeshGenerator::generateInternalCSG(), MeshGenerator::getCSGBaseByName(), FEProblemBase::getExecutor(), MeshGenerator::getMeshByName(), NumFixedPointIterations::getValue(), NumRelationshipManagers::getValue(), GhostingUserObject::GhostingUserObject(), MooseMesh::init(), Eigenvalue::init(), InversePowerMethod::init(), NonlinearEigen::init(), TransientBase::init(), MFEMMesh::init(), FEProblemBase::init(), CompositionDT::init(), SubProblem::initialSetup(), PIDTransientControl::initialSetup(), RealFunctionControl::initialSetup(), TimePeriod::initialSetup(), EigenProblemSolve::initialSetup(), FEProblemSolve::initialSetup(), Console::initialSetup(), FEProblemBase::initialSetup(), BoundaryMeshBuilder::initialSetup(), AdvancedOutput::initOutputList(), FEProblemBase::initPetscOutputAndSomeSolverSettings(), EigenProblem::initPetscOutputAndSomeSolverSettings(), AdvancedOutput::initPostprocessorOrVectorPostprocessorLists(), FEProblemBase::meshChanged(), MeshGenerator::MeshGenerator(), MFEMProblemSolve::MFEMProblemSolve(), MooseMesh::MooseMesh(), MooseMesh::MooseMesh(), MooseObject::MooseObject(), MultiAppGeneralFieldTransfer::MultiAppGeneralFieldTransfer(), EigenExecutionerBase::normalizeSolution(), NumFailedTimeSteps::NumFailedTimeSteps(), Checkpoint::output(), Exodus::output(), Nemesis::output(), PerfGraphOutput::output(), Tecplot::output(), MortarNodalGeometryOutput::output(), ControlOutput::outputActiveObjects(), ControlOutput::outputChangedControls(), ControlOutput::outputControls(), Exodus::outputEmptyTimestep(), Console::outputInput(), Exodus::outputInput(), Exodus::outputNodalVariables(), JSONOutput::outputReporters(), Output::outputStep(), SampledOutput::outputStep(), FEProblemBase::outputStep(), Console::outputSystemInformation(), JSONOutput::outputSystemInformation(), OverlayMeshGenerator::OverlayMeshGenerator(), MultiApp::parentOutputPositionChanged(), TransientBase::preExecute(), FEProblemBase::projectSolution(), AnnularMesh::safeClone(), ConcentricCircleMesh::safeClone(), FileMesh::safeClone(), GeneratedMesh::safeClone(), ImageMesh::safeClone(), MeshGeneratorMesh::safeClone(), PatternedMesh::safeClone(), RinglebMesh::safeClone(), SpiralAnnularMesh::safeClone(), StitchedMesh::safeClone(), TiledMesh::safeClone(), MFEMFileMesh::safeClone(), safeClone(), MultiApp::setAppOutputFileBase(), FileOutput::setFileBaseInternal(), MeshGenerator::setMeshProperty(), MeshGenerator::setMeshPropertyHelper(), FEProblemBase::setRestartFile(), TransientMultiApp::setupApp(), TimeSequenceStepperBase::setupSequence(), TransientBase::setupTimeIntegrator(), Output::setWallTimeIntervalFromCommandLineParam(), SideSetExtruderGenerator::SideSetExtruderGenerator(), SolutionInvalidityReporter::SolutionInvalidityReporter(), FixedPointSolve::solve(), ActuallyExplicitEuler::solve(), FEProblemBase::solve(), EigenProblem::solve(), FEProblemBase::solveLinearSystem(), PetscOutput::solveSetup(), FixedPointSolve::solveStep(), TransientMultiApp::solveStep(), FEProblemBase::subdomainSetup(), FEProblemBase::theWarehouse(), TimeExtremeValue::TimeExtremeValue(), TimeIntegratedPostprocessor::TimeIntegratedPostprocessor(), TimeIntervalTimes::TimeIntervalTimes(), TimePeriod::TimePeriod(), SubProblem::timestepSetup(), PIDTransientControl::timestepSetup(), FEProblemBase::timestepSetup(), TransientBase::TransientBase(), MooseMesh::update(), NEML2FEInterpolation::updateDofMap(), NEML2FEInterpolation::updateGradPhi(), NEML2FEInterpolation::updateInterpolations(), FEProblemBase::updateMortarMesh(), NEML2FEInterpolation::updatePhi(), Console::write(), XYQuadrilateralMeshFromBoundaryCurve::XYQuadrilateralMeshFromBoundaryCurve(), and FEProblemBase::~FEProblemBase().

◆ _block_id_mapping

std::vector<std::unordered_map<SubdomainID, std::set<dof_id_type> > > MooseMesh::_block_id_mapping
privateinherited

Unique element integer IDs for each subdomain and each extra element integers.

Definition at line 2002 of file MooseMesh.h.

Referenced by MooseMesh::buildElemIDInfo(), MooseMesh::getAllElemIDs(), and MooseMesh::getElemIDsOnBlocks().

◆ _block_node_list

std::map<dof_id_type, std::set<SubdomainID> > MooseMesh::_block_node_list
protectedinherited

list of nodes that belongs to a specified block (domain)

Definition at line 1717 of file MooseMesh.h.

Referenced by MooseMesh::cacheInfo(), and MooseMesh::getNodeBlockIds().

◆ _bnd_elem_ids

std::unordered_map<boundary_id_type, std::unordered_set<dof_id_type> > MooseMesh::_bnd_elem_ids
protectedinherited

◆ _bnd_elem_range

std::unique_ptr<libMesh::StoredRange<MooseMesh::const_bnd_elem_iterator, const BndElement *> > MooseMesh::_bnd_elem_range
protectedinherited

◆ _bnd_elems

std::vector<BndElement *> MooseMesh::_bnd_elems
protectedinherited

◆ _bnd_node_ids

std::map<boundary_id_type, std::set<dof_id_type> > MooseMesh::_bnd_node_ids
protectedinherited

Map of sets of node IDs in each boundary.

Definition at line 1701 of file MooseMesh.h.

Referenced by MooseMesh::addQuadratureNode(), MooseMesh::buildNodeList(), MooseMesh::freeBndNodes(), MooseMesh::isBoundaryNode(), and MooseMesh::isBoundaryNode().

◆ _bnd_node_range

std::unique_ptr<libMesh::StoredRange<MooseMesh::const_bnd_node_iterator, const BndNode *> > MooseMesh::_bnd_node_range
protectedinherited

◆ _bnd_nodes

std::vector<BndNode *> MooseMesh::_bnd_nodes
protectedinherited

◆ _boundary_to_normal_map

std::unique_ptr<std::map<BoundaryID, RealVectorValue> > MooseMesh::_boundary_to_normal_map
protectedinherited

The boundary to normal map - valid only when AddAllSideSetsByNormals is active.

Definition at line 1694 of file MooseMesh.h.

Referenced by MooseMesh::getNormalByBoundaryID(), MooseMesh::setBoundaryToNormalMap(), and MooseMesh::setBoundaryToNormalMap().

◆ _bounds

std::vector<std::vector<Real> > MooseMesh::_bounds
protectedinherited

The bounds in each dimension of the mesh for regular orthogonal meshes.

Definition at line 1744 of file MooseMesh.h.

Referenced by MooseMesh::detectOrthogonalDimRanges(), MooseMesh::getMaxInDimension(), MooseMesh::getMinInDimension(), and MooseMesh::MooseMesh().

◆ _built_from_other_mesh

bool MooseMesh::_built_from_other_mesh = false
protectedinherited

Whether or not this mesh was built from another mesh.

Definition at line 1582 of file MooseMesh.h.

Referenced by MooseMesh::prepare().

◆ _coarsened_element_children

std::map<const Elem *, std::vector<const Elem *> > MooseMesh::_coarsened_element_children
protectedinherited

Map of Parent elements to child elements for elements that were just coarsened.

NOTE: the child element pointers ARE PROBABLY INVALID. Only use them for indexing!

Definition at line 1653 of file MooseMesh.h.

Referenced by MooseMesh::cacheChangedLists(), and MooseMesh::coarsenedElementChildren().

◆ _coarsened_elements

std::unique_ptr<ConstElemPointerRange> MooseMesh::_coarsened_elements
protectedinherited

The elements that were just coarsened.

Definition at line 1646 of file MooseMesh.h.

Referenced by MooseMesh::cacheChangedLists(), and MooseMesh::coarsenedElementRange().

◆ _console

const ConsoleStream ConsoleStreamInterface::_console
inherited

An instance of helper class to write streams to the Console objects.

Definition at line 31 of file ConsoleStreamInterface.h.

Referenced by IterationAdaptiveDT::acceptStep(), MaterialOutputAction::act(), MeshOnlyAction::act(), SetupDebugAction::act(), FEProblemBase::adaptMesh(), Adaptivity::adaptMesh(), PerfGraph::addToExecutionList(), SimplePredictor::apply(), SystemBase::applyScalingFactors(), MultiApp::backup(), FEProblemBase::backupMultiApps(), CoarsenedPiecewiseLinear::buildCoarsenedGrid(), DefaultSteadyStateConvergence::checkConvergence(), MeshDiagnosticsGenerator::checkElementOverlap(), MeshDiagnosticsGenerator::checkElementTypes(), MeshDiagnosticsGenerator::checkElementVolumes(), FEProblemBase::checkExceptionAndStopSolve(), SolverSystem::checkInvalidSolution(), MeshDiagnosticsGenerator::checkLocalJacobians(), MeshDiagnosticsGenerator::checkNonConformalMesh(), MeshDiagnosticsGenerator::checkNonConformalMeshFromAdaptivity(), MeshDiagnosticsGenerator::checkNonConformingFaces(), MeshDiagnosticsGenerator::checkNonMatchingEdges(), MeshDiagnosticsGenerator::checkNonPlanarSides(), MeshDiagnosticsGenerator::checkPolygons(), FEProblemBase::checkProblemIntegrity(), ReferenceResidualConvergence::checkResidualConvergence(), MeshDiagnosticsGenerator::checkSidesetsOrientation(), MeshDiagnosticsGenerator::checkWatertightNodesets(), MeshDiagnosticsGenerator::checkWatertightSidesets(), CoarsenSurfaceMeshAlongSidesetGenerator::coarsenAlongSidesets(), IterationAdaptiveDT::computeAdaptiveDT(), TransientBase::computeConstrainedDT(), DefaultMultiAppFixedPointConvergence::computeCustomConvergencePostprocessor(), NonlinearSystemBase::computeDamping(), FixedPointIterationAdaptiveDT::computeDT(), IterationAdaptiveDT::computeDT(), IterationAdaptiveDT::computeFailedDT(), IterationAdaptiveDT::computeInitialDT(), IterationAdaptiveDT::computeInterpolationDT(), FEProblemBase::computeLinearSystemTags(), LinearSystem::computeLinearSystemTags(), NonlinearSystemBase::computeScaling(), Problem::console(), TimeStepper::constrainStep(), IterationAdaptiveDT::constrainStep(), MultiApp::createApp(), FEProblemBase::execMultiApps(), FEProblemBase::execMultiAppTransfers(), Eigenvalue::execute(), SteadyBase::execute(), MFEMSteady::execute(), MessageFromInput::execute(), ActionWarehouse::executeActionsWithAction(), ActionWarehouse::executeAllActions(), MeshGeneratorSystem::executeMeshGenerators(), SidesetAroundSubdomainUpdater::finalize(), ElementQualityChecker::finalize(), FEProblemBase::finishMultiAppStep(), MeshRepairGenerator::fixOverlappingNodes(), SurfaceSubdomainsDelaunayRemesher::General2DDelaunay(), CoarsenBlockGenerator::generate(), CoarsenSurfaceMeshAlongSidesetGenerator::generate(), OrientSurfaceMeshGenerator::generate(), PolyLineMeshFollowingNodeSetGenerator::generate(), MeshGenerator::generateInternal(), VariableCondensationPreconditioner::getDofToCondense(), InversePowerMethod::init(), NonlinearEigen::init(), FEProblemBase::initialAdaptMesh(), DefaultMultiAppFixedPointConvergence::initialize(), SubProblem::initialSetup(), EigenExecutionerBase::inversePowerIteration(), FEProblemBase::joinAndFinalize(), TransientBase::keepGoing(), IterationAdaptiveDT::limitDTByFunction(), IterationAdaptiveDT::limitDTToPostprocessorValue(), FEProblemBase::logAdd(), EigenExecutionerBase::makeBXConsistent(), Console::meshChanged(), SurfaceDelaunayGeneratorBase::meshNormalDeviation2D(), MooseBase::mooseDeprecated(), MooseBase::mooseDeprecatedNoTrace(), MooseBase::mooseInfo(), MooseBase::mooseWarning(), MooseBase::mooseWarningNonPrefixed(), ReferenceResidualConvergence::nonlinearConvergenceSetup(), Console::output(), DOFMapOutput::output(), MaterialPropertyDebugOutput::output(), PerfGraphOutput::output(), ReporterDebugOutput::output(), SolutionInvalidityOutput::output(), VariableResidualNormsDebugOutput::output(), ControlOutput::outputActiveObjects(), ControlOutput::outputChangedControls(), ControlOutput::outputControls(), Console::outputInput(), WebServerControl::outputMessage(), Console::outputPostprocessors(), PseudoTimestep::outputPseudoTimestep(), Console::outputReporters(), DefaultMultiAppFixedPointConvergence::outputResidualNorm(), Console::outputScalarVariables(), Console::outputSystemInformation(), FEProblemBase::possiblyRebuildGeomSearchPatches(), EigenExecutionerBase::postExecute(), AB2PredictorCorrector::postSolve(), ActionWarehouse::printActionDependencySets(), BlockRestrictionDebugOutput::printBlockRestrictionGroups(), BlockRestrictionDebugOutput::printBlockRestrictionMap(), BlockRestrictionDebugOutput::printBoundaryRestrictionGroups(), SolutionInvalidity::printDebug(), EigenExecutionerBase::printEigenvalue(), PicardSolve::printFixedPointConvergenceHistory(), SecantSolve::printFixedPointConvergenceHistory(), SteffensenSolve::printFixedPointConvergenceHistory(), FixedPointSolve::printFixedPointConvergenceReason(), PerfGraphLivePrint::printLiveMessage(), MaterialPropertyDebugOutput::printMaterialMap(), PerfGraphLivePrint::printStats(), NEML2Action::printSummary(), AutomaticMortarGeneration::projectPrimaryNodesSinglePair(), AutomaticMortarGeneration::projectSecondaryNodesSinglePair(), CoarsenBlockGenerator::recursiveCoarsen(), SolutionTimeAdaptiveDT::rejectStep(), MultiApp::restore(), FEProblemBase::restoreMultiApps(), FEProblemBase::restoreSolutions(), NonlinearSystemBase::setInitialSolution(), MooseApp::setupOptions(), Checkpoint::shouldOutput(), SubProblem::showFunctorRequestors(), SubProblem::showFunctors(), FullSolveMultiApp::showStatusMessage(), FEProblemSolve::solve(), FixedPointSolve::solve(), LinearSystem::solve(), NonlinearSystem::solve(), AStableDirk4::solve(), ExplicitRK2::solve(), ExplicitTVDRK2::solve(), ImplicitMidpoint::solve(), LStableDirk2::solve(), LStableDirk3::solve(), LStableDirk4::solve(), EigenProblem::solve(), FixedPointSolve::solveStep(), TransientMultiApp::solveStep(), MeshRepairGenerator::splitNonConvexPolygons(), PerfGraphLivePrint::start(), WebServerControl::startServer(), AB2PredictorCorrector::step(), NonlinearEigen::takeStep(), TransientBase::takeStep(), MFEMTransient::takeStep(), TerminateChainControl::terminate(), SubProblem::timestepSetup(), FEProblemBase::updateMeshXFEM(), Convergence::verboseOutput(), Console::writeTimestepInformation(), Console::writeVariableNorms(), and FEProblemBase::~FEProblemBase().

◆ _construct_node_list_from_side_list

bool MooseMesh::_construct_node_list_from_side_list
privateinherited

Whether or not to allow generation of nodesets from sidesets.

Definition at line 1980 of file MooseMesh.h.

Referenced by MooseMesh::buildNodeListFromSideList(), and MooseMesh::getConstructNodeListFromSideList().

◆ _coord_sys

std::map<SubdomainID, Moose::CoordinateSystemType>& MooseMesh::_coord_sys
privateinherited

◆ _coord_system_set

bool MooseMesh::_coord_system_set
privateinherited

Whether the coordinate system has been set.

Definition at line 2045 of file MooseMesh.h.

Referenced by MooseMesh::prepare(), and MooseMesh::setCoordSystem().

◆ _coord_transform

std::unique_ptr<MooseAppCoordTransform> MooseMesh::_coord_transform
privateinherited

A coordinate transformation object that describes how to transform this problem's coordinate system into the canonical/reference coordinate system.

Definition at line 2042 of file MooseMesh.h.

Referenced by MooseMesh::coordTransform(), MooseMesh::lengthUnit(), and MooseMesh::updateCoordTransform().

◆ _custom_partitioner

std::unique_ptr<libMesh::Partitioner> MooseMesh::_custom_partitioner
protectedinherited

The custom partitioner.

Definition at line 1608 of file MooseMesh.h.

Referenced by MooseMesh::buildTypedMesh(), and MooseMesh::setCustomPartitioner().

◆ _custom_partitioner_requested

bool MooseMesh::_custom_partitioner_requested
protectedinherited

◆ _displace_node_list_by_side_list

bool MooseMesh::_displace_node_list_by_side_list
privateinherited

Whether or not to displace unrelated nodesets by nodesets constructed from sidesets.

Definition at line 1984 of file MooseMesh.h.

Referenced by MooseMesh::buildNodeListFromSideList(), and MooseMesh::getDisplaceNodeListBySideList().

◆ _distribution_overridden

bool MooseMesh::_distribution_overridden
protectedinherited

Definition at line 1592 of file MooseMesh.h.

◆ _doing_p_refinement

bool MooseMesh::_doing_p_refinement
privateinherited

Whether we have p-refinement (whether exclusively p- or hp-refinement)

Definition at line 2051 of file MooseMesh.h.

Referenced by MooseMesh::doingPRefinement(), MooseMesh::doingPRefinement(), and MooseMesh::update().

◆ _elem_info

std::vector<const ElemInfo *> MooseMesh::_elem_info
mutableprivateinherited

Holds only those ElemInfo objects that have processor_id equal to this process's id, e.g.

the local ElemInfo objects

Definition at line 1770 of file MooseMesh.h.

Referenced by MooseMesh::buildFiniteVolumeInfo(), MooseMesh::elemInfoVector(), MooseMesh::ownedElemInfoBegin(), and MooseMesh::ownedElemInfoEnd().

◆ _elem_side_to_face_info

std::unordered_map<std::pair<const Elem *, unsigned int>, FaceInfo *> MooseMesh::_elem_side_to_face_info
mutableprivateinherited

Map from elem-side pair to FaceInfo.

Definition at line 1782 of file MooseMesh.h.

Referenced by MooseMesh::buildFiniteVolumeInfo(), and MooseMesh::faceInfo().

◆ _elem_to_elem_info

std::unordered_map<dof_id_type, ElemInfo> MooseMesh::_elem_to_elem_info
mutableprivateinherited

Map connecting elems with their corresponding ElemInfo, we use the element ID as the key.

Definition at line 1766 of file MooseMesh.h.

Referenced by MooseMesh::buildFiniteVolumeInfo(), MooseMesh::cacheFVElementalDoFs(), MooseMesh::computeFiniteVolumeCoords(), and MooseMesh::elemInfo().

◆ _elem_to_side_to_qp_to_quadrature_nodes

std::map<dof_id_type, std::map<unsigned int, std::map<dof_id_type, Node *> > > MooseMesh::_elem_to_side_to_qp_to_quadrature_nodes
protectedinherited

◆ _elem_type_to_child_side_refinement_map

std::map<libMesh::ElemType, std::map<std::pair<int, int>, std::vector<std::vector<QpMap> > > > MooseMesh::_elem_type_to_child_side_refinement_map
privateinherited

Holds mappings for "internal" child sides to parent volume. The second key is (child, child_side).

Definition at line 1927 of file MooseMesh.h.

Referenced by MooseMesh::buildRefinementMap(), and MooseMesh::getRefinementMap().

◆ _elem_type_to_coarsening_map

std::map<std::pair<int, libMesh::ElemType>, std::vector<std::pair<unsigned int, QpMap> > > MooseMesh::_elem_type_to_coarsening_map
privateinherited

Holds mappings for volume to volume and parent side to child side Map key:

  • first member corresponds to element side. It's -1 for volume quadrature points
  • second member correponds to the element type Map value:
  • Vector is sized based on the number of quadrature points in the parent (e.g. coarser) element.
  • For each parent quadrature point we store a pair
    • The first member of the pair identifies which child holds the closest refined-level quadrature point
    • The second member of the pair is the QpMap. The _from data member will correspond to the parent quadrature point index. The _to data member will correspond to which child element quadrature point is closest to the parent quadrature point. And _distance is the distance between the two

Definition at line 1944 of file MooseMesh.h.

Referenced by MooseMesh::buildCoarseningMap(), and MooseMesh::getCoarseningMap().

◆ _elem_type_to_p_coarsening_map

std::map<std::pair<libMesh::ElemType, unsigned int>, std::vector<QpMap> > MooseMesh::_elem_type_to_p_coarsening_map
privateinherited

◆ _elem_type_to_p_coarsening_side_map

std::map<std::pair<libMesh::ElemType, unsigned int>, std::vector<QpMap> > MooseMesh::_elem_type_to_p_coarsening_side_map
privateinherited

◆ _elem_type_to_p_refinement_map

std::map<std::pair<libMesh::ElemType, unsigned int>, std::vector<QpMap> > MooseMesh::_elem_type_to_p_refinement_map
privateinherited

◆ _elem_type_to_p_refinement_side_map

std::map<std::pair<libMesh::ElemType, unsigned int>, std::vector<QpMap> > MooseMesh::_elem_type_to_p_refinement_side_map
privateinherited

◆ _elem_type_to_refinement_map

std::map<std::pair<int, libMesh::ElemType>, std::vector<std::vector<QpMap> > > MooseMesh::_elem_type_to_refinement_map
privateinherited

Holds mappings for volume to volume and parent side to child side Map key:

  • first member corresponds to element side. It's -1 for volume quadrature points
  • second member correponds to the element type Map value:
  • Outermost index is the child element index
  • Once we have indexed by the child element index, we have a std::vector of QpMaps. This vector is sized by the number of reference points in the child element. Then for each reference point in the child element we have a QpMap whose _from index corresponds to the child element reference point, a _to index which corresponds to the reference point on the parent element that the child element reference point is closest to, and a _distance member which is the distance between the mapped child and parent reference quadrature points

Definition at line 1918 of file MooseMesh.h.

Referenced by MooseMesh::buildRefinementMap(), and MooseMesh::getRefinementMap().

◆ _enabled

const bool& MooseObject::_enabled
protectedinherited

Reference to the "enable" InputParameters, used by Controls for toggling on/off MooseObjects.

Definition at line 71 of file MooseObject.h.

Referenced by MooseObject::enabled().

◆ _extra_bnd_nodes

std::vector<BndNode> MooseMesh::_extra_bnd_nodes
protectedinherited

◆ _extreme_nodes

std::vector<Node *> MooseMesh::_extreme_nodes
privateinherited

A vector containing the nodes at the corners of a regular orthogonal mesh.

Definition at line 1806 of file MooseMesh.h.

Referenced by MooseMesh::detectOrthogonalDimRanges().

◆ _face_info

std::vector<const FaceInfo *> MooseMesh::_face_info
mutableprivateinherited

Holds only those FaceInfo objects that have processor_id equal to this process's id, e.g.

the local FaceInfo objects

Definition at line 1778 of file MooseMesh.h.

Referenced by MooseMesh::buildFiniteVolumeInfo(), MooseMesh::faceInfo(), MooseMesh::nFace(), MooseMesh::ownedFaceInfoBegin(), and MooseMesh::ownedFaceInfoEnd().

◆ _factory

Factory& ParallelParamObject::_factory
protectedinherited

◆ _finite_volume_info_dirty

bool MooseMesh::_finite_volume_info_dirty = true
mutableprivateinherited

◆ _ghost_elems_from_ghost_boundaries

std::set<Elem *> MooseMesh::_ghost_elems_from_ghost_boundaries
privateinherited

Set of elements ghosted by ghostGhostedBoundaries.

Definition at line 1993 of file MooseMesh.h.

Referenced by MooseMesh::ghostGhostedBoundaries().

◆ _ghosted_boundaries

std::set<unsigned int> MooseMesh::_ghosted_boundaries
protectedinherited

◆ _ghosted_boundaries_inflation

std::vector<Real> MooseMesh::_ghosted_boundaries_inflation
protectedinherited

◆ _ghosting_functors

std::vector<std::unique_ptr<libMesh::GhostingFunctor> > MooseMesh::_ghosting_functors
protectedinherited

Deprecated (DO NOT USE)

Definition at line 1576 of file MooseMesh.h.

◆ _ghosting_patch_size

unsigned int MooseMesh::_ghosting_patch_size
protectedinherited

The number of nearest neighbors to consider for ghosting purposes when iteration patch update strategy is used.

Definition at line 1729 of file MooseMesh.h.

Referenced by MooseMesh::getGhostingPatchSize().

◆ _half_range

RealVectorValue MooseMesh::_half_range
privateinherited

A convenience vector used to hold values in each dimension representing half of the range.

Definition at line 1803 of file MooseMesh.h.

Referenced by MooseMesh::addPeriodicVariable(), and MooseMesh::minPeriodicVector().

◆ _higher_d_elem_side_to_lower_d_elem

std::unordered_map<std::pair<const Elem *, unsigned short int>, const Elem *> MooseMesh::_higher_d_elem_side_to_lower_d_elem
privateinherited

Holds a map from a high-order element side to its corresponding lower-d element.

Definition at line 1973 of file MooseMesh.h.

Referenced by MooseMesh::buildLowerDMesh(), MooseMesh::cacheInfo(), MooseMesh::getLowerDElem(), and MooseMesh::getLowerDElemMap().

◆ _id_identical_flag

std::vector<std::vector<bool> > MooseMesh::_id_identical_flag
privateinherited

Flags to indicate whether or not any two extra element integers are the same.

Definition at line 2008 of file MooseMesh.h.

Referenced by MooseMesh::areElemIDsIdentical(), and MooseMesh::buildElemIDInfo().

◆ _is_changed

bool MooseMesh::_is_changed
protectedinherited

true if mesh is changed (i.e. after adaptivity step)

Definition at line 1634 of file MooseMesh.h.

◆ _is_displaced

bool MooseMesh::_is_displaced
privateinherited

Whether this mesh is displaced.

Definition at line 2023 of file MooseMesh.h.

Referenced by MooseMesh::isDisplaced(), and MooseMesh::isDisplaced().

◆ _is_nemesis

bool MooseMesh::_is_nemesis
protectedinherited

◆ _is_split

const bool MooseMesh::_is_split
protectedinherited

Whether or not we are using a (pre-)split mesh (automatically DistributedMesh)

Definition at line 1750 of file MooseMesh.h.

Referenced by MooseMesh::determineUseDistributedMesh(), and MooseMesh::isSplit().

◆ _kokkos_mesh

std::unique_ptr<Moose::Kokkos::Mesh> MooseMesh::_kokkos_mesh
protectedinherited

Pointer to Kokkos mesh object.

Definition at line 1600 of file MooseMesh.h.

Referenced by MooseMesh::getKokkosMesh(), MooseMesh::getKokkosMesh(), MooseMesh::MooseMesh(), MooseMesh::MooseMesh(), and MooseMesh::update().

◆ _linear_finite_volume_dofs_cached

bool MooseMesh::_linear_finite_volume_dofs_cached = false
mutableprivateinherited

Definition at line 1790 of file MooseMesh.h.

◆ _local_node_range

std::unique_ptr<libMesh::ConstNodeRange> MooseMesh::_local_node_range
protectedinherited

Definition at line 1664 of file MooseMesh.h.

Referenced by MooseMesh::getLocalNodeRange(), and MooseMesh::meshChanged().

◆ _lower_d_boundary_blocks

std::set<SubdomainID> MooseMesh::_lower_d_boundary_blocks
privateinherited

Mesh blocks for boundary lower-d elements in different types.

Definition at line 1970 of file MooseMesh.h.

Referenced by MooseMesh::boundaryLowerDBlocks(), MooseMesh::buildLowerDMesh(), and MooseMesh::cacheInfo().

◆ _lower_d_elem_to_higher_d_elem_side

std::unordered_map<const Elem *, unsigned short int> MooseMesh::_lower_d_elem_to_higher_d_elem_side
privateinherited

◆ _lower_d_interior_blocks

std::set<SubdomainID> MooseMesh::_lower_d_interior_blocks
privateinherited

Mesh blocks for interior lower-d elements in different types.

Definition at line 1968 of file MooseMesh.h.

Referenced by MooseMesh::buildLowerDMesh(), MooseMesh::cacheInfo(), and MooseMesh::interiorLowerDBlocks().

◆ _max_h_level

unsigned int MooseMesh::_max_h_level
privateinherited

Maximum h-refinement level of all elements.

Definition at line 2055 of file MooseMesh.h.

Referenced by MooseMesh::maxHLevel(), and MooseMesh::update().

◆ _max_ids

std::vector<dof_id_type> MooseMesh::_max_ids
privateinherited

Maximum integer ID for each extra element integer.

Definition at line 2004 of file MooseMesh.h.

Referenced by MooseMesh::buildElemIDInfo(), and MooseMesh::maxElementID().

◆ _max_leaf_size

unsigned int MooseMesh::_max_leaf_size
protectedinherited

Definition at line 1732 of file MooseMesh.h.

Referenced by MooseMesh::getMaxLeafSize().

◆ _max_nodes_per_elem

unsigned int MooseMesh::_max_nodes_per_elem
privateinherited

The maximum number of nodes per element.

Definition at line 2014 of file MooseMesh.h.

Referenced by MooseMesh::computeMaxPerElemAndSide(), and MooseMesh::getMaxNodesPerElem().

◆ _max_nodes_per_side

unsigned int MooseMesh::_max_nodes_per_side
privateinherited

The maximum number of nodes per side.

Definition at line 2017 of file MooseMesh.h.

Referenced by MooseMesh::computeMaxPerElemAndSide(), and MooseMesh::getMaxNodesPerSide().

◆ _max_p_level

unsigned int MooseMesh::_max_p_level
privateinherited

Maximum p-refinement level of all elements.

Definition at line 2053 of file MooseMesh.h.

Referenced by MooseMesh::maxPLevel(), and MooseMesh::update().

◆ _max_sides_per_elem

unsigned int MooseMesh::_max_sides_per_elem
privateinherited

The maximum number of sides per element.

Definition at line 2011 of file MooseMesh.h.

Referenced by MooseMesh::computeMaxPerElemAndSide(), and MooseMesh::getMaxSidesPerElem().

◆ _mesh

std::unique_ptr<libMesh::MeshBase> MooseMesh::_mesh
protectedinherited

◆ _mesh_boundary_ids

std::set<BoundaryID> MooseMesh::_mesh_boundary_ids
protectedinherited

A set of boundary IDs currently present in the mesh.

In serial, this is equivalent to the values returned by _mesh.get_boundary_info().get_boundary_ids(). In parallel, it will contain off-processor boundary IDs as well.

Definition at line 1688 of file MooseMesh.h.

Referenced by MooseMesh::getBoundaryIDs(), MooseMesh::meshBoundaryIds(), MooseMesh::prepare(), and MooseMesh::setMeshBoundaryIDs().

◆ _mesh_displacement_variable

std::optional<std::string> MFEMMesh::_mesh_displacement_variable
protectedinherited

Holds name of variable used for mesh displacement, if set.

Definition at line 95 of file MFEMMesh.h.

Referenced by MFEMMesh::buildMesh(), MFEMMesh::getMeshDisplacementVariable(), MFEMMesh::init(), and MFEMMesh::shouldDisplace().

◆ _mesh_nodeset_ids

std::set<BoundaryID> MooseMesh::_mesh_nodeset_ids
protectedinherited

Definition at line 1690 of file MooseMesh.h.

Referenced by MooseMesh::meshNodesetIds(), and MooseMesh::prepare().

◆ _mesh_sideset_ids

std::set<BoundaryID> MooseMesh::_mesh_sideset_ids
protectedinherited

Definition at line 1689 of file MooseMesh.h.

Referenced by MooseMesh::meshSidesetIds(), and MooseMesh::prepare().

◆ _mesh_subdomains

std::set<SubdomainID> MooseMesh::_mesh_subdomains
protectedinherited

A set of subdomain IDs currently present in the mesh.

For parallel meshes, includes subdomains defined on other processors as well.

Definition at line 1680 of file MooseMesh.h.

Referenced by MooseMesh::buildLowerDMesh(), MooseMesh::cacheInfo(), MooseMesh::checkDuplicateSubdomainNames(), MooseMesh::meshSubdomains(), and MooseMesh::prepare().

◆ _metaname

const RestartableDataMapName Restartable::_metaname
privateinherited

Restartable metadata name.

Definition at line 247 of file Restartable.h.

Referenced by Restartable::registerRestartableDataOnApp().

◆ _mfem_par_mesh

std::shared_ptr<mfem::ParMesh> MFEMMesh::_mfem_par_mesh {nullptr}
protectedinherited

◆ _min_ids

std::vector<dof_id_type> MooseMesh::_min_ids
privateinherited

Minimum integer ID for each extra element integer.

Definition at line 2006 of file MooseMesh.h.

Referenced by MooseMesh::buildElemIDInfo(), and MooseMesh::minElementID().

◆ _moose_mesh_prepared

bool MooseMesh::_moose_mesh_prepared = false
protectedinherited

True if prepare has been called on the mesh.

Definition at line 1640 of file MooseMesh.h.

Referenced by MooseMesh::MooseMesh(), MooseMesh::prepare(), MooseMesh::prepared(), and MooseMesh::prepared().

◆ _name

const std::string& MooseBase::_name
protectedinherited

The name of this class.

Definition at line 381 of file MooseBase.h.

Referenced by AddFieldSplitAction::act(), AddBCAction::act(), AddConstraintAction::act(), AddControlAction::act(), AddConvergenceAction::act(), AddCorrectorAction::act(), AddDamperAction::act(), AddDGKernelAction::act(), AddDiracKernelAction::act(), AddDistributionAction::act(), AddFunctionAction::act(), AddFunctorMaterialAction::act(), AddFVBCAction::act(), AddFVGradientMethodAction::act(), AddFVInitialConditionAction::act(), AddFVInterfaceKernelAction::act(), AddFVInterpolationMethodAction::act(), AddFVKernelAction::act(), AddHDGKernelAction::act(), AddIndicatorAction::act(), AddInitialConditionAction::act(), AddInterfaceKernelAction::act(), AddKernelAction::act(), AddLinearFVBCAction::act(), AddLinearFVKernelAction::act(), AddMarkerAction::act(), AddMaterialAction::act(), AddMeshDivisionAction::act(), AddMeshGeneratorAction::act(), AddMeshModifiersAction::act(), AddMultiAppAction::act(), AddNodalKernelAction::act(), AddOutputAction::act(), AddPositionsAction::act(), AddPostprocessorAction::act(), AddReporterAction::act(), AddSamplerAction::act(), AddScalarKernelAction::act(), AddTimesAction::act(), AddTimeStepperAction::act(), AddTransferAction::act(), AddUserObjectAction::act(), AddVectorPostprocessorAction::act(), PartitionerAction::act(), ReadExecutorParamsAction::act(), SetupPreconditionerAction::act(), SetupTimeIntegratorAction::act(), AddMFEMComplexBCComponentAction::act(), AddMFEMComplexKernelComponentAction::act(), AddMFEMFESpaceAction::act(), AddMFEMFESpaceHierarchyAction::act(), AddMFEMProblemComposerAction::act(), AddMFEMSolverAction::act(), AddMFEMSubMeshAction::act(), ADPiecewiseLinearInterpolationMaterial::ADPiecewiseLinearInterpolationMaterial(), BatchMeshGeneratorAction::BatchMeshGeneratorAction(), PiecewiseLinearBase::buildInterpolation(), CombinerGenerator::CombinerGenerator(), Executor::Executor(), ExtraIDIntegralReporter::ExtraIDIntegralReporter(), MultiApp::fillPositions(), CentroidMultiApp::fillPositions(), QuadraturePointMultiApp::fillPositions(), FunctionDT::FunctionDT(), FillBetweenCurvesGenerator::generate(), FillBetweenPointVectorsGenerator::generate(), FillBetweenSidesetsGenerator::generate(), MooseBase::MooseBase(), MooseBase::name(), ReferenceResidualConvergence::nonlinearConvergenceSetup(), ParsedFunctorMaterialTempl< is_ad >::ParsedFunctorMaterialTempl(), PiecewiseBilinear::PiecewiseBilinear(), PiecewiseLinearInterpolationMaterial::PiecewiseLinearInterpolationMaterial(), PiecewiseBase::setData(), and AddVariableAction::varName().

◆ _need_delete

bool MooseMesh::_need_delete
privateinherited

Whether we need to delete remote elements after init'ing the EquationSystems.

Definition at line 1987 of file MooseMesh.h.

Referenced by MooseMesh::allowRemoteElementRemoval(), MooseMesh::needsRemoteElemDeletion(), and MooseMesh::needsRemoteElemDeletion().

◆ _need_ghost_ghosted_boundaries

bool MooseMesh::_need_ghost_ghosted_boundaries
privateinherited

A parallel mesh generator such as DistributedRectilinearMeshGenerator already make everything ready.

We do not need to gather all boundaries to every single processor. In general, we should avoid using ghostGhostedBoundaries when possible since it is not scalable

Definition at line 1999 of file MooseMesh.h.

Referenced by MooseMesh::ghostGhostedBoundaries(), and MooseMesh::needGhostGhostedBoundaries().

◆ _neighbor_subdomain_boundary_ids

std::unordered_map<SubdomainID, std::set<BoundaryID> > MooseMesh::_neighbor_subdomain_boundary_ids
privateinherited

Holds a map from neighbor subomdain ids to the boundary ids that are attached to it.

Definition at line 1965 of file MooseMesh.h.

Referenced by MooseMesh::cacheInfo(), MooseMesh::getBoundaryConnectedSecondaryBlocks(), MooseMesh::getInterfaceConnectedBlocks(), and MooseMesh::getSubdomainInterfaceBoundaryIds().

◆ _node_map

std::vector<Node *> MooseMesh::_node_map
protectedinherited

Vector of all the Nodes in the mesh for determining when to add a new point.

Definition at line 1738 of file MooseMesh.h.

Referenced by MooseMesh::addUniqueNode().

◆ _node_set_nodes

std::map<boundary_id_type, std::vector<dof_id_type> > MooseMesh::_node_set_nodes
protectedinherited

list of nodes that belongs to a specified nodeset: indexing [nodeset_id] -> [array of node ids]

Definition at line 1720 of file MooseMesh.h.

Referenced by MooseMesh::buildNodeList(), MooseMesh::freeBndNodes(), MooseMesh::getNodeList(), and MooseMesh::nodeSetNodes().

◆ _node_to_elem_map

std::unordered_map<dof_id_type, std::vector<dof_id_type> > MooseMesh::_node_to_elem_map
protectedinherited

A map of all of the current nodes to the elements that they are connected to.

Definition at line 1671 of file MooseMesh.h.

Referenced by MooseMesh::internalNodeToElemMap(), and MooseMesh::possiblyRebuildNodeToElemMap().

◆ _node_to_elem_map_built

bool MooseMesh::_node_to_elem_map_built = false
protectedinherited

Whether _node_to_elem_map has been built.

Definition at line 1674 of file MooseMesh.h.

Referenced by MooseMesh::internalNodeToElemMap(), and MooseMesh::possiblyRebuildNodeToElemMap().

◆ _paired_boundary

std::optional<std::vector<std::pair<BoundaryID, BoundaryID> > > MooseMesh::_paired_boundary
protectedinherited

A vector holding the paired boundaries for a regular orthogonal mesh.

Definition at line 1747 of file MooseMesh.h.

Referenced by MooseMesh::detectPairedSidesets(), and MooseMesh::hasDetectedPairedSidesets().

◆ _parallel_type

ParallelType MooseMesh::_parallel_type
protectedinherited

Can be set to DISTRIBUTED, REPLICATED, or DEFAULT.

Determines whether the underlying libMesh mesh is a ReplicatedMesh or DistributedMesh.

Definition at line 1586 of file MooseMesh.h.

Referenced by MooseMesh::determineUseDistributedMesh(), MooseMesh::getParallelType(), and MooseMesh::setParallelType().

◆ _parallel_type_overridden

bool MooseMesh::_parallel_type_overridden
protectedinherited

◆ _parent

const ParallelParamObject& DataFileInterface::_parent
privateinherited

◆ _pars

const InputParameters& MooseBase::_pars
protectedinherited

The object's parameters.

Definition at line 384 of file MooseBase.h.

Referenced by AddAuxKernelAction::act(), AddFVICAction::act(), AddICAction::act(), CommonOutputAction::act(), ComposeTimeStepperAction::act(), CreateProblemAction::act(), CreateProblemDefaultAction::act(), SetupDebugAction::act(), SetupMeshAction::act(), AddMFEMComplexBCComponentAction::act(), AddMFEMComplexKernelComponentAction::act(), FunctorMaterial::addFunctorPropertyByBlocks(), BreakMeshByBlockGenerator::BreakMeshByBlockGenerator(), PNGOutput::calculateRescalingValues(), MooseBase::callMooseError(), MooseBase::connectControllableParams(), Console::Console(), MooseApp::copyInputs(), MaterialBase::declareADProperty(), Moose::Kokkos::MaterialBase::declareKokkosOnDemandProperty(), Moose::Kokkos::MaterialBase::declareKokkosProperty(), MaterialBase::declareProperty(), FEProblemSolve::FEProblemSolve(), FileMeshGenerator::generate(), MooseBase::getBase(), MooseBase::getCheckedPointerParam(), MaterialBase::getGenericZeroMaterialProperty(), MooseBase::getHitNode(), MeshGenerator::getMeshGeneratorNameFromParam(), MeshGenerator::getMeshGeneratorNamesFromParam(), MooseBase::getParam(), MooseBase::getParam(), MooseBase::hasBase(), MeshGenerator::hasGenerateCSG(), MeshGenerator::hasGenerateData(), AddVariableAction::init(), AdvancedOutput::initExecutionTypes(), EigenProblemSolve::initialSetup(), Console::initialSetup(), MooseBase::isParamSetByUser(), MooseBase::isParamValid(), MultiApp::keepSolutionDuringRestore(), MooseBase::messagePrefix(), MooseBase::MooseBase(), MultiSystemSolveObject::MultiSystemSolveObject(), MooseApp::outputMachineReadableData(), MooseBase::paramError(), MooseBase::parameters(), MooseBase::paramInfo(), MooseBase::paramWarning(), MooseMesh::prepare(), MooseBase::queryParam(), MooseMesh::setCoordSystem(), MooseMesh::setPartitionerHelper(), SetupMeshAction::setupMesh(), TransientBase::setupTimeIntegrator(), MooseApp::showInputs(), and MooseBase::uniqueName().

◆ _partitioner_name

MooseEnum MooseMesh::_partitioner_name
protectedinherited

The partitioner used on this mesh.

Definition at line 1604 of file MooseMesh.h.

Referenced by MooseMesh::partitionerName(), MooseMesh::setCustomPartitioner(), and MooseMesh::setPartitionerHelper().

◆ _partitioner_overridden

bool MooseMesh::_partitioner_overridden
protectedinherited

◆ _patch_size

unsigned int MooseMesh::_patch_size
protectedinherited

The number of nodes to consider in the NearestNode neighborhood.

Definition at line 1726 of file MooseMesh.h.

Referenced by MooseMesh::getPatchSize().

◆ _patch_update_strategy

Moose::PatchUpdateType MooseMesh::_patch_update_strategy
protectedinherited

The patch update strategy.

Definition at line 1735 of file MooseMesh.h.

Referenced by MooseMesh::getPatchUpdateStrategy(), MooseMesh::MooseMesh(), and MooseMesh::setPatchUpdateStrategy().

◆ _periodic_dim

std::map<std::pair<unsigned int, unsigned int>, std::array<bool, 3> > MooseMesh::_periodic_dim
privateinherited

A map from (system number, vector number) to which dimensions are periodic in a regular orthogonal mesh.

This data structure is populated by addPeriodicVariable.

Definition at line 1798 of file MooseMesh.h.

Referenced by MooseMesh::addPeriodicVariable(), and MooseMesh::queryPeriodicDimensions().

◆ _pg_moose_app

MooseApp& PerfGraphInterface::_pg_moose_app
protectedinherited

The MooseApp that owns the PerfGraph.

Definition at line 135 of file PerfGraphInterface.h.

Referenced by PerfGraphInterface::perfGraph().

◆ _prefix

const std::string PerfGraphInterface::_prefix
protectedinherited

A prefix to use for all sections.

Definition at line 138 of file PerfGraphInterface.h.

Referenced by PerfGraphInterface::timedSectionName().

◆ _provided_coord_blocks

std::vector<SubdomainName> MooseMesh::_provided_coord_blocks
privateinherited

Set for holding user-provided coordinate system type block names.

Definition at line 2048 of file MooseMesh.h.

Referenced by MooseMesh::MooseMesh(), MooseMesh::prepare(), and MooseMesh::setCoordSystem().

◆ _quadrature_nodes

std::map<dof_id_type, Node *> MooseMesh::_quadrature_nodes
protectedinherited

◆ _refined_elements

std::unique_ptr<ConstElemPointerRange> MooseMesh::_refined_elements
protectedinherited

The elements that were just refined.

Definition at line 1643 of file MooseMesh.h.

Referenced by MooseMesh::cacheChangedLists(), and MooseMesh::refinedElementRange().

◆ _regular_orthogonal_mesh

bool MooseMesh::_regular_orthogonal_mesh
protectedinherited

Boolean indicating whether this mesh was detected to be regular and orthogonal.

Definition at line 1741 of file MooseMesh.h.

Referenced by MooseMesh::addPeriodicVariable(), MooseMesh::detectOrthogonalDimRanges(), GeneratedMesh::GeneratedMesh(), MooseMesh::getPairedBoundaryMapping(), MooseMesh::isRegularOrthogonal(), and MooseMesh::prepared().

◆ _relationship_managers

std::vector<std::shared_ptr<RelationshipManager> > MooseMesh::_relationship_managers
protectedinherited

The list of active geometric relationship managers (bound to the underlying MeshBase object).

Definition at line 1579 of file MooseMesh.h.

◆ _restartable_app

MooseApp& Restartable::_restartable_app
protectedinherited

Reference to the application.

Definition at line 234 of file Restartable.h.

Referenced by Restartable::registerRestartableDataOnApp(), and Restartable::registerRestartableNameWithFilterOnApp().

◆ _restartable_name

std::string Restartable::_restartable_name
privateinherited

The name of the object.

Definition at line 250 of file Restartable.h.

Referenced by Restartable::declareRestartableDataWithObjectNameWithContext(), and Restartable::restartableName().

◆ _restartable_read_only

const bool Restartable::_restartable_read_only
protectedinherited

Flag for toggling read only status (see ReporterData)

Definition at line 243 of file Restartable.h.

Referenced by Restartable::registerRestartableDataOnApp().

◆ _restartable_system_name

const std::string Restartable::_restartable_system_name
protectedinherited

The system name this object is in.

Definition at line 237 of file Restartable.h.

Referenced by Restartable::restartableName().

◆ _restartable_tid

const THREAD_ID Restartable::_restartable_tid
protectedinherited

The thread ID for this object.

Definition at line 240 of file Restartable.h.

Referenced by Restartable::declareRestartableDataHelper().

◆ _rz_coord_axis

unsigned int MooseMesh::_rz_coord_axis
privateinherited

Storage for RZ axis selection.

Definition at line 2035 of file MooseMesh.h.

Referenced by MooseMesh::getAxisymmetricRadialCoord(), MooseMesh::setAxisymmetricCoordAxis(), and MooseMesh::setCoordData().

◆ _semilocal_node_list

std::set<Node *> MooseMesh::_semilocal_node_list
protectedinherited

Used for generating the semilocal node range.

Definition at line 1656 of file MooseMesh.h.

Referenced by MooseMesh::isSemiLocal(), and MooseMesh::updateActiveSemiLocalNodeRange().

◆ _si_moose_base

const MooseBase& SolutionInvalidInterface::_si_moose_base
privateinherited

◆ _si_problem

const FEProblemBase* SolutionInvalidInterface::_si_problem
privateinherited

A pointer to FEProblem base.

Definition at line 114 of file SolutionInvalidInterface.h.

Referenced by SolutionInvalidInterface::flagInvalidSolutionInternal().

◆ _skip_deletion_repartition_after_refine

bool MooseMesh::_skip_deletion_repartition_after_refine
protectedinherited

Whether or not skip remote deletion and repartition after uniform refinements.

Definition at line 1631 of file MooseMesh.h.

Referenced by MooseMesh::setUniformRefineLevel(), and MooseMesh::skipDeletionRepartitionAfterRefine().

◆ _skip_refine_when_use_split

bool MooseMesh::_skip_refine_when_use_split
protectedinherited

Whether or not to skip uniform refinements when using a pre-split mesh.

Definition at line 1628 of file MooseMesh.h.

Referenced by MooseMesh::skipRefineWhenUseSplit().

◆ _sub_to_data

std::unordered_map<SubdomainID, SubdomainData> MooseMesh::_sub_to_data
privateinherited

Holds a map from subdomain ids to associated data.

Definition at line 1962 of file MooseMesh.h.

Referenced by MooseMesh::cacheInfo(), MooseMesh::getBlockConnectedBlocks(), MooseMesh::getBoundaryConnectedBlocks(), and MooseMesh::getSubdomainBoundaryIds().

◆ _subdomain_id_to_rz_coord_axis

std::unordered_map<SubdomainID, std::pair<Point, RealVectorValue> > MooseMesh::_subdomain_id_to_rz_coord_axis
privateinherited

◆ _type

const std::string& MooseBase::_type
protectedinherited

◆ _uniform_refine_level

unsigned int MooseMesh::_uniform_refine_level
protectedinherited

The level of uniform refinement requested (set to zero if AMR is disabled)

Definition at line 1625 of file MooseMesh.h.

Referenced by MooseMesh::setUniformRefineLevel(), and MooseMesh::uniformRefineLevel().

◆ _use_distributed_mesh

bool MooseMesh::_use_distributed_mesh
protectedinherited

False by default.

Final value is determined by several factors including the 'distribution' setting in the input file, and whether or not the Mesh file is a Nemesis file.

Definition at line 1591 of file MooseMesh.h.

Referenced by MooseMesh::buildMeshBaseObject(), MooseMesh::buildTypedMesh(), MooseMesh::detectPairedSidesets(), MooseMesh::determineUseDistributedMesh(), MooseMesh::errorIfDistributedMesh(), MooseMesh::ghostGhostedBoundaries(), MooseMesh::init(), MooseMesh::isDistributedMesh(), and MooseMesh::setPartitionerHelper().

◆ app_param

const std::string MooseBase::app_param = "_moose_app"
staticinherited

◆ kokkos_object_param

const std::string MooseBase::kokkos_object_param = "_kokkos_object"
staticinherited

The name of the parameter that indicates an object is a Kokkos functor.

Definition at line 64 of file MooseBase.h.

Referenced by InputParameters::isKokkosObject().

◆ moose_base_param

const std::string MooseBase::moose_base_param = "_moose_base"
staticinherited

The name of the parameter that contains the moose system base.

Definition at line 61 of file MooseBase.h.

Referenced by InputParameters::getBase(), InputParameters::hasBase(), and InputParameters::registerBase().

◆ name_param

const std::string MooseBase::name_param = "_object_name"
staticinherited

◆ periodic_dim_default

const std::array< bool, 3 > MooseMesh::periodic_dim_default {false, false, false}
staticinherited

Default value for the automatically detected paired boundaries for each unit dimension, in which the value for each unit dimension is false (not detected).

Definition at line 80 of file MooseMesh.h.

Referenced by MooseMesh::addPeriodicVariable(), MooseMesh::detectPairedSidesets(), and MooseMesh::queryPeriodicDimensions().

◆ type_param

const std::string MooseBase::type_param = "_type"
staticinherited

◆ unique_name_param

const std::string MooseBase::unique_name_param = "_unique_name"
staticinherited

The name of the parameter that contains the unique object name.

Definition at line 57 of file MooseBase.h.

Referenced by InputParameterWarehouse::addInputParameters(), AppFactory::create(), InputParameterWarehouse::removeInputParameters(), MooseBase::uniqueName(), and MooseBase::validParams().

◆ usingCombinedWarningSolutionWarnings

MooseObject::usingCombinedWarningSolutionWarnings
inherited

Definition at line 67 of file MooseObject.h.


The documentation for this class was generated from the following files: