Flow123d  JS_before_hm-2139-g05f84414c
mesh.h
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file mesh.h
15  * @brief
16  */
17 
18 #ifndef MAKE_MESH_H
19 #define MAKE_MESH_H
20 
21 #include <mpi.h> // for MPI_Comm, MPI_COMM_WORLD
22 
23 //#include <boost/range.hpp>
24 #include <memory> // for shared_ptr
25 #include <string> // for string
26 #include <vector> // for vector, vector<>::iterator
27 #include "input/accessors.hh" // for Record, Array (ptr only)
28 #include "input/accessors_impl.hh" // for Record::val
29 #include "input/storage.hh" // for ExcStorageTypeMismatch
30 #include "input/type_record.hh" // for Record (ptr only), Recor...
31 #include "mesh/region.hh" // for RegionDB, RegionDB::MapE...
32 #include "mesh/elements.h"
33 #include "mesh/bounding_box.hh" // for BoundingBox
34 #include "mesh/range_wrapper.hh"
35 #include "mesh/mesh_data.hh"
38 #include "system/index_types.hh" // for LongIdx
39 #include "system/exceptions.hh" // for operator<<, ExcStream, EI
40 #include "system/file_path.hh" // for FilePath
41 #include "system/armor.hh"
42 
43 
44 class BIHTree;
45 class Distribution;
46 class Partitioning;
48 class Neighbour;
49 class SideIter;
50 class Boundary;
51 class Edge;
52 class BCMesh;
53 class DuplicateNodes;
54 template <int spacedim> class ElementAccessor;
55 template <int spacedim> class NodeAccessor;
56 
57 
58 
59 #define ELM 0
60 #define BC 1
61 #define NODE 2
62 
63 /**
64  * This parameter limits volume of elements from below.
65  */
66 #define MESH_CRITICAL_VOLUME 1.0E-12
67 
69 public:
71 };
72 
73 
74 /** Auxiliary structure that keeps the separate
75  * element maps (bulk and boundary) for reading mesh and elementwise data.
76  * The mapping is considered from the source mesh (reading) to the target mesh (computation).
77  * Used by @p check_compatible_mesh().
78  */
82 
84 
85  EquivalentMeshMap(unsigned int bulk_size, unsigned int boundary_size, LongIdx def_val)
86  : bulk(bulk_size, def_val),
87  boundary(boundary_size, def_val)
88  {}
89 
90  bool empty()
91  { return bulk.empty() && boundary.empty(); }
92 };
93 
94 
95 /// Base class for Mesh and BCMesh.
96 class MeshBase {
97 public:
98 
99  TYPEDEF_ERR_INFO( EI_ElemId, int);
100  TYPEDEF_ERR_INFO( EI_ElemIdOther, int);
101 
102  DECLARE_EXCEPTION(ExcTooMatchingIds,
103  << "Mesh: Duplicate dim-join lower dim elements: " << EI_ElemId::val << ", " << EI_ElemIdOther::val << ".\n" );
104 
105  static const unsigned int undef_idx=-1;
106 
107  MeshBase();
108 
109  virtual ~MeshBase();
110 
111  inline unsigned int n_elements() const
112  { return element_vec_.size(); }
113 
114  inline unsigned int n_edges() const
115  { return edges.size(); }
116 
117  unsigned int n_vb_neighbours() const;
118 
119  inline Distribution *get_el_ds() const
120  { return el_ds; }
121 
122  inline LongIdx *get_el_4_loc() const
123  { return el_4_loc; }
124 
125  inline LongIdx *get_row_4_el() const
126  { return row_4_el; }
127 
128  const Element &element(unsigned idx) const
129  { return element_vec_[idx]; }
130 
131  /// Return edge with given index.
132  Edge edge(uint edge_idx) const;
133 
134  /// Return neighbour with given index.
135  const Neighbour &vb_neighbour(unsigned int nb) const;
136 
137  /// Return element id (in GMSH file) of element of given position in element vector.
138  int find_elem_id(unsigned int pos) const
139  { return element_ids_[pos]; }
140 
141  /**
142  * Returns maximal number of sides of one edge, which connects elements of dimension @p dim.
143  * @param dim Dimension of elements sharing the edge.
144  */
145  unsigned int max_edge_sides(unsigned int dim) const { return max_edge_sides_[dim-1]; }
146 
148  { return duplicate_nodes_; }
149 
150  /**
151  * Returns nodes_elements vector, if doesn't exist creates its.
152  */
154 
155  /// Return node id (in GMSH file) of node of given position in node vector.
156  inline int find_node_id(unsigned int pos) const
157  {
158  return (*node_ids_)[pos];
159  }
160 
161  /// Check if given index is in element_vec_
162  void check_element_size(unsigned int elem_idx) const;
163 
164  const std::vector<unsigned int> &get_side_nodes(unsigned int dim, unsigned int side) const
165  { return side_nodes[dim][side]; }
166 
167  inline unsigned int n_nodes() const {
168  return nodes_->size();
169  }
170 
171  inline const RegionDB &region_db() const {
172  return *region_db_;
173  }
174 
175  /// Create and return NodeAccessor to node of given idx
176  NodeAccessor<3> node(unsigned int idx) const;
177 
178  /// Create and return ElementAccessor to element of given idx
179  ElementAccessor<3> element_accessor(unsigned int idx) const;
180 
181 
182  // TODO: have also private non-const accessors and ranges
183 
184  /// Returns range of mesh elements
186 
187  /// Returns range of nodes
189 
190  /// Return range of edges.
191  Range<Edge> edge_range() const;
192 
193 
194 
195  virtual Boundary boundary(uint edge_idx) const = 0;
196  virtual BCMesh *bc_mesh() const = 0;
197 
198 
199  /**
200  * Returns pointer to partitioning object. Partitioning is created during setup_topology.
201  */
202  virtual Partitioning *get_part() = 0;
203  virtual const LongIdx *get_local_part() = 0;
204 
205  /*
206  * Check if nodes and elements are compatible with \p mesh.
207  */
208  virtual std::shared_ptr<EquivalentMeshMap> check_compatible_mesh( Mesh & input_mesh ) = 0;
209 
210  /**
211  * Find intersection of element lists given by Mesh::node_elements_ for elements givne by @p nodes_list parameter.
212  * The result is placed into vector @p intersection_element_list. If the @p node_list is empty, and empty intersection is
213  * returned.
214  */
215  void intersect_element_lists(vector<unsigned int> const &nodes_list, vector<unsigned int> &intersection_element_list);
216 
217  /// For element of given elem_id returns index in element_vec_ or (-1) if element doesn't exist.
218  inline int elem_index(int elem_id) const;
219 
220  /// Initialize element_vec_, set size and reset counters of boundary and bulk elements.
221  void init_element_vector(unsigned int size);
222 
223  /// Initialize node_vec_, set size
224  void init_node_vector(unsigned int size);
225 
226  /// Return permutation vector of nodes
228  { return node_permutation_; }
229 
230  /// Return permutation vector of elements
232  { return elem_permutation_; }
233 
234 
235  /// For each node the vector contains a list of elements that use this node
237 
238  // Temporary solution for numbering of nodes on sides.
239  // The data are defined in RefElement<dim>::side_nodes,
240  // Mesh::side_nodes can be removed as soon as Element
241  // is templated by dimension.
242  //
243  // side_nodes[dim][elm_side_idx][side_node_idx]
244  // for every side dimension D = 0 .. 2
245  // for every element side 0 .. D+1
246  // for every side node 0 .. D
247  // index into element node array
249 
250 protected:
251 
252  /**
253  * Permute nodes of individual elements so that all elements have same edge orientations and aligned sides have same order of their nodes
254  * Canonical edge orientation in elements and faces is from nodes of lower local index to higher local index.
255  *
256  * Algorithm detals:
257  * 1. Orient all edges from lowe global node id to higher node id, fictional step. (substantial is orientation of yet non-oriented edges of a node in direction out of the node.
258  * Can be proven (!?) that this prevents edge cycles of the length 3 (faces with cyclic edges).
259  * 2. Having all faces non-cyclic there exists a permutation of any element to the reference element.
260  * Pass through the elements. Sort nodes by global ID.
261  */
262  void canonical_faces();
263 
264  /**
265  * Create element lists for nodes in Mesh::nodes_elements.
266  */
268 
269  /// Adds element to mesh data structures (element_vec_, element_ids_), returns pointer to this element.
270  Element * add_element_to_vector(int id, bool is_boundary = false);
271 
272  /**
273  * Remove elements with dimension not equal to @p dim from @p element_list. Index of the first element of dimension @p dim-1,
274  * is returned in @p element_idx. If no such element is found the method returns false, if one such element is found the method returns true,
275  * if more elements are found we report an user input error.
276  */
277  bool find_lower_dim_element(vector<unsigned int> &element_list, unsigned int dim, unsigned int &element_idx);
278 
279  /**
280  * Returns true if side @p si has same nodes as in the list @p side_nodes.
281  */
283 
284  /**
285  * Vector of elements of the mesh.
286  *
287  * Store all elements of the mesh in order bulk elements - boundary elements
288  */
290 
291  /// Maps element ids to indexes into vector element_vec_
293 
294  /// Vector of MH edges, this should not be part of the geometrical mesh
296 
297  /// Vector of compatible neighbourings.
299 
300  /// Maximal number of sides per one edge in the actual mesh (set in make_neighbours_and_edges()).
301  unsigned int max_edge_sides_[3];
302 
303  /**
304  * Vector of nodes of the mesh.
305  */
306  shared_ptr<Armor::Array<double>> nodes_;
307 
308  /// Maps node ids to indexes into vector node_vec_
309  shared_ptr<BidirectionalMap<int>> node_ids_;
310 
311  /// Vector of node permutations of optimized mesh (see class MeshOptimizer)
313 
314  /// Vector of element permutations of optimized mesh (see class MeshOptimizer)
316 
317 
318  ///
319  std::array<std::array<uint, 4>, 64> element_nodes_original_;
320 
321 
322  /// Index set assigning to global element index the local index used in parallel vectors.
324  /// Index set assigning to local element index its global index.
326  /// Parallel distribution of elements.
328 
329 
331 
332  /**
333  * Database of regions (both bulk and boundary) of the mesh. Regions are logical parts of the
334  * domain that allows setting of different data and boundary conditions on them.
335  */
336  std::shared_ptr<RegionDB> region_db_;
337 
338 
339  friend class Edge;
340  // friend class Side;
341  // friend class RegionSetBase;
342  friend class Element;
343  // friend class BIHTree;
344  // friend class Boundary;
345  // friend class BCMesh;
346  template <int spacedim> friend class ElementAccessor;
347  template <int spacedim> friend class NodeAccessor;
348 
349 };
350 
351 //=============================================================================
352 // STRUCTURE OF THE MESH
353 //=============================================================================
354 
355 class Mesh : public MeshBase {
356 public:
357  TYPEDEF_ERR_INFO( EI_ElemLast, int);
358  TYPEDEF_ERR_INFO( EI_ElemNew, int);
359  TYPEDEF_ERR_INFO( EI_RegLast, std::string);
360  TYPEDEF_ERR_INFO( EI_RegNew, std::string);
361  TYPEDEF_ERR_INFO( EI_Region, std::string);
362  TYPEDEF_ERR_INFO( EI_RegIdx, unsigned int);
363  TYPEDEF_ERR_INFO( EI_Dim, unsigned int);
364  TYPEDEF_ERR_INFO( EI_DimOther, unsigned int);
365  TYPEDEF_ERR_INFO( EI_Quality, double);
366 
367 
368  DECLARE_EXCEPTION(ExcDuplicateBoundary,
369  << "Duplicate boundary elements! \n"
370  << "Element id: " << EI_ElemLast::val << " on region name: " << EI_RegLast::val << "\n"
371  << "Element id: " << EI_ElemNew::val << " on region name: " << EI_RegNew::val << "\n");
372  DECLARE_EXCEPTION(ExcElmWrongOrder,
373  << "Element IDs in non-increasing order, ID: " << EI_ElemId::val << "\n");
374  DECLARE_EXCEPTION(ExcRegionElmDiffDim,
375  << "User defined region " << EI_Region::qval << " (id " << EI_RegIdx::val
376  << ") by 'From_Elements' cannot have elements of different dimensions.\n"
377  << "Thrown due to: dim " << EI_Dim::val << " neq dim " << EI_DimOther::val << " (ele id " << EI_ElemId::val << ").\n"
378  << "Split elements by dim, create separate regions and then possibly use Union.\n" );
379  DECLARE_EXCEPTION(ExcBadElement,
380  << "Extremely bad quality element ID=" << EI_ElemId::val << ",(" << EI_Quality::val << "<4*epsilon).\n");
381  DECLARE_EXCEPTION(ExcBdrElemMatchRegular,
382  << "Boundary element (id: " << EI_ElemId::val << ") match a regular element (id: " << EI_ElemIdOther::val << ") of lower dimension.\n" );
383 
384 
385  /**
386  * \brief Types of search algorithm for finding intersection candidates.
387  */
388  typedef enum IntersectionSearch {
390  BIHonly = 2,
393 
394  /**
395  * \brief The definition of input record for selection of variant of file format
396  */
398 
399  static const Input::Type::Record & get_input_type();
400 
401 
402  /** Labels for coordinate indexes in arma::vec3 representing vectors and points.*/
403  enum {x_coord=0, y_coord=1, z_coord=2};
404 
405  /**
406  * Empty constructor.
407  *
408  * Use only for unit tests!!!
409  */
410  Mesh();
411  /**
412  * Constructor from an input record.
413  * Do not process input record. That is done in init_from_input.
414  */
415  Mesh(Input::Record in_record, MPI_Comm com = MPI_COMM_WORLD);
416 
417  Mesh(Mesh &other);
418 
419  /// Destructor.
420  ~Mesh() override;
421 
422  inline unsigned int n_boundaries() const {
423  return boundary_.size();
424  }
425 
426  Boundary boundary(uint edge_idx) const override;
427 
428  unsigned int n_corners();
429 
430  Partitioning *get_part() override;
431 
432  const LongIdx *get_local_part() override;
433 
435  { return node_ds_; }
436 
438  { return node_4_loc_; }
439 
440  unsigned int n_local_nodes() const
441  { return n_local_nodes_; }
442 
443  /**
444  * Returns MPI communicator of the mesh.
445  */
446  inline MPI_Comm get_comm() const { return comm_; }
447 
448 
450 
451  unsigned int n_sides() const;
452 
453  /**
454  * Reads mesh from stream.
455  *
456  * Method is especially used in unit tests.
457  */
458  void read_gmsh_from_stream(istream &in);
459  /**
460  * Reads input record, creates regions, read the mesh, setup topology. creates region sets.
461  */
462  void init_from_input();
463 
464  /**
465  * Initialize all mesh structures from raw information about nodes and elements (including boundary elements).
466  * Namely: create remaining boundary elements and Boundary objects, find edges and compatible neighborings.
467  */
468  void setup_topology();
469 
470  /**
471  * Returns vector of ID numbers of elements, either bulk or bc elemnts.
472  */
473  void elements_id_maps( vector<LongIdx> & bulk_elements_id, vector<LongIdx> & boundary_elements_id) const;
474 
475  /*
476  * Check if nodes and elements are compatible with continuous \p input_mesh.
477  *
478  * Call this method on computational mesh.
479  * @param input_mesh data mesh of input fields
480  * @return vector that holds mapping between eleemnts of data and computational meshes
481  * for every element in computational mesh hold idx of equivalent element in input mesh.
482  * If element doesn't exist in input mesh value is set to undef_idx.
483  * If meshes are not compatible returns empty vector.
484  */
485  virtual std::shared_ptr<EquivalentMeshMap> check_compatible_mesh(Mesh & input_mesh);
486 
487  /**
488  * Reads elements and their affiliation to regions and region sets defined by user in input file
489  * Format of input record is defined in method RegionSetBase::get_input_type()
490  *
491  * @param region_list Array input AbstractRecords which define regions, region sets and elements
492  */
493  void read_regions_from_input(Input::Array region_list);
494 
495 
496  /// Vector of boundary sides where is prescribed boundary condition.
497  /// TODO: apply all boundary conditions in the main assembling cycle over elements and remove this Vector.
499 
500  //flow::VectorId<int> bcd_group_id; // gives a index of group for an id
501 
502  /**
503  * Vector of individual intersections of two elements.
504  * This is enough for local mortar.
505  */
506  std::shared_ptr<MixedMeshIntersections> intersections;
507 
508  /**
509  * For every element El we have vector of indices into @var intersections array for every intersection in which El is master element.
510  * This is necessary for true mortar.
511  */
513 
514 
515  int n_insides; // # of internal sides
516  int n_exsides; // # of external sides
517  mutable int n_sides_; // total number of sides (should be easy to count when we have separated dimensions
518 
519 
520  /**
521  * Check usage of regions, set regions to elements defined by user, close RegionDB
522  */
523  void check_and_finish();
524 
525  /// Compute bounding boxes of elements contained in mesh.
527 
528  /// Getter for BIH. Creates and compute BIH at first call.
529  const BIHTree &get_bih_tree();\
530 
531  /// Add new node of given id and coordinates to mesh
532  void add_node(unsigned int node_id, arma::vec3 coords);
533 
534  /// Add new element of given id to mesh
535  void add_element(unsigned int elm_id, unsigned int dim, unsigned int region_id, unsigned int partition_id,
536  std::vector<unsigned int> node_ids);
537 
538  /// Add new node of given id and coordinates to mesh
539  void add_physical_name(unsigned int dim, unsigned int id, std::string name);
540 
541  /// Return FilePath object representing "mesh_file" input key
542  inline FilePath mesh_file() {
543  return in_record_.val<FilePath>("mesh_file");
544  }
545 
546  /// Getter for input type selection for intersection search algorithm.
548 
549  /// Maximal distance of observe point from Mesh relative to its size
550  double global_snap_radius() const;
551 
552  /// For node of given node_id returns index in element_vec_ or (-1) if node doesn't exist.
553  inline int node_index(int node_id) const
554  {
555  return node_ids_->get_position(node_id);
556  }
557 
558  /// Implement MeshBase::bc_mesh(), getter of boundary mesh
559  BCMesh *bc_mesh() const override {
560  return bc_mesh_;
561  }
562 
563 
564 protected:
565 
566  /**
567  * Part of the constructor whichdoes not depedn on input record.
568  * Initializes node-side numbering according to RefElement.
569  */
570  void init();
571 
572  /**
573  * Allow store boundary element data to temporary structure.
574  *
575  * We need this structure to preserve correct order of boundary elements.
576  */
577  struct ElementTmpData {
578  /// Constructor
579  ElementTmpData(unsigned int e_id, unsigned int dm, RegionIdx reg_idx, unsigned int part_id, std::vector<unsigned int> nodes)
580  : elm_id(e_id), dim(dm), region_idx(reg_idx), partition_id(part_id), node_ids(nodes) {}
581 
582  unsigned int elm_id;
583  unsigned int dim;
585  unsigned int partition_id;
587  };
588 
589  /**
590  * This replaces read_neighbours() in order to avoid using NGH preprocessor.
591  *
592  * TODO:
593  * - Avoid maps:
594  *
595  * 5) need not to have temporary array for Edges, only postpone setting pointers in elements and set them
596  * after edges are found; we can temporary save Edge index instead of pointer in Neigbours and elements
597  *
598  * 6) Try replace Edge * by indexes in Neigbours and elements (anyway we have mesh pointer in elements so it is accessible also from Neigbours)
599  *
600  */
602 
603  void element_to_neigh_vb();
604 
605  void count_element_types();
606  void count_side_types();
607 
608  /**
609  * Check the element quality and remove unused nodes.
610  */
611  void check_mesh_on_read();
612 
613  /**
614  * Possibly modify region id of elements sets by user in "regions" part of input file.
615  *
616  * TODO: This method needs check in issue 'Review mesh setting'.
617  * Changes have been done during generalized region key and may be causing problems
618  * during the further development.
619  */
621 
622  /// Initialize element
623  void init_element(Element *ele, unsigned int elm_id, unsigned int dim, RegionIdx region_idx, unsigned int partition_id,
624  std::vector<unsigned int> node_ids);
625 
626  unsigned int n_bb_neigh, n_vb_neigh;
627 
628  /// Output of neighboring data into raw output.
630 
631  /**
632  * Apply functionality of MeshOptimizer to sort nodes and elements.
633  *
634  * Use Hilbert curve, need call sort_permuted_nodes_elements method.
635  */
636  void optimize();
637 
638  /// Sort elements and nodes by order stored in permutation vectors.
639  void sort_permuted_nodes_elements(std::vector<int> new_node_ids, std::vector<int> new_elem_ids);
640 
641  /**
642  * Looks for the same (compatible) elements between the @p source_mesh and @p target_mesh.
643  * Auxiliary function for check_compatible_mesh().
644  * Uses the nodal mapping @p node_ids.
645  * Fills the element mapping @p map.
646  * Returns the number of compatible elements.
647  */
648  unsigned int check_compatible_elements(MeshBase* source_mesh, MeshBase* target_mesh,
649  const std::vector<unsigned int>& node_ids,
651 
652  /**
653  * Flag for optimization perfomed at the beginning of setup_topology.
654  * Default true, can be set to flase by the optimize_mesh key of the input recoed.
655  */
657 
658  /**
659  * Mesh partitioning. Created in setup_topology.
660  */
661  std::shared_ptr<Partitioning> part_;
662 
663  /**
664  * BIH Tree for intersection and observe points lookup.
665  */
666  std::shared_ptr<BIHTree> bih_tree_;
667 
668 
669  /**
670  * Accessor to the input record for the mesh.
671  */
673 
674  /**
675  * MPI communicator used for partitioning and ...
676  */
678 
679  friend class Edge;
680  friend class Side;
681  friend class RegionSetBase;
682  friend class Element;
683  friend class BIHTree;
684  friend class Boundary;
685  friend class BCMesh;
686  template <int spacedim> friend class ElementAccessor;
687  template <int spacedim> friend class NodeAccessor;
688 
689 
690 
691 private:
692 
693  /// Fill array node_4_loc_ and create object node_ds_ according to element distribution.
694  void distribute_nodes();
695 
696  /// Index set assigning to local node index its global index.
698  /// Parallel distribution of nodes. Depends on elements distribution.
700  /// Hold number of local nodes (own + ghost), value is equal with size of node_4_loc array.
701  unsigned int n_local_nodes_;
702  /// Boundary mesh, object is created only if it's necessary
704 
705 };
706 
707 #endif
708 //-----------------------------------------------------------------------------
709 // vim: set cindent:
MeshBase::get_row_4_el
LongIdx * get_row_4_el() const
Definition: mesh.h:125
Mesh::ElementTmpData::partition_id
unsigned int partition_id
Definition: mesh.h:585
MeshBase::nodes_
shared_ptr< Armor::Array< double > > nodes_
Definition: mesh.h:306
MeshBase::max_edge_sides
unsigned int max_edge_sides(unsigned int dim) const
Definition: mesh.h:145
MeshBase::region_db_
std::shared_ptr< RegionDB > region_db_
Definition: mesh.h:336
Mesh::y_coord
@ y_coord
Definition: mesh.h:403
MeshBase::node_permutation_
std::vector< unsigned int > node_permutation_
Vector of node permutations of optimized mesh (see class MeshOptimizer)
Definition: mesh.h:312
MeshBase::element
const Element & element(unsigned idx) const
Definition: mesh.h:128
Boundary
Definition: accessors.hh:355
BidirectionalMap< int >
general_iterator.hh
Template Iter serves as general template for internal iterators.
armor.hh
Mesh::get_input_intersection_variant
static const Input::Type::Selection & get_input_intersection_variant()
The definition of input record for selection of variant of file format.
Definition: mesh.cc:202
BoundarySegment
Definition: mesh.h:68
Mesh::get_element_boxes
std::vector< BoundingBox > get_element_boxes()
Compute bounding boxes of elements contained in mesh.
Definition: mesh.cc:1047
EquivalentMeshMap::boundary
std::vector< LongIdx > boundary
Definition: mesh.h:81
MeshBase::canonical_faces
void canonical_faces()
Definition: mesh.cc:152
Mesh::node_4_loc_
LongIdx * node_4_loc_
Index set assigning to local node index its global index.
Definition: mesh.h:697
Mesh::in_record_
Input::Record in_record_
Definition: mesh.h:672
Mesh::ElementTmpData::elm_id
unsigned int elm_id
Definition: mesh.h:582
MeshBase::row_4_el
LongIdx * row_4_el
Index set assigning to global element index the local index used in parallel vectors.
Definition: mesh.h:323
Mesh::ElementTmpData::region_idx
RegionIdx region_idx
Definition: mesh.h:584
Mesh::ElementTmpData::ElementTmpData
ElementTmpData(unsigned int e_id, unsigned int dm, RegionIdx reg_idx, unsigned int part_id, std::vector< unsigned int > nodes)
Constructor.
Definition: mesh.h:579
Mesh::n_exsides
int n_exsides
Definition: mesh.h:516
Mesh::init_element
void init_element(Element *ele, unsigned int elm_id, unsigned int dim, RegionIdx region_idx, unsigned int partition_id, std::vector< unsigned int > node_ids)
Initialize element.
Definition: mesh.cc:1105
MeshBase::region_db
const RegionDB & region_db() const
Definition: mesh.h:171
EquivalentMeshMap::bulk
std::vector< LongIdx > bulk
Definition: mesh.h:80
MeshBase::get_el_ds
Distribution * get_el_ds() const
Definition: mesh.h:119
Mesh::n_sides
unsigned int n_sides() const
Definition: mesh.cc:308
Mesh::check_compatible_mesh
virtual std::shared_ptr< EquivalentMeshMap > check_compatible_mesh(Mesh &input_mesh)
Definition: mesh.cc:913
file_path.hh
MixedMeshIntersections
Main class for computation of intersection of meshes of combined dimensions.
Definition: mixed_mesh_intersections.hh:64
Input::Record::val
const Ret val(const string &key) const
Definition: accessors_impl.hh:31
FilePath
Dedicated class for storing path to input and output files.
Definition: file_path.hh:54
MeshBase::el_4_loc
LongIdx * el_4_loc
Index set assigning to local element index its global index.
Definition: mesh.h:325
Mesh::sort_permuted_nodes_elements
void sort_permuted_nodes_elements(std::vector< int > new_node_ids, std::vector< int > new_elem_ids)
Sort elements and nodes by order stored in permutation vectors.
Definition: mesh.cc:492
Mesh::get_input_type
static const Input::Type::Record & get_input_type()
Definition: mesh.cc:213
Mesh::boundary
Boundary boundary(uint edge_idx) const override
Definition: mesh.cc:328
MeshBase::undef_idx
static const unsigned int undef_idx
Definition: mesh.h:105
MeshBase::n_edges
unsigned int n_edges() const
Definition: mesh.h:114
BIHTree
Class for O(log N) lookup for intersections with a set of bounding boxes.
Definition: bih_tree.hh:38
std::vector< LongIdx >
Mesh::count_side_types
void count_side_types()
Definition: mesh.cc:524
ElementAccessor
Definition: dh_cell_accessor.hh:32
MeshBase::node_ids_
shared_ptr< BidirectionalMap< int > > node_ids_
Maps node ids to indexes into vector node_vec_.
Definition: mesh.h:309
Mesh::TYPEDEF_ERR_INFO
TYPEDEF_ERR_INFO(EI_ElemLast, int)
Partitioning
Class for the mesh partitioning. This should provide:
Definition: partitioning.hh:52
arma::vec3
Definition: doxy_dummy_defs.hh:17
MeshBase::check_compatible_mesh
virtual std::shared_ptr< EquivalentMeshMap > check_compatible_mesh(Mesh &input_mesh)=0
uint
unsigned int uint
Definition: mh_dofhandler.hh:101
Mesh::n_local_nodes_
unsigned int n_local_nodes_
Hold number of local nodes (own + ghost), value is equal with size of node_4_loc array.
Definition: mesh.h:701
Neighbour
Definition: neighbours.h:117
MeshBase::elements_range
Range< ElementAccessor< 3 > > elements_range() const
Returns range of mesh elements.
Definition: mesh.cc:1168
Mesh::read_regions_from_input
void read_regions_from_input(Input::Array region_list)
Definition: mesh.cc:1022
index_types.hh
Mesh::z_coord
@ z_coord
Definition: mesh.h:403
Mesh::get_intersection_search
IntersectionSearch get_intersection_search()
Getter for input type selection for intersection search algorithm.
Definition: mesh.cc:275
storage.hh
Mesh::optimize_memory_locality
bool optimize_memory_locality
Definition: mesh.h:656
exceptions.hh
type_record.hh
Mesh::get_node_ds
Distribution * get_node_ds() const
Definition: mesh.h:434
Element
Definition: elements.h:40
Mesh::optimize
void optimize()
Definition: mesh.cc:482
MeshBase::duplicate_nodes_
DuplicateNodes * duplicate_nodes_
Definition: mesh.h:330
MeshBase::vb_neighbour
const Neighbour & vb_neighbour(unsigned int nb) const
Return neighbour with given index.
Definition: mesh.cc:1364
Mesh::n_sides_
int n_sides_
Definition: mesh.h:517
RegionSetBase
Definition: region_set.hh:35
Mesh::init_from_input
void init_from_input()
MeshBase::same_sides
bool same_sides(const SideIter &si, vector< unsigned int > &side_nodes)
Definition: mesh.cc:606
Mesh::output_internal_ngh_data
void output_internal_ngh_data()
Output of neighboring data into raw output.
Definition: mesh.cc:1188
MeshBase::check_element_size
void check_element_size(unsigned int elem_idx) const
Check if given index is in element_vec_.
Definition: mesh.cc:1180
Mesh::DECLARE_EXCEPTION
DECLARE_EXCEPTION(ExcDuplicateBoundary,<< "Duplicate boundary elements! \n"<< "Element id: "<< EI_ElemLast::val<< " on region name: "<< EI_RegLast::val<< "\n"<< "Element id: "<< EI_ElemNew::val<< " on region name: "<< EI_RegNew::val<< "\n")
Mesh::ElementTmpData::node_ids
std::vector< unsigned int > node_ids
Definition: mesh.h:586
Distribution
Definition: distribution.hh:50
Mesh::bc_mesh
BCMesh * bc_mesh() const override
Implement MeshBase::bc_mesh(), getter of boundary mesh.
Definition: mesh.h:559
MeshBase::edges
std::vector< EdgeData > edges
Vector of MH edges, this should not be part of the geometrical mesh.
Definition: mesh.h:295
Mesh::BBsearch
@ BBsearch
Definition: mesh.h:391
Mesh::check_mesh_on_read
void check_mesh_on_read()
Definition: mesh.cc:370
Mesh::n_corners
unsigned int n_corners()
Definition: mesh.cc:318
Mesh::get_local_part
const LongIdx * get_local_part() override
Definition: mesh.cc:338
Mesh::count_element_types
void count_element_types()
Input::Record
Accessor to the data with type Type::Record.
Definition: accessors.hh:291
Mesh::get_bih_tree
const BIHTree & get_bih_tree()
Getter for BIH. Creates and compute BIH at first call.
Definition: mesh.cc:1062
elements.h
Mesh::distribute_nodes
void distribute_nodes()
Fill array node_4_loc_ and create object node_ds_ according to element distribution.
Definition: mesh.cc:1306
Mesh::get_node_4_loc
LongIdx * get_node_4_loc() const
Definition: mesh.h:437
Mesh::read_gmsh_from_stream
void read_gmsh_from_stream(istream &in)
MeshBase::node_elements
const vector< vector< unsigned int > > & node_elements()
Definition: mesh.cc:1128
MeshBase::MeshBase
MeshBase()
Definition: mesh.cc:67
mpi.h
MeshBase::vb_neighbours_
vector< Neighbour > vb_neighbours_
Vector of compatible neighbourings.
Definition: mesh.h:298
accessors.hh
MeshBase::node_range
Range< NodeAccessor< 3 > > node_range() const
Returns range of nodes.
Definition: mesh.cc:1174
Mesh::elements_id_maps
void elements_id_maps(vector< LongIdx > &bulk_elements_id, vector< LongIdx > &boundary_elements_id) const
Definition: mesh.cc:878
MeshBase::add_element_to_vector
Element * add_element_to_vector(int id, bool is_boundary=false)
Adds element to mesh data structures (element_vec_, element_ids_), returns pointer to this element.
Definition: mesh.cc:1155
Mesh::ElementTmpData::dim
unsigned int dim
Definition: mesh.h:583
MeshBase::element_accessor
ElementAccessor< 3 > element_accessor(unsigned int idx) const
Create and return ElementAccessor to element of given idx.
Definition: mesh.cc:866
MeshBase::node
NodeAccessor< 3 > node(unsigned int idx) const
Create and return NodeAccessor to node of given idx.
Definition: mesh.cc:872
EquivalentMeshMap::empty
bool empty()
Definition: mesh.h:90
Side
Definition: accessors.hh:396
bidirectional_map.hh
Implementation of bidirectional map.
Mesh::IntersectionSearch
IntersectionSearch
Types of search algorithm for finding intersection candidates.
Definition: mesh.h:388
Mesh::init
void init()
Definition: mesh.cc:281
Mesh::master_elements
vector< vector< unsigned int > > master_elements
Definition: mesh.h:512
Mesh::mesh_file
FilePath mesh_file()
Return FilePath object representing "mesh_file" input key.
Definition: mesh.h:542
RegionDB
Definition: region.hh:292
Mesh::bih_tree_
std::shared_ptr< BIHTree > bih_tree_
Definition: mesh.h:666
Mesh::node_ds_
Distribution * node_ds_
Parallel distribution of nodes. Depends on elements distribution.
Definition: mesh.h:699
Input::Type::Selection
Template for classes storing finite set of named values.
Definition: type_selection.hh:65
std::map< unsigned int, unsigned int >
bounding_box.hh
Mesh::~Mesh
~Mesh() override
Destructor.
Definition: mesh.cc:301
Mesh::element_to_neigh_vb
void element_to_neigh_vb()
Definition: mesh.cc:816
Mesh::get_comm
MPI_Comm get_comm() const
Definition: mesh.h:446
Mesh::add_element
void add_element(unsigned int elm_id, unsigned int dim, unsigned int region_id, unsigned int partition_id, std::vector< unsigned int > node_ids)
Add new element of given id to mesh.
Definition: mesh.cc:1088
MeshBase::get_side_nodes
const std::vector< unsigned int > & get_side_nodes(unsigned int dim, unsigned int side) const
Definition: mesh.h:164
Input::Type::Record
Record type proxy class.
Definition: type_record.hh:182
MPI_Comm
int MPI_Comm
Definition: mpi.h:141
MeshBase::init_node_vector
void init_node_vector(unsigned int size)
Initialize node_vec_, set size.
Definition: mesh.cc:1146
Mesh::get_part
Partitioning * get_part() override
Definition: mesh.cc:334
Mesh::n_bb_neigh
unsigned int n_bb_neigh
Definition: mesh.h:626
MeshBase::find_elem_id
int find_elem_id(unsigned int pos) const
Return element id (in GMSH file) of element of given position in element vector.
Definition: mesh.h:138
LongIdx
int LongIdx
Define type that represents indices of large arrays (elements, nodes, dofs etc.)
Definition: index_types.hh:24
Mesh::setup_topology
void setup_topology()
Definition: mesh.cc:444
MeshBase::edge
Edge edge(uint edge_idx) const
Return edge with given index.
Definition: mesh.cc:131
EquivalentMeshMap::EquivalentMeshMap
EquivalentMeshMap(unsigned int bulk_size, unsigned int boundary_size, LongIdx def_val)
Definition: mesh.h:85
Mesh::modify_element_ids
void modify_element_ids(const RegionDB::MapElementIDToRegionID &map)
Definition: mesh.cc:345
Mesh
Definition: mesh.h:355
MeshBase::intersect_element_lists
void intersect_element_lists(vector< unsigned int > const &nodes_list, vector< unsigned int > &intersection_element_list)
Definition: mesh.cc:552
MeshBase::el_ds
Distribution * el_ds
Parallel distribution of elements.
Definition: mesh.h:327
Mesh::BIHsearch
@ BIHsearch
Definition: mesh.h:389
Mesh::check_compatible_elements
unsigned int check_compatible_elements(MeshBase *source_mesh, MeshBase *target_mesh, const std::vector< unsigned int > &node_ids, std::vector< LongIdx > &map)
Definition: mesh.cc:978
Range
Range helper class.
Definition: range_wrapper.hh:65
accessors_impl.hh
MeshBase::init_element_vector
void init_element_vector(unsigned int size)
Initialize element_vec_, set size and reset counters of boundary and bulk elements.
Definition: mesh.cc:1136
Mesh::make_neighbours_and_edges
void make_neighbours_and_edges()
Definition: mesh.cc:623
MeshBase::elem_permutation_
std::vector< unsigned int > elem_permutation_
Vector of element permutations of optimized mesh (see class MeshOptimizer)
Definition: mesh.h:315
MeshBase::element_permutations
const std::vector< unsigned int > & element_permutations() const
Return permutation vector of elements.
Definition: mesh.h:231
MeshBase::~MeshBase
virtual ~MeshBase()
Definition: mesh.cc:108
Edge
Definition: accessors.hh:300
Input::Array
Accessor to input data conforming to declared Array.
Definition: accessors.hh:566
Mesh::Mesh
Mesh()
Definition: mesh.cc:239
Mesh::n_vb_neigh
unsigned int n_vb_neigh
Definition: mesh.h:626
MeshBase::get_el_4_loc
LongIdx * get_el_4_loc() const
Definition: mesh.h:122
MeshBase::TYPEDEF_ERR_INFO
TYPEDEF_ERR_INFO(EI_ElemId, int)
Mesh::n_boundaries
unsigned int n_boundaries() const
Definition: mesh.h:422
mesh_data.hh
Internal mesh data classes.
RegionIdx
Definition: region.hh:67
MeshBase::node_elements_
vector< vector< unsigned int > > node_elements_
For each node the vector contains a list of elements that use this node.
Definition: mesh.h:236
MeshBase
Base class for Mesh and BCMesh.
Definition: mesh.h:96
Mesh::node_index
int node_index(int node_id) const
For node of given node_id returns index in element_vec_ or (-1) if node doesn't exist.
Definition: mesh.h:553
BCMesh
Class represents boundary part of mesh.
Definition: bc_mesh.hh:37
Mesh::check_and_finish
void check_and_finish()
Definition: mesh.cc:1032
BoundarySegment::input_type
static Input::Type::Record input_type
Definition: mesh.h:70
NodeAccessor
Definition: mesh.h:55
EquivalentMeshMap
Definition: mesh.h:79
MeshBase::n_vb_neighbours
unsigned int n_vb_neighbours() const
Definition: mesh.cc:137
MeshBase::side_nodes
vector< vector< vector< unsigned int > > > side_nodes
Definition: mesh.h:248
MPI_COMM_WORLD
#define MPI_COMM_WORLD
Definition: mpi.h:123
MeshBase::find_lower_dim_element
bool find_lower_dim_element(vector< unsigned int > &element_list, unsigned int dim, unsigned int &element_idx)
Definition: mesh.cc:584
region.hh
Mesh::add_node
void add_node(unsigned int node_id, arma::vec3 coords)
Add new node of given id and coordinates to mesh.
Definition: mesh.cc:1080
MeshBase::edge_range
Range< Edge > edge_range() const
Return range of edges.
Definition: mesh.cc:125
MeshBase::get_part
virtual Partitioning * get_part()=0
Mesh::part_
std::shared_ptr< Partitioning > part_
Definition: mesh.h:661
MeshBase::boundary
virtual Boundary boundary(uint edge_idx) const =0
MeshBase::element_ids_
BidirectionalMap< int > element_ids_
Maps element ids to indexes into vector element_vec_.
Definition: mesh.h:292
Mesh::comm_
MPI_Comm comm_
Definition: mesh.h:677
MeshBase::DECLARE_EXCEPTION
DECLARE_EXCEPTION(ExcTooMatchingIds,<< "Mesh: Duplicate dim-join lower dim elements: "<< EI_ElemId::val<< ", "<< EI_ElemIdOther::val<< ".\n")
Mesh::global_snap_radius
double global_snap_radius() const
Maximal distance of observe point from Mesh relative to its size.
Definition: mesh.cc:1071
MeshBase::n_elements
unsigned int n_elements() const
Definition: mesh.h:111
MeshBase::node_permutations
const std::vector< unsigned int > & node_permutations() const
Return permutation vector of nodes.
Definition: mesh.h:227
Mesh::boundary_
vector< BoundaryData > boundary_
Definition: mesh.h:498
Mesh::n_local_nodes
unsigned int n_local_nodes() const
Definition: mesh.h:440
Mesh::n_insides
int n_insides
Definition: mesh.h:515
MeshBase::elem_index
int elem_index(int elem_id) const
For element of given elem_id returns index in element_vec_ or (-1) if element doesn't exist.
Definition: mesh.cc:1358
MeshBase::create_node_element_lists
void create_node_element_lists()
Definition: mesh.cc:539
Mesh::bc_mesh_
BCMesh * bc_mesh_
Boundary mesh, object is created only if it's necessary.
Definition: mesh.h:703
Mesh::mixed_intersections
MixedMeshIntersections & mixed_intersections()
Definition: mesh.cc:849
Mesh::BIHonly
@ BIHonly
Definition: mesh.h:390
MeshBase::find_node_id
int find_node_id(unsigned int pos) const
Return node id (in GMSH file) of node of given position in node vector.
Definition: mesh.h:156
MeshBase::max_edge_sides_
unsigned int max_edge_sides_[3]
Maximal number of sides per one edge in the actual mesh (set in make_neighbours_and_edges()).
Definition: mesh.h:301
MeshBase::element_vec_
vector< Element > element_vec_
Definition: mesh.h:289
MeshBase::n_nodes
unsigned int n_nodes() const
Definition: mesh.h:167
MeshBase::get_local_part
virtual const LongIdx * get_local_part()=0
MeshBase::bc_mesh
virtual BCMesh * bc_mesh() const =0
SideIter
Definition: accessors.hh:496
MeshBase::duplicate_nodes
const DuplicateNodes * duplicate_nodes() const
Definition: mesh.h:147
MeshBase::element_nodes_original_
std::array< std::array< uint, 4 >, 64 > element_nodes_original_
Definition: mesh.h:319
Mesh::add_physical_name
void add_physical_name(unsigned int dim, unsigned int id, std::string name)
Add new node of given id and coordinates to mesh.
Definition: mesh.cc:1075
Mesh::x_coord
@ x_coord
Definition: mesh.h:403
Mesh::ElementTmpData
Definition: mesh.h:577
DuplicateNodes
Definition: duplicate_nodes.h:96
range_wrapper.hh
Implementation of range helper class.
EquivalentMeshMap::EquivalentMeshMap
EquivalentMeshMap()
Definition: mesh.h:83
Mesh::intersections
std::shared_ptr< MixedMeshIntersections > intersections
Definition: mesh.h:506