Loading [MathJax]/extensions/tex2jax.js
NiHu  2.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
duffy_quadrature.hpp
Go to the documentation of this file.
1 // This file is a part of NiHu, a C++ BEM template library.
2 //
3 // Copyright (C) 2012-2014 Peter Fiala <fiala@hit.bme.hu>
4 // Copyright (C) 2012-2014 Peter Rucz <rucz@hit.bme.hu>
5 //
6 // This program is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 
25 #ifndef DUFFY_QUADRATURE_HPP_INCLUDED
26 #define DUFFY_QUADRATURE_HPP_INCLUDED
27 
28 #include "quadrature.hpp"
29 #include "../library/lib_shape.hpp"
30 
31 namespace NiHu
32 {
33 
35 template <class LSet>
36 struct duffy_traits;
37 
43 template <class QuadFamily, class LSet>
45 {
46  // CRTP check
47  static_assert(std::is_base_of<shape_set_base<LSet>, LSet>::value,
48  "The LSet parameter must be derived from shape_set_base<LSet>");
49 public:
51  typedef QuadFamily quadrature_family_tag;
53  typedef LSet lset_t;
54 
56  typedef typename lset_t::domain_t domain_t;
58  typedef typename domain_t::xi_t xi_t;
60  typedef typename domain_t::scalar_t scalar_t;
63 
64 private:
68  typedef typename quadrature_type<quadrature_family_tag, quad_domain>::type source_quad_type;
70  typedef Eigen::Matrix<scalar_t, quad_domain::num_corners, domain_t::dimension> coords_t;
71 
81  static ret_quad_type &duffy_impl(
82  unsigned degree,
83  unsigned const *array,
84  xi_t const &sing_coord,
85  ret_quad_type &result)
86  {
87  // the first array element is the number of triangles
88  unsigned num_duffies = *array;
89  array++;
90 
91  // create a regular quadrature
92  source_quad_type source(degree);
93 
94  coords_t coords;
95  coords.row(0) = coords.row(1) = sing_coord;
96 
97  for (size_t d = 0; d < num_duffies; ++d)
98  {
99  coords.row(2) = domain_t::get_corner(array[d]);
100  coords.row(3) = domain_t::get_corner(array[d+1]);
101 
102  result += source.template transform<quad_1_shape_set>(coords);
103  }
104 
105  return result;
106  }
107 
108 public:
115  static ret_quad_type on_corner(unsigned degree, unsigned singular_corner)
116  {
117  ret_quad_type result;
118  return duffy_impl(
119  degree,
121  lset_t::corner_at(singular_corner),
122  result);
123  }
124 
131  static ret_quad_type on_face(unsigned degree, xi_t const &singular_point)
132  {
133  static unsigned const n = domain_t::num_corners;
134  unsigned face_indices[n+2];
135  face_indices[0] = n;
136  for (unsigned c = 0; c <= n; ++c)
137  face_indices[1+c] = c % n;
138  ret_quad_type result;
139  return duffy_impl(degree, face_indices, singular_point, result);
140  }
141 }; // end of class duffy_quadrature
142 
143 
145 template <>
147 {
149  static unsigned const duffy_corner_indices[3][2+1];
150 };
151 
153 template <>
155 {
157  static unsigned const duffy_corner_indices[4][3+1];
159  static unsigned const duffy_face_indices[5+1];
160 };
161 
163 template <>
165 {
167  static unsigned const duffy_corner_indices[6][3+1];
168 };
169 
171 template <>
173 {
175  static unsigned const duffy_corner_indices[9][5+1];
176 };
177 
178 }
179 
180 #endif // DUFFY_QUADRATURE_HPP_INCLUDED
181 
NiHu::duffy_quadrature::ret_quad_type
quadrature_type< quadrature_family_tag, domain_t >::type ret_quad_type
the return quadrature type
Definition: duffy_quadrature.hpp:62
NiHu::shape_set_base
Shapeset base class for CRTP.
Definition: shapeset.hpp:195
NiHu::duffy_quadrature::on_corner
static ret_quad_type on_corner(unsigned degree, unsigned singular_corner)
create a Duffy quadrature that is singular on one corner of the selected element
Definition: duffy_quadrature.hpp:115
quadrature.hpp
implementation of class NiHu::quadrature_elem, NiHu::quadrature_base
NiHu::duffy_quadrature::on_face
static ret_quad_type on_face(unsigned degree, xi_t const &singular_point)
create a Duffy quadrature that is singular on the face of the selected element
Definition: duffy_quadrature.hpp:131
NiHu::duffy_quadrature::xi_t
domain_t::xi_t xi_t
base domain variable type
Definition: duffy_quadrature.hpp:58
NiHu::duffy_quadrature
Transform regular quadratures into weakly singular ,,Duffy-type'' quadratures.
Definition: duffy_quadrature.hpp:44
NiHu::quad_2_shape_set
quadratic 9-noded quad shape function set
Definition: lib_shape.hpp:742
NiHu::tria_2_shape_set
quadratic 6-noded tria shape function set
Definition: lib_shape.hpp:598
NiHu::duffy_quadrature::quadrature_family_tag
QuadFamily quadrature_family_tag
template argument as nested type
Definition: duffy_quadrature.hpp:48
NiHu::isoparam_shape_set
Isoparametric shape sets.
Definition: shapeset.hpp:409
NiHu::duffy_quadrature::lset_t
LSet lset_t
template argument as nested type
Definition: duffy_quadrature.hpp:53
NiHu::quadrature_type
metafunction to assign a quadrature type to a quadrature family and a domain
Definition: quadrature.hpp:326
NiHu::duffy_quadrature::scalar_t
domain_t::scalar_t scalar_t
domain's scalar type
Definition: duffy_quadrature.hpp:60
NiHu::duffy_traits
Traits class of a Duffy quadrature.
Definition: duffy_quadrature.hpp:36
NiHu::duffy_quadrature::domain_t
lset_t::domain_t domain_t
element's domain type
Definition: duffy_quadrature.hpp:56