Flow123d  JS_before_hm-1788-g649f0a9d1
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 // STRUCTURE OF THE MESH
75 //=============================================================================
76 
77 class Mesh {
78 public:
79  TYPEDEF_ERR_INFO( EI_ElemLast, int);
80  TYPEDEF_ERR_INFO( EI_ElemNew, int);
81  TYPEDEF_ERR_INFO( EI_RegLast, std::string);
82  TYPEDEF_ERR_INFO( EI_RegNew, std::string);
83  TYPEDEF_ERR_INFO( EI_ElemId, int);
84  TYPEDEF_ERR_INFO( EI_ElemIdOther, int);
85  TYPEDEF_ERR_INFO( EI_Region, std::string);
86  TYPEDEF_ERR_INFO( EI_RegIdx, unsigned int);
87  TYPEDEF_ERR_INFO( EI_Dim, unsigned int);
88  TYPEDEF_ERR_INFO( EI_DimOther, unsigned int);
89  TYPEDEF_ERR_INFO( EI_Quality, double);
90 
91 
92  DECLARE_EXCEPTION(ExcDuplicateBoundary,
93  << "Duplicate boundary elements! \n"
94  << "Element id: " << EI_ElemLast::val << " on region name: " << EI_RegLast::val << "\n"
95  << "Element id: " << EI_ElemNew::val << " on region name: " << EI_RegNew::val << "\n");
96  DECLARE_EXCEPTION(ExcElmWrongOrder,
97  << "Element IDs in non-increasing order, ID: " << EI_ElemId::val << "\n");
98  DECLARE_EXCEPTION(ExcRegionElmDiffDim,
99  << "User defined region " << EI_Region::qval << " (id " << EI_RegIdx::val
100  << ") by 'From_Elements' cannot have elements of different dimensions.\n"
101  << "Thrown due to: dim " << EI_Dim::val << " neq dim " << EI_DimOther::val << " (ele id " << EI_ElemId::val << ").\n"
102  << "Split elements by dim, create separate regions and then possibly use Union.\n" );
103  DECLARE_EXCEPTION(ExcBadElement,
104  << "Extremely bad quality element ID=" << EI_ElemId::val << ",(" << EI_Quality::val << "<4*epsilon).\n");
105  DECLARE_EXCEPTION(ExcTooMatchingIds,
106  << "Mesh: Duplicate dim-join lower dim elements: " << EI_ElemId::val << ", " << EI_ElemIdOther::val << ".\n" );
107  DECLARE_EXCEPTION(ExcBdrElemMatchRegular,
108  << "Boundary element (id: " << EI_ElemId::val << ") match a regular element (id: " << EI_ElemIdOther::val << ") of lower dimension.\n" );
109 
110 
111  /**
112  * \brief Types of search algorithm for finding intersection candidates.
113  */
114  typedef enum IntersectionSearch {
116  BIHonly = 2,
119 
120  /**
121  * \brief The definition of input record for selection of variant of file format
122  */
124 
125 
126  static const Input::Type::Record & get_input_type();
127 
128 
129  /** Labels for coordinate indexes in arma::vec3 representing vectors and points.*/
130  enum {x_coord=0, y_coord=1, z_coord=2};
131 
132  /**
133  * Empty constructor.
134  *
135  * Use only for unit tests!!!
136  */
137  Mesh();
138  /**
139  * Constructor from an input record.
140  * Do not process input record. That is done in init_from_input.
141  */
142  Mesh(Input::Record in_record, MPI_Comm com = MPI_COMM_WORLD);
143 
144  Mesh(Mesh &other);
145 
146  /// Destructor.
147  virtual ~Mesh();
148 
149  virtual inline unsigned int n_nodes() const {
150  return nodes_.size();
151  }
152 
153  inline unsigned int n_boundaries() const {
154  return boundary_.size();
155  }
156 
157  inline unsigned int n_edges() const {
158  return edges.size();
159  }
160 
161  Edge edge(uint edge_idx) const;
162  Boundary boundary(uint edge_idx) const;
163 
164  unsigned int n_corners();
165 
166  inline const RegionDB &region_db() const {
167  return region_db_;
168  }
169 
170  /**
171  * Returns pointer to partitioning object. Partitioning is created during setup_topology.
172  */
173  virtual Partitioning *get_part();
174 
175  virtual const LongIdx *get_local_part();
176 
178  { return el_ds; }
179 
181  { return row_4_el; }
182 
184  { return el_4_loc; }
185 
187  { return node_ds_; }
188 
190  { return node_4_loc_; }
191 
192  unsigned int n_local_nodes() const
193  { return n_local_nodes_; }
194 
195  /**
196  * Returns MPI communicator of the mesh.
197  */
198  inline MPI_Comm get_comm() const { return comm_; }
199 
200 
202 
203  unsigned int n_sides() const;
204 
205  unsigned int n_vb_neighbours() const;
206 
207  /**
208  * Returns maximal number of sides of one edge, which connects elements of dimension @p dim.
209  * @param dim Dimension of elements sharing the edge.
210  */
211  unsigned int max_edge_sides(unsigned int dim) const { return max_edge_sides_[dim-1]; }
212 
213  /**
214  * Reads mesh from stream.
215  *
216  * Method is especially used in unit tests.
217  */
218  void read_gmsh_from_stream(istream &in);
219  /**
220  * Reads input record, creates regions, read the mesh, setup topology. creates region sets.
221  */
222  void init_from_input();
223 
224  /**
225  * Permute nodes of individual elements so that all elements have same edge orientations and aligned sides have same order of their nodes
226  * Canonical edge orientation in elements and faces is from nodes of lower local index to higher local index.
227  *
228  * Algorithm detals:
229  * 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.
230  * Can be proven (!?) that this prevents edge cycles of the length 3 (faces with cyclic edges).
231  * 2. Having all faces non-cyclic there exists a permutation of any element to the reference element.
232  * Pass through the elements. Sort nodes by global ID.
233  */
234  void canonical_faces();
235 
236  /**
237  * Initialize all mesh structures from raw information about nodes and elements (including boundary elements).
238  * Namely: create remaining boundary elements and Boundary objects, find edges and compatible neighborings.
239  */
240  void setup_topology();
241 
242  /**
243  * Returns vector of ID numbers of elements, either bulk or bc elemnts.
244  */
245  void elements_id_maps( vector<LongIdx> & bulk_elements_id, vector<LongIdx> & boundary_elements_id) const;
246 
247  /*
248  * Check if nodes and elements are compatible with continuous \p input_mesh.
249  *
250  * Call this method on computational mesh.
251  * @param input_mesh data mesh of input fields
252  * @return vector that holds mapping between eleemnts of data and computational meshes
253  * for every element in computational mesh hold idx of equivalent element in input mesh.
254  * If element doesn't exist in input mesh value is set to Mesh::undef_idx.
255  * If meshes are not compatible returns empty vector.
256  */
257  virtual std::shared_ptr<std::vector<LongIdx>> check_compatible_mesh( Mesh & input_mesh);
258 
259  /*
260  * Check if nodes and elements are compatible with discontinuous \p input_mesh.
261  *
262  * Call this method on computational mesh.
263  * @param input_mesh data mesh of input fields
264  * @return vector that holds mapping between eleemnts of data and computational meshes
265  * for every element in computational mesh hold idx of equivalent element in input mesh.
266  * If element doesn't exist in input mesh value is set to Mesh::undef_idx.
267  * If meshes are not compatible returns empty vector.
268  */
269  virtual std::shared_ptr<std::vector<LongIdx>> check_compatible_discont_mesh( Mesh & input_mesh);
270 
271  /// Create and return ElementAccessor to element of given idx
272  virtual ElementAccessor<3> element_accessor(unsigned int idx) const;
273 
274  /// Create and return NodeAccessor to node of given idx
275  NodeAccessor<3> node(unsigned int idx) const;
276 
277  /**
278  * Reads elements and their affiliation to regions and region sets defined by user in input file
279  * Format of input record is defined in method RegionSetBase::get_input_type()
280  *
281  * @param region_list Array input AbstractRecords which define regions, region sets and elements
282  */
283  void read_regions_from_input(Input::Array region_list);
284 
285  /**
286  * Returns nodes_elements vector, if doesn't exist creates its.
287  */
289 
290  /// Vector of boundary sides where is prescribed boundary condition.
291  /// TODO: apply all boundary conditions in the main assembling cycle over elements and remove this Vector.
293 
294  //flow::VectorId<int> bcd_group_id; // gives a index of group for an id
295 
296  /**
297  * Vector of individual intersections of two elements.
298  * This is enough for local mortar.
299  */
300  std::shared_ptr<MixedMeshIntersections> intersections;
301 
302  /**
303  * For every element El we have vector of indices into @var intersections array for every intersection in which El is master element.
304  * This is necessary for true mortar.
305  */
307 
309 
310  /**
311  * Vector of compatible neighbourings.
312  */
314 
315  int n_insides; // # of internal sides
316  int n_exsides; // # of external sides
317  mutable int n_sides_; // total number of sides (should be easy to count when we have separated dimensions
318 
319 
320  // Temporary solution for numbering of nodes on sides.
321  // The data are defined in RefElement<dim>::side_nodes,
322  // Mesh::side_nodes can be removed as soon as Element
323  // is templated by dimension.
324  //
325  // side_nodes[dim][elm_side_idx][side_node_idx]
326  // for every side dimension D = 0 .. 2
327  // for every element side 0 .. D+1
328  // for every side node 0 .. D
329  // index into element node array
331 
332  /**
333  * Check usage of regions, set regions to elements defined by user, close RegionDB
334  */
335  void check_and_finish();
336 
337  /// Compute bounding boxes of elements contained in mesh.
339 
340  /// Getter for BIH. Creates and compute BIH at first call.
341  const BIHTree &get_bih_tree();\
342 
343  /**
344  * Find intersection of element lists given by Mesh::node_elements_ for elements givne by @p nodes_list parameter.
345  * The result is placed into vector @p intersection_element_list. If the @p node_list is empty, and empty intersection is
346  * returned.
347  */
348  void intersect_element_lists(vector<unsigned int> const &nodes_list, vector<unsigned int> &intersection_element_list);
349 
350  /// Add new node of given id and coordinates to mesh
351  void add_node(unsigned int node_id, arma::vec3 coords);
352 
353  /// Add new element of given id to mesh
354  void add_element(unsigned int elm_id, unsigned int dim, unsigned int region_id, unsigned int partition_id,
355  std::vector<unsigned int> node_ids);
356 
357  /// Add new node of given id and coordinates to mesh
358  void add_physical_name(unsigned int dim, unsigned int id, std::string name);
359 
360  /// Return FilePath object representing "mesh_file" input key
361  inline FilePath mesh_file() {
362  return in_record_.val<FilePath>("mesh_file");
363  }
364 
365  /// Getter for input type selection for intersection search algorithm.
367 
368  /// Maximal distance of observe point from Mesh relative to its size
369  double global_snap_radius() const;
370 
371  /// Initialize element_vec_, set size and reset counters of boundary and bulk elements.
372  void init_element_vector(unsigned int size);
373 
374  /// Initialize node_vec_, set size
375  void init_node_vector(unsigned int size);
376 
377  // TODO: have also private non-const accessors and ranges
378 
379  /// Returns range of bulk elements
380  virtual Range<ElementAccessor<3>> elements_range() const;
381 
382  /// Returns range of nodes
384 
385  /// Returns range of edges
386  Range<Edge> edge_range() const;
387 
388  /// Returns count of boundary or bulk elements
389  virtual unsigned int n_elements() const {
390  return bulk_size_;
391  }
392 
393  /// For each node the vector contains a list of elements that use this node
395 
396  /// For element of given elem_id returns index in element_vec_ or (-1) if element doesn't exist.
397  inline int elem_index(int elem_id) const
398  {
399  return element_ids_.get_position(elem_id);
400  }
401 
402  /// Return element id (in GMSH file) of element of given position in element vector.
403  inline int find_elem_id(unsigned int pos) const
404  {
405  return element_ids_[pos];
406  }
407 
408  /// Return permutation vector of elements
410  {
411  return elem_permutation_;
412  }
413 
414  /// For node of given node_id returns index in element_vec_ or (-1) if node doesn't exist.
415  inline int node_index(int node_id) const
416  {
417  return node_ids_.get_position(node_id);
418  }
419 
420  /// Return node id (in GMSH file) of node of given position in node vector.
421  inline int find_node_id(unsigned int pos) const
422  {
423  return node_ids_[pos];
424  }
425 
426  /// Return permutation vector of nodes
428  {
429  return node_permutation_;
430  }
431 
432  /// Check if given index is in element_vec_
433  void check_element_size(unsigned int elem_idx) const;
434 
435  /// Create boundary elements from data of temporary structure, this method MUST be call after read mesh from file, return number of read boundary elements
436  unsigned int create_boundary_elements();
437 
438  /// Create boundary mesh if doesn't exist and return it.
439  BCMesh *get_bc_mesh();
440 
441 protected:
442 
443  /**
444  * Part of the constructor whichdoes not depedn on input record.
445  * Initializes node-side numbering according to RefElement.
446  */
447  void init();
448 
449  /**
450  * Allow store boundary element data to temporary structure.
451  *
452  * We need this structure to preserve correct order of boundary elements.
453  */
454  struct ElementTmpData {
455  /// Constructor
456  ElementTmpData(unsigned int e_id, unsigned int dm, RegionIdx reg_idx, unsigned int part_id, std::vector<unsigned int> nodes)
457  : elm_id(e_id), dim(dm), region_idx(reg_idx), partition_id(part_id), node_ids(nodes) {}
458 
459  unsigned int elm_id;
460  unsigned int dim;
462  unsigned int partition_id;
464  };
465 
466  /**
467  * This replaces read_neighbours() in order to avoid using NGH preprocessor.
468  *
469  * TODO:
470  * - Avoid maps:
471  *
472  * 5) need not to have temporary array for Edges, only postpone setting pointers in elements and set them
473  * after edges are found; we can temporary save Edge index instead of pointer in Neigbours and elements
474  *
475  * 6) Try replace Edge * by indexes in Neigbours and elements (anyway we have mesh pointer in elements so it is accessible also from Neigbours)
476  *
477  */
479 
480  /**
481  * Create element lists for nodes in Mesh::nodes_elements.
482  */
484  /**
485  * Remove elements with dimension not equal to @p dim from @p element_list. Index of the first element of dimension @p dim-1,
486  * 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,
487  * if more elements are found we report an user input error.
488  */
489  bool find_lower_dim_element(vector<unsigned int> &element_list, unsigned int dim, unsigned int &element_idx);
490 
491  /**
492  * Returns true if side @p si has same nodes as in the list @p side_nodes.
493  */
495 
496 
497  void element_to_neigh_vb();
498 
499  void count_element_types();
500  void count_side_types();
501 
502  /**
503  * Check the element quality and remove unused nodes.
504  */
505  void check_mesh_on_read();
506 
507  /**
508  * Possibly modify region id of elements sets by user in "regions" part of input file.
509  *
510  * TODO: This method needs check in issue 'Review mesh setting'.
511  * Changes have been done during generalized region key and may be causing problems
512  * during the further development.
513  */
515 
516  /// Adds element to mesh data structures (element_vec_, element_ids_), returns pointer to this element.
517  Element * add_element_to_vector(int id);
518 
519  /// Initialize element
520  void init_element(Element *ele, unsigned int elm_id, unsigned int dim, RegionIdx region_idx, unsigned int partition_id,
521  std::vector<unsigned int> node_ids);
522 
523  unsigned int n_bb_neigh, n_vb_neigh;
524 
525  /// Maximal number of sides per one edge in the actual mesh (set in make_neighbours_and_edges()).
526  unsigned int max_edge_sides_[3];
527 
528  /// Output of neighboring data into raw output.
530 
531  /**
532  * Apply functionality of MeshOptimizer to sort nodes and elements.
533  *
534  * Use Hilbert curve, need call sort_permuted_nodes_elements method.
535  */
536  void optimize();
537 
538  /// Sort elements and nodes by order stored in permutation vectors.
539  void sort_permuted_nodes_elements(std::vector<int> new_node_ids, std::vector<int> new_elem_ids);
540 
541  /**
542  * Flag for optimization perfomed at the beginning of setup_topology.
543  * Default true, can be set to flase by the optimize_mesh key of the input recoed.
544  */
546 
547  /**
548  * Database of regions (both bulk and boundary) of the mesh. Regions are logical parts of the
549  * domain that allows setting of different data and boundary conditions on them.
550  */
552  /**
553  * Mesh partitioning. Created in setup_topology.
554  */
555  std::shared_ptr<Partitioning> part_;
556 
557  /**
558  * BIH Tree for intersection and observe points lookup.
559  */
560  std::shared_ptr<BIHTree> bih_tree_;
561 
562 
563  /**
564  * Accessor to the input record for the mesh.
565  */
567 
568  /**
569  * MPI communicator used for partitioning and ...
570  */
572 
573  /**
574  * Vector of elements of the mesh.
575  *
576  * Store all elements of the mesh in order bulk elements - boundary elements
577  */
579 
580  /// Hold data of boundary elements during reading mesh (allow to preserve correct order during reading of mix bulk-boundary element)
582 
583  /// Count of bulk elements
584  unsigned int bulk_size_;
585 
586  /// Count of boundary elements loaded from mesh file
587  unsigned int boundary_loaded_size_;
588 
589  /// Maps element ids to indexes into vector element_vec_
591 
592  /**
593  * Vector of nodes of the mesh.
594  */
596 
597  /// Maps node ids to indexes into vector node_vec_
599 
600  /// Vector of MH edges, this should not be part of the geometrical mesh
602 
603  /// Vector of node permutations of optimized mesh (see class MeshOptimizer)
605 
606  /// Vector of element permutations of optimized mesh (see class MeshOptimizer)
608 
609 
610  friend class Edge;
611  friend class Side;
612  friend class RegionSetBase;
613  friend class Element;
614  friend class BIHTree;
615  friend class Boundary;
616  friend class BCMesh;
617  template <int spacedim> friend class ElementAccessor;
618  template <int spacedim> friend class NodeAccessor;
619 
620 
621 
622 private:
623 
624  /// Fill array node_4_loc_ and create object node_ds_ according to element distribution.
625  void distribute_nodes();
626 
627  /// Index set assigning to global element index the local index used in parallel vectors.
629  /// Index set assigning to local element index its global index.
631  /// Parallel distribution of elements.
633  /// Index set assigning to local node index its global index.
635  /// Parallel distribution of nodes. Depends on elements distribution.
637  /// Hold number of local nodes (own + ghost), value is equal with size of node_4_loc array.
638  unsigned int n_local_nodes_;
639  /// Boundary mesh, object is created only if it's necessary
641 
642 };
643 
644 #endif
645 //-----------------------------------------------------------------------------
646 // vim: set cindent:
Mesh::node_permutations
const std::vector< unsigned int > & node_permutations() const
Return permutation vector of nodes.
Definition: mesh.h:427
Mesh::ElementTmpData::partition_id
unsigned int partition_id
Definition: mesh.h:462
Mesh::get_el_ds
Distribution * get_el_ds() const
Definition: mesh.h:177
Mesh::y_coord
@ y_coord
Definition: mesh.h:130
Mesh::create_boundary_elements
unsigned int create_boundary_elements()
Create boundary elements from data of temporary structure, this method MUST be call after read mesh f...
Definition: mesh.cc:1349
Boundary
Definition: accessors.hh:363
BidirectionalMap< int >
general_iterator.hh
Template Iter serves as general template for internal iterators.
Mesh::nodes_
Armor::Array< double > nodes_
Definition: mesh.h:595
Mesh::check_compatible_discont_mesh
virtual std::shared_ptr< std::vector< LongIdx > > check_compatible_discont_mesh(Mesh &input_mesh)
Definition: mesh.cc:1007
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:65
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:1102
Mesh::node_4_loc_
LongIdx * node_4_loc_
Index set assigning to local node index its global index.
Definition: mesh.h:634
Mesh::in_record_
Input::Record in_record_
Definition: mesh.h:566
Mesh::ElementTmpData::elm_id
unsigned int elm_id
Definition: mesh.h:459
Mesh::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:1197
Mesh::ElementTmpData::region_idx
RegionIdx region_idx
Definition: mesh.h:461
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:456
Mesh::n_exsides
int n_exsides
Definition: mesh.h:316
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:1166
Mesh::elements_range
virtual Range< ElementAccessor< 3 > > elements_range() const
Returns range of bulk elements.
Definition: mesh.cc:1228
Mesh::n_sides
unsigned int n_sides() const
Definition: mesh.cc:240
Mesh::element_permutations
const std::vector< unsigned int > & element_permutations() const
Return permutation vector of elements.
Definition: mesh.h:409
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
Mesh::boundary_loaded_size_
unsigned int boundary_loaded_size_
Count of boundary elements loaded from mesh file.
Definition: mesh.h:587
Mesh::tree
DuplicateNodes * tree
Definition: mesh.h:308
Mesh::element_vec_
vector< Element > element_vec_
Definition: mesh.h:578
FilePath
Dedicated class for storing path to input and output files.
Definition: file_path.hh:54
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:447
Mesh::get_input_type
static const Input::Type::Record & get_input_type()
Definition: mesh.cc:76
BIHTree
Class for O(log N) lookup for intersections with a set of bounding boxes.
Definition: bih_tree.hh:38
Mesh::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:526
std::vector< LongIdx >
Mesh::n_edges
unsigned int n_edges() const
Definition: mesh.h:157
Mesh::count_side_types
void count_side_types()
Definition: mesh.cc:474
ElementAccessor
Definition: dh_cell_accessor.hh:32
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
Mesh::get_row_4_el
LongIdx * get_row_4_el() const
Definition: mesh.h:180
Mesh::node_range
Range< NodeAccessor< 3 > > node_range() const
Returns range of nodes.
Definition: mesh.cc:1234
Mesh::boundary
Boundary boundary(uint edge_idx) const
Definition: mesh.cc:270
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:638
Neighbour
Definition: neighbours.h:117
Mesh::read_regions_from_input
void read_regions_from_input(Input::Array region_list)
Definition: mesh.cc:1077
index_types.hh
Mesh::z_coord
@ z_coord
Definition: mesh.h:130
Mesh::get_intersection_search
IntersectionSearch get_intersection_search()
Getter for input type selection for intersection search algorithm.
Definition: mesh.cc:158
storage.hh
Mesh::optimize_memory_locality
bool optimize_memory_locality
Definition: mesh.h:545
Mesh::n_vb_neighbours
unsigned int n_vb_neighbours() const
Definition: mesh.cc:249
exceptions.hh
type_record.hh
Mesh::n_elements
virtual unsigned int n_elements() const
Returns count of boundary or bulk elements.
Definition: mesh.h:389
Mesh::get_node_ds
Distribution * get_node_ds() const
Definition: mesh.h:186
Element
Definition: elements.h:40
Mesh::optimize
void optimize()
Definition: mesh.cc:437
Mesh::el_ds
Distribution * el_ds
Parallel distribution of elements.
Definition: mesh.h:632
Mesh::intersect_element_lists
void intersect_element_lists(vector< unsigned int > const &nodes_list, vector< unsigned int > &intersection_element_list)
Definition: mesh.cc:501
Mesh::n_sides_
int n_sides_
Definition: mesh.h:317
BidirectionalMap::get_position
int get_position(T val) const
Return position of item of given value.
Definition: bidirectional_map.hh:114
RegionSetBase
Definition: region_set.hh:35
Mesh::init_from_input
void init_from_input()
Mesh::output_internal_ngh_data
void output_internal_ngh_data()
Output of neighboring data into raw output.
Definition: mesh.cc:1254
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:463
Mesh::get_local_part
virtual const LongIdx * get_local_part()
Definition: mesh.cc:280
Distribution
Definition: distribution.hh:50
Mesh::node_ids_
BidirectionalMap< int > node_ids_
Maps node ids to indexes into vector node_vec_.
Definition: mesh.h:598
Mesh::BBsearch
@ BBsearch
Definition: mesh.h:117
Mesh::check_mesh_on_read
void check_mesh_on_read()
Definition: mesh.cc:312
Mesh::n_corners
unsigned int n_corners()
Definition: mesh.cc:254
Mesh::find_lower_dim_element
bool find_lower_dim_element(vector< unsigned int > &element_list, unsigned int dim, unsigned int &element_idx)
Definition: mesh.cc:533
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:1117
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:1369
Mesh::get_node_4_loc
LongIdx * get_node_4_loc() const
Definition: mesh.h:189
Mesh::read_gmsh_from_stream
void read_gmsh_from_stream(istream &in)
Mesh::get_bc_mesh
BCMesh * get_bc_mesh()
Create boundary mesh if doesn't exist and return it.
Definition: mesh.cc:1363
mpi.h
accessors.hh
Mesh::el_4_loc
LongIdx * el_4_loc
Index set assigning to local element index its global index.
Definition: mesh.h:630
Mesh::elements_id_maps
void elements_id_maps(vector< LongIdx > &bulk_elements_id, vector< LongIdx > &boundary_elements_id) const
Definition: mesh.cc:831
Mesh::ElementTmpData::dim
unsigned int dim
Definition: mesh.h:460
Mesh::side_nodes
vector< vector< vector< unsigned int > > > side_nodes
Definition: mesh.h:330
Mesh::node_permutation_
std::vector< unsigned int > node_permutation_
Vector of node permutations of optimized mesh (see class MeshOptimizer)
Definition: mesh.h:604
Mesh::canonical_faces
void canonical_faces()
Definition: mesh.cc:392
Mesh::region_db_
RegionDB region_db_
Definition: mesh.h:551
Side
Definition: accessors.hh:404
bidirectional_map.hh
Implementation of bidirectional map.
Mesh::IntersectionSearch
IntersectionSearch
Types of search algorithm for finding intersection candidates.
Definition: mesh.h:114
Mesh::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:403
Mesh::region_db
const RegionDB & region_db() const
Definition: mesh.h:166
Mesh::init
void init()
Definition: mesh.cc:164
Mesh::master_elements
vector< vector< unsigned int > > master_elements
Definition: mesh.h:306
Mesh::mesh_file
FilePath mesh_file()
Return FilePath object representing "mesh_file" input key.
Definition: mesh.h:361
RegionDB
Definition: region.hh:292
Mesh::bih_tree_
std::shared_ptr< BIHTree > bih_tree_
Definition: mesh.h:560
Mesh::node_ds_
Distribution * node_ds_
Parallel distribution of nodes. Depends on elements distribution.
Definition: mesh.h:636
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::same_sides
bool same_sides(const SideIter &si, vector< unsigned int > &side_nodes)
Definition: mesh.cc:555
Mesh::element_to_neigh_vb
void element_to_neigh_vb()
Definition: mesh.cc:769
Armor::Array::size
unsigned int size() const
Definition: armor.hh:728
Mesh::check_element_size
void check_element_size(unsigned int elem_idx) const
Check if given index is in element_vec_.
Definition: mesh.cc:1246
Mesh::get_comm
MPI_Comm get_comm() const
Definition: mesh.h:198
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:1143
Input::Type::Record
Record type proxy class.
Definition: type_record.hh:182
MPI_Comm
int MPI_Comm
Definition: mpi.h:141
Mesh::~Mesh
virtual ~Mesh()
Destructor.
Definition: mesh.cc:215
Mesh::n_bb_neigh
unsigned int n_bb_neigh
Definition: mesh.h:523
Mesh::create_node_element_lists
void create_node_element_lists()
Definition: mesh.cc:488
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:401
Mesh::add_element_to_vector
Element * add_element_to_vector(int id)
Adds element to mesh data structures (element_vec_, element_ids_), returns pointer to this element.
Definition: mesh.cc:1220
Mesh::modify_element_ids
void modify_element_ids(const RegionDB::MapElementIDToRegionID &map)
Definition: mesh.cc:287
Mesh
Definition: mesh.h:77
Mesh::BIHsearch
@ BIHsearch
Definition: mesh.h:115
Mesh::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.h:397
Range
Range helper class.
Definition: range_wrapper.hh:65
accessors_impl.hh
Mesh::edges
std::vector< EdgeData > edges
Vector of MH edges, this should not be part of the geometrical mesh.
Definition: mesh.h:601
Mesh::make_neighbours_and_edges
void make_neighbours_and_edges()
Definition: mesh.cc:572
Mesh::init_node_vector
void init_node_vector(unsigned int size)
Initialize node_vec_, set size.
Definition: mesh.cc:1211
Mesh::check_compatible_mesh
virtual std::shared_ptr< std::vector< LongIdx > > check_compatible_mesh(Mesh &input_mesh)
Definition: mesh.cc:872
Mesh::elem_permutation_
std::vector< unsigned int > elem_permutation_
Vector of element permutations of optimized mesh (see class MeshOptimizer)
Definition: mesh.h:607
Edge
Definition: accessors.hh:308
Input::Array
Accessor to input data conforming to declared Array.
Definition: accessors.hh:566
Mesh::Mesh
Mesh()
Definition: mesh.cc:104
Mesh::n_vb_neigh
unsigned int n_vb_neigh
Definition: mesh.h:523
Mesh::n_boundaries
unsigned int n_boundaries() const
Definition: mesh.h:153
mesh_data.hh
Internal mesh data classes.
RegionIdx
Definition: region.hh:67
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:415
BCMesh
Class represents boundary part of mesh.
Definition: bc_mesh.hh:35
Mesh::check_and_finish
void check_and_finish()
Definition: mesh.cc:1087
Mesh::edge_range
Range< Edge > edge_range() const
Returns range of edges.
Definition: mesh.cc:1240
BoundarySegment::input_type
static Input::Type::Record input_type
Definition: mesh.h:70
NodeAccessor
Definition: mesh.h:55
Mesh::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:394
MPI_COMM_WORLD
#define MPI_COMM_WORLD
Definition: mpi.h:123
region.hh
Mesh::element_ids_
BidirectionalMap< int > element_ids_
Maps element ids to indexes into vector element_vec_.
Definition: mesh.h:590
Armor::Array< double >
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:1135
Mesh::max_edge_sides
unsigned int max_edge_sides(unsigned int dim) const
Definition: mesh.h:211
Mesh::bc_element_tmp_
vector< ElementTmpData > bc_element_tmp_
Hold data of boundary elements during reading mesh (allow to preserve correct order during reading of...
Definition: mesh.h:581
Mesh::part_
std::shared_ptr< Partitioning > part_
Definition: mesh.h:555
Mesh::bulk_size_
unsigned int bulk_size_
Count of bulk elements.
Definition: mesh.h:584
Mesh::row_4_el
LongIdx * row_4_el
Index set assigning to global element index the local index used in parallel vectors.
Definition: mesh.h:628
Mesh::node_elements
const vector< vector< unsigned int > > & node_elements()
Definition: mesh.cc:1189
Mesh::comm_
MPI_Comm comm_
Definition: mesh.h:571
Mesh::global_snap_radius
double global_snap_radius() const
Maximal distance of observe point from Mesh relative to its size.
Definition: mesh.cc:1126
Mesh::boundary_
vector< BoundaryData > boundary_
Definition: mesh.h:292
Mesh::n_local_nodes
unsigned int n_local_nodes() const
Definition: mesh.h:192
Mesh::get_part
virtual Partitioning * get_part()
Definition: mesh.cc:276
Mesh::n_insides
int n_insides
Definition: mesh.h:315
Mesh::bc_mesh_
BCMesh * bc_mesh_
Boundary mesh, object is created only if it's necessary.
Definition: mesh.h:640
Mesh::mixed_intersections
MixedMeshIntersections & mixed_intersections()
Definition: mesh.cc:802
Mesh::BIHonly
@ BIHonly
Definition: mesh.h:116
Mesh::node
NodeAccessor< 3 > node(unsigned int idx) const
Create and return NodeAccessor to node of given idx.
Definition: mesh.cc:825
Mesh::element_accessor
virtual ElementAccessor< 3 > element_accessor(unsigned int idx) const
Create and return ElementAccessor to element of given idx.
Definition: mesh.cc:819
Mesh::n_nodes
virtual unsigned int n_nodes() const
Definition: mesh.h:149
Mesh::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:421
SideIter
Definition: accessors.hh:504
Mesh::edge
Edge edge(uint edge_idx) const
Definition: mesh.cc:264
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:1130
Mesh::vb_neighbours_
vector< Neighbour > vb_neighbours_
Definition: mesh.h:313
Mesh::x_coord
@ x_coord
Definition: mesh.h:130
Mesh::ElementTmpData
Definition: mesh.h:454
DuplicateNodes
Definition: duplicate_nodes.h:96
range_wrapper.hh
Implementation of range helper class.
Mesh::get_el_4_loc
LongIdx * get_el_4_loc() const
Definition: mesh.h:183
Mesh::intersections
std::shared_ptr< MixedMeshIntersections > intersections
Definition: mesh.h:300