Flow123d  DF_patch_fe_mechanics-24d9721
assembly_base.hh
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 assembly_base.hh
15  * @brief
16  */
17 
18 #ifndef ASSEMBLY_BASE_HH_
19 #define ASSEMBLY_BASE_HH_
20 
21 
24 #include "fields/eval_points.hh"
26 #include "fem/update_flags.hh"
27 
28 
29 
30 /**
31  * Base class define empty methods, these methods can be overwite in descendants.
32  */
33 template <unsigned int dim>
35 {
36 public:
41 
42  /// Constructor
43  AssemblyBase(unsigned int quad_order) {
44  quad_ = new QGauss(dim, 2*quad_order);
45  quad_low_ = new QGauss(dim-1, 2*quad_order);
46  }
47 
48  /// Destructor
49  virtual ~AssemblyBase() {
50  delete quad_;
51  delete quad_low_;
52  }
53 
54  /// Assembles the volume integrals on cell.
55  virtual inline void cell_integral(FMT_UNUSED DHCellAccessor cell, FMT_UNUSED unsigned int element_patch_idx) {}
56 
57  /// Assembles the fluxes on the boundary.
58  virtual inline void boundary_side_integral(FMT_UNUSED DHCellSide cell_side) {}
59 
60  /// Assembles the fluxes between sides on the edge.
61  virtual inline void edge_integral(FMT_UNUSED RangeConvert<DHEdgeSide, DHCellSide> edge_side_range) {}
62 
63  /// Assembles the fluxes between elements of different dimensions.
64  virtual inline void dimjoin_intergral(FMT_UNUSED DHCellAccessor cell_lower_dim, FMT_UNUSED DHCellSide neighb_side) {}
65 
66  /// Method prepares object before assemblation (e.g. balance, ...).
67  virtual void begin() {}
68 
69  /// Method finishes object after assemblation (e.g. balance, ...).
70  virtual void end() {}
71 
72  /// Getter of active_integrals.
73  inline int n_active_integrals() const {
74  return active_integrals_;
75  }
76 
77  /// Create integrals according to dim of assembly object
78  void create_integrals(std::shared_ptr<EvalPoints> eval_points, AssemblyIntegrals &integrals) {
80  ASSERT_PERMANENT_PTR(quad_).error("Data member 'quad_' must be initialized if you use bulk integral!\n");
81  integrals_.bulk_ = eval_points->add_bulk<dim>(*quad_);
82  integrals.bulk_[dim-1] = integrals_.bulk_;
83  }
85  ASSERT_PERMANENT_PTR(quad_low_).error("Data member 'quad_low_' must be initialized if you use edge integral!\n");
86  integrals_.edge_ = eval_points->add_edge<dim>(*quad_low_);
87  integrals.edge_[dim-1] = integrals_.edge_;
88  }
89  if ((dim>1) && (active_integrals_ & ActiveIntegrals::coupling)) {
90  ASSERT_PERMANENT_PTR(quad_).error("Data member 'quad_' must be initialized if you use coupling integral!\n");
91  ASSERT_PERMANENT_PTR(quad_low_).error("Data member 'quad_low_' must be initialized if you use coupling integral!\n");
92  integrals_.coupling_ = eval_points->add_coupling<dim>(*quad_low_);
93  integrals.coupling_[dim-2] = integrals_.coupling_;
94  }
96  ASSERT_PERMANENT_PTR(quad_).error("Data member 'quad_' must be initialized if you use boundary integral!\n");
97  ASSERT_PERMANENT_PTR(quad_low_).error("Data member 'quad_low_' must be initialized if you use boundary integral!\n");
98  integrals_.boundary_ = eval_points->add_boundary<dim>(*quad_low_);
99  integrals.boundary_[dim-1] = integrals_.boundary_;
100  }
101  }
102 
103  /// Return BulkPoint range of appropriate dimension
104  inline Range< BulkPoint > bulk_points(unsigned int element_patch_idx) const {
105  return integrals_.bulk_->points(element_patch_idx, element_cache_map_);
106  }
107 
108  /// Return EdgePoint range of appropriate dimension
109  inline Range< EdgePoint > edge_points(const DHCellSide &cell_side) const {
110  ASSERT( cell_side.dim() > 0 ).error("Invalid cell dimension, must be 1, 2 or 3!\n");
111  return integrals_.edge_->points(cell_side, element_cache_map_);
112  }
113 
114  /// Return CouplingPoint range of appropriate dimension
115  inline Range< CouplingPoint > coupling_points(const DHCellSide &cell_side) const {
116  ASSERT( cell_side.dim() > 1 ).error("Invalid cell dimension, must be 2 or 3!\n");
117  return integrals_.coupling_->points(cell_side, element_cache_map_);
118  }
119 
120  /// Return BoundaryPoint range of appropriate dimension
121  inline Range< BoundaryPoint > boundary_points(const DHCellSide &cell_side) const {
122  ASSERT( cell_side.dim() > 0 ).error("Invalid cell dimension, must be 1, 2 or 3!\n");
123  return integrals_.boundary_->points(cell_side, element_cache_map_);
124  }
125 
126  /// Assembles the cell integrals for the given dimension.
127  virtual inline void assemble_cell_integrals(const RevertableList<BulkIntegralData> &bulk_integral_data) {
128  for (unsigned int i=0; i<bulk_integral_data.permanent_size(); ++i) {
129  if (bulk_integral_data[i].cell.dim() != dim) continue;
130  this->cell_integral(bulk_integral_data[i].cell, element_cache_map_->position_in_cache(bulk_integral_data[i].cell.elm_idx()));
131  }
132  // Possibly optimization but not so fast as we would assume (needs change interface of cell_integral)
133  /*for (unsigned int i=0; i<element_cache_map_->n_elements(); ++i) {
134  unsigned int elm_start = element_cache_map_->element_chunk_begin(i);
135  if (element_cache_map_->eval_point_data(elm_start).i_eval_point_ != 0) continue;
136  this->cell_integral(i, element_cache_map_->eval_point_data(elm_start).dh_loc_idx_);
137  }*/
138  }
139 
140  /// Assembles the boundary side integrals for the given dimension.
141  inline void assemble_boundary_side_integrals(const RevertableList<BoundaryIntegralData> &boundary_integral_data) {
142  for (unsigned int i=0; i<boundary_integral_data.permanent_size(); ++i) {
143  if (boundary_integral_data[i].side.dim() != dim) continue;
144  this->boundary_side_integral(boundary_integral_data[i].side);
145  }
146  }
147 
148  /// Assembles the edge integrals for the given dimension.
149  inline void assemble_edge_integrals(const RevertableList<EdgeIntegralData> &edge_integral_data) {
150  for (unsigned int i=0; i<edge_integral_data.permanent_size(); ++i) {
151  auto range = edge_integral_data[i].edge_side_range;
152  if (range.begin()->dim() != dim) continue;
153  this->edge_integral(edge_integral_data[i].edge_side_range);
154  }
155  }
156 
157  /// Assembles the neighbours integrals for the given dimension.
158  inline void assemble_neighbour_integrals(const RevertableList<CouplingIntegralData> &coupling_integral_data) {
159  for (unsigned int i=0; i<coupling_integral_data.permanent_size(); ++i) {
160  if (coupling_integral_data[i].side.dim() != dim) continue;
161  this->dimjoin_intergral(coupling_integral_data[i].cell, coupling_integral_data[i].side);
162  }
163  }
164 
165  /// Register cell points of volume integral
166  virtual inline void add_patch_bulk_points(FMT_UNUSED const RevertableList<BulkIntegralData> &bulk_integral_data) {}
167 
168  /// Register side points of boundary side integral
169  virtual inline void add_patch_bdr_side_points(FMT_UNUSED const RevertableList<BoundaryIntegralData> &boundary_integral_data) {}
170 
171  /// Register side points of edge integral
172  virtual inline void add_patch_edge_points(FMT_UNUSED const RevertableList<EdgeIntegralData> &edge_integral_data) {
173  }
174 
175  /// Register bulk and side points of coupling integral
176  virtual inline void add_patch_coupling_integrals(FMT_UNUSED const RevertableList<CouplingIntegralData> &coupling_integral_data) {}
177 
178 protected:
179  /// Set of integral of given dimension necessary in assemblation
180  struct DimIntegrals {
181  std::shared_ptr<BulkIntegral> bulk_; ///< Bulk integrals of elements
182  std::shared_ptr<EdgeIntegral> edge_; ///< Edge integrals between elements of same dimensions
183  std::shared_ptr<CouplingIntegral> coupling_; ///< Coupling integrals between elements of dimensions dim and dim-1
184  std::shared_ptr<BoundaryIntegral> boundary_; ///< Boundary integrals betwwen side and boundary element of dim-1
185  };
186 
187  /**
188  * Default constructor.
189  *
190  * Be aware if you use this constructor. Quadrature objects must be initialized manually in descendant.
191  */
193  : quad_(nullptr), quad_low_(nullptr) {}
194 
195  /// Print update flags to string format.
196  std::string print_update_flags(UpdateFlags u) const {
197  std::stringstream s;
198  s << u;
199  return s.str();
200  }
201 
202  Quadrature *quad_; ///< Quadrature used in assembling methods.
203  Quadrature *quad_low_; ///< Quadrature used in assembling methods (dim-1).
204  int active_integrals_; ///< Holds mask of active integrals.
205  DimIntegrals integrals_; ///< Set of used integrals.
206  ElementCacheMap *element_cache_map_; ///< ElementCacheMap shared with GenericAssembly object.
207 };
208 
209 
210 template <unsigned int dim>
211 class AssemblyBasePatch : public AssemblyBase<dim>
212 {
213 public:
218 
220  : AssemblyBase<dim>(), fe_values_(fe_values) {
221  this->quad_ = fe_values_->get_quadrature(dim, true); // bulk quadrature
222  this->quad_low_ = fe_values_->get_quadrature(dim, false); // side quadrature
223  }
224 
225  /// Register cell points of volume integral
226  inline void add_patch_bulk_points(const RevertableList<BulkIntegralData> &bulk_integral_data) override {
227  for (unsigned int i=0; i<bulk_integral_data.permanent_size(); ++i) {
228  if (bulk_integral_data[i].cell.dim() != dim) continue;
229  uint element_patch_idx = this->element_cache_map_->position_in_cache(bulk_integral_data[i].cell.elm_idx());
230  uint elm_pos = fe_values_->register_element(bulk_integral_data[i].cell, element_patch_idx);
231  uint i_point = 0;
232  for (auto p : this->bulk_points(element_patch_idx) ) {
233  unsigned int value_cache_idx = p.elm_cache_map()->element_eval_point(p.elem_patch_idx(), p.eval_point_idx());
234  fe_values_->register_bulk_point(bulk_integral_data[i].cell, elm_pos, value_cache_idx, i_point++);
235  }
236  }
237  }
238 
239  /// Register side points of boundary side integral
240  inline void add_patch_bdr_side_points(const RevertableList<BoundaryIntegralData> &boundary_integral_data) override {
241  for (unsigned int i=0; i<boundary_integral_data.permanent_size(); ++i) {
242  if (boundary_integral_data[i].side.dim() != dim) continue;
243  uint side_pos = fe_values_->register_side(boundary_integral_data[i].side);
244  uint i_point = 0;
245  for (auto p : this->boundary_points(boundary_integral_data[i].side) ) {
246  unsigned int value_cache_idx = p.elm_cache_map()->element_eval_point(p.elem_patch_idx(), p.eval_point_idx());
247  fe_values_->register_side_point(boundary_integral_data[i].side, side_pos, value_cache_idx, i_point++);
248  }
249  }
250  }
251 
252  /// Register side points of edge integral
253  inline void add_patch_edge_points(const RevertableList<EdgeIntegralData> &edge_integral_data) override {
254  for (unsigned int i=0; i<edge_integral_data.permanent_size(); ++i) {
255  auto range = edge_integral_data[i].edge_side_range;
256  if (range.begin()->dim() != dim) continue;
257  for( DHCellSide edge_side : range )
258  {
259  uint side_pos = fe_values_->register_side(edge_side);
260  uint i_point = 0;
261  for (auto p : this->edge_points(edge_side) ) {
262  unsigned int value_cache_idx = p.elm_cache_map()->element_eval_point(p.elem_patch_idx(), p.eval_point_idx());
263  fe_values_->register_side_point(edge_side, side_pos, value_cache_idx, i_point++);
264  }
265  }
266  }
267  }
268 
269  /// Register bulk and side points of coupling integral
270  inline void add_patch_coupling_integrals(const RevertableList<CouplingIntegralData> &coupling_integral_data) override {
271  uint side_pos, element_patch_idx, elm_pos=0;
272  uint last_element_idx = -1;
273 
274  for (unsigned int i=0; i<coupling_integral_data.permanent_size(); ++i) {
275  if (coupling_integral_data[i].side.dim() != dim) continue;
276  side_pos = fe_values_->register_side(coupling_integral_data[i].side);
277  if (coupling_integral_data[i].cell.elm_idx() != last_element_idx) {
278  element_patch_idx = this->element_cache_map_->position_in_cache(coupling_integral_data[i].cell.elm_idx());
279  elm_pos = fe_values_->register_element(coupling_integral_data[i].cell, element_patch_idx);
280  }
281 
282  uint i_bulk_point = 0, i_side_point = 0;
283  for (auto p_high : this->coupling_points(coupling_integral_data[i].side) )
284  {
285  unsigned int value_cache_idx = p_high.elm_cache_map()->element_eval_point(p_high.elem_patch_idx(), p_high.eval_point_idx());
286  fe_values_->register_side_point(coupling_integral_data[i].side, side_pos, value_cache_idx, i_side_point++);
287  if (coupling_integral_data[i].cell.elm_idx() != last_element_idx) {
288  auto p_low = p_high.lower_dim(coupling_integral_data[i].cell);
289  value_cache_idx = p_low.elm_cache_map()->element_eval_point(p_low.elem_patch_idx(), p_low.eval_point_idx());
290  fe_values_->register_bulk_point(coupling_integral_data[i].cell, elm_pos, value_cache_idx, i_bulk_point++);
291  }
292  }
293  last_element_idx = coupling_integral_data[i].cell.elm_idx();
294  }
295  }
296 
297  /// Return BulkValues object
298  inline unsigned int n_dofs() {
299  return fe_values_->template n_dofs<dim>();
300  }
301 
302  /// Return BulkValues object
304  return fe_values_->template bulk_values<dim>();
305  }
306 
307  /// Return SideValues object
309  return fe_values_->template side_values<dim>();
310  }
311 
312  /// Return JoinValues object
314  return fe_values_->template join_values<dim>();
315  }
316 
317 protected:
318  PatchFEValues<3> *fe_values_; ///< Common FEValues object over all dimensions
319 };
320 
321 
322 #endif /* ASSEMBLY_BASE_HH_ */
#define ASSERT(expr)
Definition: asserts.hh:351
#define ASSERT_PERMANENT_PTR(ptr)
Definition of assert macro checking non-null pointer (PTR)
Definition: asserts.hh:337
AssemblyBasePatch(PatchFEValues< 3 > *fe_values)
void add_patch_coupling_integrals(const RevertableList< CouplingIntegralData > &coupling_integral_data) override
Register bulk and side points of coupling integral.
GenericAssemblyBase::CouplingIntegralData CouplingIntegralData
void add_patch_bulk_points(const RevertableList< BulkIntegralData > &bulk_integral_data) override
Register cell points of volume integral.
void add_patch_edge_points(const RevertableList< EdgeIntegralData > &edge_integral_data) override
Register side points of edge integral.
JoinValues< dim > join_values()
Return JoinValues object.
PatchFEValues< 3 > * fe_values_
Common FEValues object over all dimensions.
void add_patch_bdr_side_points(const RevertableList< BoundaryIntegralData > &boundary_integral_data) override
Register side points of boundary side integral.
BulkValues< dim > bulk_values()
Return BulkValues object.
GenericAssemblyBase::BoundaryIntegralData BoundaryIntegralData
unsigned int n_dofs()
Return BulkValues object.
GenericAssemblyBase::EdgeIntegralData EdgeIntegralData
GenericAssemblyBase::BulkIntegralData BulkIntegralData
SideValues< dim > side_values()
Return SideValues object.
virtual void assemble_cell_integrals(const RevertableList< BulkIntegralData > &bulk_integral_data)
Assembles the cell integrals for the given dimension.
Range< BulkPoint > bulk_points(unsigned int element_patch_idx) const
Return BulkPoint range of appropriate dimension.
virtual void boundary_side_integral(FMT_UNUSED DHCellSide cell_side)
Assembles the fluxes on the boundary.
virtual void end()
Method finishes object after assemblation (e.g. balance, ...).
virtual void add_patch_edge_points(FMT_UNUSED const RevertableList< EdgeIntegralData > &edge_integral_data)
Register side points of edge integral.
virtual ~AssemblyBase()
Destructor.
virtual void cell_integral(FMT_UNUSED DHCellAccessor cell, FMT_UNUSED unsigned int element_patch_idx)
Assembles the volume integrals on cell.
Range< EdgePoint > edge_points(const DHCellSide &cell_side) const
Return EdgePoint range of appropriate dimension.
GenericAssemblyBase::CouplingIntegralData CouplingIntegralData
Quadrature * quad_
Quadrature used in assembling methods.
void create_integrals(std::shared_ptr< EvalPoints > eval_points, AssemblyIntegrals &integrals)
Create integrals according to dim of assembly object.
void assemble_edge_integrals(const RevertableList< EdgeIntegralData > &edge_integral_data)
Assembles the edge integrals for the given dimension.
virtual void add_patch_coupling_integrals(FMT_UNUSED const RevertableList< CouplingIntegralData > &coupling_integral_data)
Register bulk and side points of coupling integral.
DimIntegrals integrals_
Set of used integrals.
virtual void begin()
Method prepares object before assemblation (e.g. balance, ...).
std::string print_update_flags(UpdateFlags u) const
Print update flags to string format.
Quadrature * quad_low_
Quadrature used in assembling methods (dim-1).
virtual void add_patch_bdr_side_points(FMT_UNUSED const RevertableList< BoundaryIntegralData > &boundary_integral_data)
Register side points of boundary side integral.
GenericAssemblyBase::BulkIntegralData BulkIntegralData
void assemble_neighbour_integrals(const RevertableList< CouplingIntegralData > &coupling_integral_data)
Assembles the neighbours integrals for the given dimension.
Range< CouplingPoint > coupling_points(const DHCellSide &cell_side) const
Return CouplingPoint range of appropriate dimension.
virtual void dimjoin_intergral(FMT_UNUSED DHCellAccessor cell_lower_dim, FMT_UNUSED DHCellSide neighb_side)
Assembles the fluxes between elements of different dimensions.
virtual void edge_integral(FMT_UNUSED RangeConvert< DHEdgeSide, DHCellSide > edge_side_range)
Assembles the fluxes between sides on the edge.
int active_integrals_
Holds mask of active integrals.
Range< BoundaryPoint > boundary_points(const DHCellSide &cell_side) const
Return BoundaryPoint range of appropriate dimension.
AssemblyBase(unsigned int quad_order)
Constructor.
void assemble_boundary_side_integrals(const RevertableList< BoundaryIntegralData > &boundary_integral_data)
Assembles the boundary side integrals for the given dimension.
GenericAssemblyBase::EdgeIntegralData EdgeIntegralData
virtual void add_patch_bulk_points(FMT_UNUSED const RevertableList< BulkIntegralData > &bulk_integral_data)
Register cell points of volume integral.
int n_active_integrals() const
Getter of active_integrals.
ElementCacheMap * element_cache_map_
ElementCacheMap shared with GenericAssembly object.
GenericAssemblyBase::BoundaryIntegralData BoundaryIntegralData
Cell accessor allow iterate over DOF handler cells.
Side accessor allows to iterate over sides of DOF handler cell.
unsigned int dim() const
Return dimension of element appropriate to the side.
Directing class of FieldValueCache.
unsigned int position_in_cache(unsigned mesh_elm_idx, bool bdr=false) const
Return position of element stored in ElementCacheMap.
uint register_element(DHCellAccessor cell, uint element_patch_idx)
Register element to patch_point_vals_ table by dimension of element.
uint register_bulk_point(DHCellAccessor cell, uint elem_table_row, uint value_patch_idx, uint i_point_on_elem)
Register bulk point to patch_point_vals_ table by dimension of element.
uint register_side(DHCellSide cell_side)
Register side to patch_point_vals_ table by dimension of side.
Quadrature * get_quadrature(uint dim, bool is_bulk) const
Return bulk or side quadrature of given dimension.
uint register_side_point(DHCellSide cell_side, uint elem_table_row, uint value_patch_idx, uint i_point_on_side)
Register side point to patch_point_vals_ table by dimension of side.
Symmetric Gauss-Legendre quadrature formulae on simplices.
Base class for quadrature rules on simplices in arbitrary dimensions.
Definition: quadrature.hh:48
Range helper class.
@ coupling
@ boundary
@ bulk
@ edge
unsigned int uint
#define FMT_UNUSED
Definition: posix.h:75
Definitions of particular quadrature rules on simplices.
Set of integral of given dimension necessary in assemblation.
std::shared_ptr< EdgeIntegral > edge_
Edge integrals between elements of same dimensions.
std::shared_ptr< CouplingIntegral > coupling_
Coupling integrals between elements of dimensions dim and dim-1.
std::shared_ptr< BulkIntegral > bulk_
Bulk integrals of elements.
std::shared_ptr< BoundaryIntegral > boundary_
Boundary integrals betwwen side and boundary element of dim-1.
Set of all used integral necessary in assemblation.
std::array< std::shared_ptr< BulkIntegral >, 3 > bulk_
Bulk integrals of elements of dimensions 1, 2, 3.
std::array< std::shared_ptr< CouplingIntegral >, 2 > coupling_
Coupling integrals between elements of dimensions 1-2, 2-3.
std::array< std::shared_ptr< BoundaryIntegral >, 3 > boundary_
Boundary integrals betwwen elements of dimensions 1, 2, 3 and boundaries.
std::array< std::shared_ptr< EdgeIntegral >, 3 > edge_
Edge integrals between elements of dimensions 1, 2, 3.
std::size_t permanent_size() const
Return permanent size of list.
Enum type UpdateFlags indicates which quantities are to be recomputed on each finite element cell.
UpdateFlags
Enum type UpdateFlags indicates which quantities are to be recomputed on each finite element cell.
Definition: update_flags.hh:68