25 #ifndef DUFFY_QUADRATURE_HPP_INCLUDED
26 #define DUFFY_QUADRATURE_HPP_INCLUDED
29 #include "../library/lib_shape.hpp"
43 template <
class QuadFamily,
class LSet>
48 "The LSet parameter must be derived from shape_set_base<LSet>");
58 typedef typename domain_t::xi_t
xi_t;
70 typedef Eigen::Matrix<scalar_t, quad_domain::num_corners, domain_t::dimension> coords_t;
83 unsigned const *array,
84 xi_t const &sing_coord,
88 unsigned num_duffies = *array;
92 source_quad_type source(degree);
95 coords.row(0) = coords.row(1) = sing_coord;
97 for (
size_t d = 0; d < num_duffies; ++d)
99 coords.row(2) = domain_t::get_corner(array[d]);
100 coords.row(3) = domain_t::get_corner(array[d+1]);
102 result += source.template transform<quad_1_shape_set>(coords);
121 lset_t::corner_at(singular_corner),
133 static unsigned const n = domain_t::num_corners;
134 unsigned face_indices[n+2];
136 for (
unsigned c = 0; c <= n; ++c)
137 face_indices[1+c] = c % n;
139 return duffy_impl(degree, face_indices, singular_point, result);
149 static unsigned const duffy_corner_indices[3][2+1];
157 static unsigned const duffy_corner_indices[4][3+1];
159 static unsigned const duffy_face_indices[5+1];
167 static unsigned const duffy_corner_indices[6][3+1];
175 static unsigned const duffy_corner_indices[9][5+1];
180 #endif // DUFFY_QUADRATURE_HPP_INCLUDED