libMesh
unstructured_mesh.h
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2025 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 #ifndef LIBMESH_UNSTRUCTURED_MESH_H
21 #define LIBMESH_UNSTRUCTURED_MESH_H
22 
23 // Local Includes
24 #include "libmesh/mesh_base.h"
25 
26 // C++ Includes
27 #include <cstddef>
28 
29 namespace libMesh
30 {
31 
48 class UnstructuredMesh : public MeshBase
49 {
50 public:
51 
57  explicit
59  unsigned char dim=1);
60 
64  UnstructuredMesh(const UnstructuredMesh &) = default;
65 
70  UnstructuredMesh(const MeshBase &);
71 
76 
80  UnstructuredMesh & operator= (const UnstructuredMesh &) = delete;
81 
86  UnstructuredMesh & operator= (UnstructuredMesh && other_mesh) = default;
87 
88  virtual MeshBase & assign(MeshBase && other_mesh) override = 0;
89 
93  virtual ~UnstructuredMesh();
94 
109  virtual void read (const std::string & name,
110  void * mesh_data=nullptr,
111  bool skip_renumber_nodes_and_elements=false,
112  bool skip_find_neighbors=false) override;
117  virtual void write (const std::string & name) const override;
118 
123  void write (const std::string & name,
124  const std::vector<Number> & values,
125  const std::vector<std::string> & variable_names) const;
126 
133  virtual void all_first_order () override;
134 
146  virtual void all_second_order_range (const SimpleRange<element_iterator> & range,
147  const bool full_ordered=true) override;
148 
156  virtual void all_complete_order_range (const SimpleRange<element_iterator> & range) override;
157 
164  void create_pid_mesh (UnstructuredMesh & pid_mesh,
165  const processor_id_type pid) const;
166 
172  void create_submesh (UnstructuredMesh & new_mesh,
173  const const_element_iterator & it,
174  const const_element_iterator & it_end) const;
175 
221  std::size_t stitch_meshes (const MeshBase & other_mesh,
222  boundary_id_type this_mesh_boundary,
223  boundary_id_type other_mesh_boundary,
224  Real tol=TOLERANCE,
225  bool clear_stitched_boundary_ids=false,
226  bool verbose=true,
227  bool use_binary_search=true,
228  bool enforce_all_nodes_match_on_boundaries=false,
229  bool merge_boundary_nodes_all_or_nothing=false,
230  bool remap_subdomain_ids=false);
231 
235  std::size_t stitch_surfaces (boundary_id_type boundary_id_1,
236  boundary_id_type boundary_id_2,
237  Real tol=TOLERANCE,
238  bool clear_stitched_boundary_ids=false,
239  bool verbose=true,
240  bool use_binary_search=true,
241  bool enforce_all_nodes_match_on_boundaries=false,
242  bool merge_boundary_nodes_all_or_nothing=false);
243 
258  virtual void copy_nodes_and_elements (const MeshBase & other_mesh,
259  const bool skip_find_neighbors = false,
260  dof_id_type element_id_offset = 0,
261  dof_id_type node_id_offset = 0,
262  unique_id_type unique_id_offset = 0,
263  std::unordered_map<subdomain_id_type, subdomain_id_type> *
264  id_remapping = nullptr);
265 
269  virtual void move_nodes_and_elements(MeshBase && other_mesh) = 0;
270 
271 
275  virtual void find_neighbors (const bool reset_remote_elements = false,
276  const bool reset_current_list = true) override;
277 
278 #ifdef LIBMESH_ENABLE_AMR
279 
284  virtual bool contract () override;
285 #endif // #ifdef LIBMESH_ENABLE_AMR
286 
287 private:
288 
293  std::size_t stitching_helper (const MeshBase * other_mesh,
294  boundary_id_type boundary_id_1,
295  boundary_id_type boundary_id_2,
296  Real tol,
297  bool clear_stitched_boundary_ids,
298  bool verbose,
299  bool use_binary_search,
300  bool enforce_all_nodes_match_on_boundaries,
301  bool skip_find_neighbors,
302  bool merge_boundary_nodes_all_or_nothing,
303  bool remap_subdomain_ids);
304 };
305 
306 
307 } // namespace libMesh
308 
309 #endif // LIBMESH_UNSTRUCTURED_MESH_H
std::string name(const ElemQuality q)
This function returns a string containing some name for q.
Definition: elem_quality.C:42
UnstructuredMesh & operator=(const UnstructuredMesh &)=delete
Copy assignment is not allowed.
The SimpleRange templated class is intended to make it easy to construct ranges from pairs of iterato...
Definition: simple_range.h:36
std::size_t stitch_surfaces(boundary_id_type boundary_id_1, boundary_id_type boundary_id_2, Real tol=TOLERANCE, bool clear_stitched_boundary_ids=false, bool verbose=true, bool use_binary_search=true, bool enforce_all_nodes_match_on_boundaries=false, bool merge_boundary_nodes_all_or_nothing=false)
Similar to stitch_meshes, except that we stitch two adjacent surfaces within this mesh...
virtual void all_complete_order_range(const SimpleRange< element_iterator > &range) override
Converts a (conforming, non-refined) mesh with linear elements into a mesh with "complete" order elem...
virtual void copy_nodes_and_elements(const MeshBase &other_mesh, const bool skip_find_neighbors=false, dof_id_type element_id_offset=0, dof_id_type node_id_offset=0, unique_id_type unique_id_offset=0, std::unordered_map< subdomain_id_type, subdomain_id_type > *id_remapping=nullptr)
Deep copy of nodes and elements from another mesh object (used by subclass copy constructors and by m...
The definition of the const_element_iterator struct.
Definition: mesh_base.h:2216
static constexpr Real TOLERANCE
unsigned int dim
virtual void all_first_order() override
Converts a mesh with higher-order elements into a mesh with linear elements.
virtual void find_neighbors(const bool reset_remote_elements=false, const bool reset_current_list=true) override
Other functions from MeshBase requiring re-definition.
The libMesh namespace provides an interface to certain functionality in the library.
void create_pid_mesh(UnstructuredMesh &pid_mesh, const processor_id_type pid) const
Generates a new mesh containing all the elements which are assigned to processor pid.
virtual void all_second_order_range(const SimpleRange< element_iterator > &range, const bool full_ordered=true) override
Converts a (conforming, non-refined) mesh with linear elements into a mesh with second-order elements...
uint8_t processor_id_type
Definition: id_types.h:104
This is the MeshBase class.
Definition: mesh_base.h:75
virtual bool contract() override
Delete subactive (i.e.
std::size_t stitching_helper(const MeshBase *other_mesh, boundary_id_type boundary_id_1, boundary_id_type boundary_id_2, Real tol, bool clear_stitched_boundary_ids, bool verbose, bool use_binary_search, bool enforce_all_nodes_match_on_boundaries, bool skip_find_neighbors, bool merge_boundary_nodes_all_or_nothing, bool remap_subdomain_ids)
Helper function for stitch_meshes and stitch_surfaces that does the mesh stitching.
int8_t boundary_id_type
Definition: id_types.h:51
std::size_t stitch_meshes(const MeshBase &other_mesh, boundary_id_type this_mesh_boundary, boundary_id_type other_mesh_boundary, Real tol=TOLERANCE, bool clear_stitched_boundary_ids=false, bool verbose=true, bool use_binary_search=true, bool enforce_all_nodes_match_on_boundaries=false, bool merge_boundary_nodes_all_or_nothing=false, bool remap_subdomain_ids=false)
Stitch other_mesh to this mesh so that this mesh is the union of the two meshes.
virtual void move_nodes_and_elements(MeshBase &&other_mesh)=0
Move node and elements from other_mesh to this mesh.
The UnstructuredMesh class is derived from the MeshBase class.
UnstructuredMesh(const Parallel::Communicator &comm_in, unsigned char dim=1)
Constructor.
virtual MeshBase & assign(MeshBase &&other_mesh) override=0
Shim to allow operator = (&&) to behave like a virtual function without having to be one...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual ~UnstructuredMesh()
Destructor.
virtual void read(const std::string &name, void *mesh_data=nullptr, bool skip_renumber_nodes_and_elements=false, bool skip_find_neighbors=false) override
Reads the file specified by name.
uint8_t unique_id_type
Definition: id_types.h:86
virtual void write(const std::string &name) const override
Write the file specified by name.
void create_submesh(UnstructuredMesh &new_mesh, const const_element_iterator &it, const const_element_iterator &it_end) const
Constructs a mesh called "new_mesh" from the current mesh by iterating over the elements between it a...
uint8_t dof_id_type
Definition: id_types.h:67