37 boost::multi_index::indexed_by<
39 boost::multi_index::hashed_unique<
44 member<BaseCacheItem, int, &BaseCacheItem::order>,
45 member<BaseCacheItem, int, &BaseCacheItem::nb_gauss_pts>>>>
51 boost::multi_index::indexed_by<
53 boost::multi_index::hashed_unique<
58 member<HDivBaseCacheItem, int, &HDivBaseCacheItem::order>,
61 member<HDivBaseCacheItem, int, &HDivBaseCacheItem::n0>,
62 member<HDivBaseCacheItem, int, &HDivBaseCacheItem::n1>,
63 member<HDivBaseCacheItem, int, &HDivBaseCacheItem::n2>>>>
67 static std::array<std::map<const void *, BaseCacheMI>,
LASTBASE>
69 static std::array<std::map<const void *, BaseCacheMI>,
LASTBASE>
71 static std::array<std::map<const void *, HDivBaseFaceCacheMI>,
LASTBASE>
73 static std::array<std::map<const void *, BaseCacheMI>,
LASTBASE>
77std::array<std::map<const void *, TetBaseCache::BaseCacheMI>,
LASTBASE>
79std::array<std::map<const void *, TetBaseCache::BaseCacheMI>,
LASTBASE>
81std::array<std::map<const void *, TetBaseCache::HDivBaseFaceCacheMI>,
LASTBASE>
83std::array<std::map<const void *, TetBaseCache::BaseCacheMI>,
LASTBASE>
87TetPolynomialBase::query_interface(boost::typeindex::type_index type_index,
100 auto erase = [&](
auto cache) {
101 if (cache.find(
vPtr) != cache.end())
105 for (
auto b = 0; b !=
LASTBASE; ++b) {
136 PetscErrorCode (*base_polynomials)(
int p,
double s,
double *diff_s,
double *
L,
137 double *diffL,
const int dim) =
140 int nb_gauss_pts = pts.size2();
142 int sense[6],
order[6];
148 double *h1_edge_n[6], *diff_h1_egde_n[6];
149 for (
int ee = 0; ee != 6; ++ee) {
152 "data inconsistency");
157 data.
dataOnEntities[MBEDGE][ee].getN(base).resize(nb_gauss_pts, nb_dofs,
159 data.
dataOnEntities[MBEDGE][ee].getDiffN(base).resize(nb_gauss_pts,
170 h1_edge_n, diff_h1_egde_n, nb_gauss_pts, base_polynomials);
172 for (
int ee = 0; ee != 6; ++ee) {
174 data.
dataOnEntities[MBEDGE][ee].getDiffN(base).resize(0, 0,
false);
183 double *h1_face_n[4], *diff_h1_face_n[4];
184 for (
int ff = 0; ff != 4; ++ff) {
187 "data inconsistency");
191 data.
dataOnEntities[MBTRI][ff].getN(base).resize(nb_gauss_pts, nb_dofs,
193 data.
dataOnEntities[MBTRI][ff].getDiffN(base).resize(nb_gauss_pts,
210 h1_face_n, diff_h1_face_n, nb_gauss_pts, base_polynomials);
213 for (
int ff = 0; ff != 4; ++ff) {
215 data.
dataOnEntities[MBTRI][ff].getDiffN(base).resize(0, 0,
false);
223 data.
dataOnEntities[MBTET][0].getN(base).resize(nb_gauss_pts, nb_vol_dofs,
226 3 * nb_vol_dofs,
false);
233 nb_gauss_pts, base_polynomials);
248 const int nb_gauss_pts = pts.size2();
251 (
unsigned int)nb_gauss_pts)
253 "Base functions or nodes has wrong number of integration points "
259 auto &ptr = data.getBBAlphaIndicesSharedPtr(
field_name);
273 auto &ptr = data.getBBDiffNSharedPtr(
field_name);
279 auto get_alpha_by_name_ptr =
281 const std::string &
field_name) -> boost::shared_ptr<MatrixInt> & {
282 return data.getBBAlphaIndicesSharedPtr(
field_name);
285 auto get_base_by_name_ptr =
287 const std::string &
field_name) -> boost::shared_ptr<MatrixDouble> & {
291 auto get_diff_base_by_name_ptr =
293 const std::string &
field_name) -> boost::shared_ptr<MatrixDouble> & {
297 auto get_alpha_by_order_ptr =
298 [](
auto &data,
const size_t o) -> boost::shared_ptr<MatrixInt> & {
299 return data.getBBAlphaIndicesByOrderSharedPtr(o);
302 auto get_base_by_order_ptr =
303 [](
auto &data,
const size_t o) -> boost::shared_ptr<MatrixDouble> & {
304 return data.getBBNByOrderSharedPtr(o);
307 auto get_diff_base_by_order_ptr =
308 [](
auto &data,
const size_t o) -> boost::shared_ptr<MatrixDouble> & {
309 return data.getBBDiffNByOrderSharedPtr(o);
313 auto &vertex_alpha = get_alpha(vert_ent_data);
314 vertex_alpha.resize(4, 4,
false);
315 vertex_alpha.clear();
316 for (
int n = 0;
n != 4; ++
n)
319 auto &vert_get_n = get_base(vert_ent_data);
320 auto &vert_get_diff_n = get_diff_base(vert_ent_data);
321 vert_get_n.resize(nb_gauss_pts, 4,
false);
322 vert_get_diff_n.resize(nb_gauss_pts, 12,
false);
324 1,
lambda.size1(), vertex_alpha.size1(), &vertex_alpha(0, 0),
326 &vert_get_diff_n(0, 0));
327 for (
int n = 0;
n != 4; ++
n) {
328 const double f = boost::math::factorial<double>(
330 for (
int g = 0;
g != nb_gauss_pts; ++
g) {
331 vert_get_n(
g,
n) *= f;
332 for (
int d = 0; d != 3; ++d)
333 vert_get_diff_n(
g, 3 *
n + d) *= f;
341 "Wrong size of ent data");
343 constexpr int edges_nodes[6][2] = {{0, 1}, {1, 2}, {2, 0},
344 {0, 3}, {1, 3}, {2, 3}};
345 for (
int ee = 0; ee != 6; ++ee) {
347 const int sense = ent_data.getSense();
350 "Sense of the edge unknown");
351 const int order = ent_data.getOrder();
355 if (get_alpha_by_order_ptr(ent_data,
order)) {
357 get_alpha_by_order_ptr(ent_data,
order);
359 get_base_by_order_ptr(ent_data,
order);
360 get_diff_base_by_name_ptr(ent_data,
field_name) =
361 get_diff_base_by_order_ptr(ent_data,
order);
363 auto &get_n = get_base(ent_data);
364 auto &get_diff_n = get_diff_base(ent_data);
365 get_n.resize(nb_gauss_pts, nb_dofs,
false);
366 get_diff_n.resize(nb_gauss_pts, 3 * nb_dofs,
false);
369 edge_alpha.resize(nb_dofs, 4,
false);
373 for (
int i = 0;
i != edge_alpha.size1(); ++
i) {
374 int a = edge_alpha(
i, edges_nodes[ee][0]);
375 edge_alpha(
i, edges_nodes[ee][0]) =
376 edge_alpha(
i, edges_nodes[ee][1]);
377 edge_alpha(
i, edges_nodes[ee][1]) =
a;
381 order,
lambda.size1(), edge_alpha.size1(), &edge_alpha(0, 0),
385 get_alpha_by_order_ptr(ent_data,
order) =
387 get_base_by_order_ptr(ent_data,
order) =
389 get_diff_base_by_order_ptr(ent_data,
order) =
390 get_diff_base_by_name_ptr(ent_data,
field_name);
395 for (
int ee = 0; ee != 6; ++ee) {
397 ent_data.getBBAlphaIndicesSharedPtr(
field_name).reset();
398 auto &get_n = get_base(ent_data);
399 auto &get_diff_n = get_diff_base(ent_data);
400 get_n.resize(nb_gauss_pts, 0,
false);
401 get_diff_n.resize(nb_gauss_pts, 0,
false);
409 "Wrong size of ent data");
415 for (
int ff = 0; ff != 4; ++ff) {
417 const int order = ent_data.getOrder();
421 if (get_alpha_by_order_ptr(ent_data,
order)) {
423 get_alpha_by_order_ptr(ent_data,
order);
425 get_base_by_order_ptr(ent_data,
order);
426 get_diff_base_by_name_ptr(ent_data,
field_name) =
427 get_diff_base_by_order_ptr(ent_data,
order);
430 auto &get_n = get_base(ent_data);
431 auto &get_diff_n = get_diff_base(ent_data);
432 get_n.resize(nb_gauss_pts, nb_dofs,
false);
433 get_diff_n.resize(nb_gauss_pts, 3 * nb_dofs,
false);
435 auto &face_alpha = get_alpha(ent_data);
436 face_alpha.resize(nb_dofs, 4,
false);
440 senseFaceAlpha.resize(face_alpha.size1(), face_alpha.size2(),
false);
442 constexpr int tri_nodes[4][3] = {
443 {0, 1, 3}, {1, 2, 3}, {0, 2, 3}, {0, 1, 2}};
444 for (
int d = 0; d != nb_dofs; ++d)
445 for (
int n = 0;
n != 3; ++
n)
447 face_alpha(d, tri_nodes[ff][
n]);
450 order,
lambda.size1(), face_alpha.size1(), &face_alpha(0, 0),
454 get_alpha_by_order_ptr(ent_data,
order) =
456 get_base_by_order_ptr(ent_data,
order) =
458 get_diff_base_by_order_ptr(ent_data,
order) =
459 get_diff_base_by_name_ptr(ent_data,
field_name);
464 for (
int ff = 0; ff != 4; ++ff) {
466 ent_data.getBBAlphaIndicesSharedPtr(
field_name).reset();
467 auto &get_n = get_base(ent_data);
468 auto &get_diff_n = get_diff_base(ent_data);
469 get_n.resize(nb_gauss_pts, 0,
false);
470 get_diff_n.resize(nb_gauss_pts, 0,
false);
477 "Wrong size ent of ent data");
480 const int order = ent_data.getOrder();
482 if (get_alpha_by_order_ptr(ent_data,
order)) {
484 get_alpha_by_order_ptr(ent_data,
order);
486 get_base_by_order_ptr(ent_data,
order);
487 get_diff_base_by_name_ptr(ent_data,
field_name) =
488 get_diff_base_by_order_ptr(ent_data,
order);
491 auto &get_n = get_base(ent_data);
492 auto &get_diff_n = get_diff_base(ent_data);
493 get_n.resize(nb_gauss_pts, nb_dofs,
false);
494 get_diff_n.resize(nb_gauss_pts, 3 * nb_dofs,
false);
496 auto &tet_alpha = get_alpha(ent_data);
497 tet_alpha.resize(nb_dofs, 4,
false);
501 order,
lambda.size1(), tet_alpha.size1(), &tet_alpha(0, 0),
505 get_alpha_by_order_ptr(ent_data,
order) =
507 get_base_by_order_ptr(ent_data,
order) =
509 get_diff_base_by_order_ptr(ent_data,
order) =
510 get_diff_base_by_name_ptr(ent_data,
field_name);
515 ent_data.getBBAlphaIndicesSharedPtr(
field_name).reset();
516 auto &get_n = get_base(ent_data);
517 auto &get_diff_n = get_diff_base(ent_data);
518 get_n.resize(nb_gauss_pts, 0,
false);
519 get_diff_n.resize(nb_gauss_pts, 0,
false);
549 PetscErrorCode (*base_polynomials)(
int p,
double s,
double *diff_s,
double *
L,
550 double *diffL,
const int dim) =
553 int nb_gauss_pts = pts.size2();
557 data.
dataOnEntities[MBTET][0].getN(base).resize(nb_gauss_pts, nb_dofs,
false);
558 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts, 3 * nb_dofs,
574 auto interior_cache_ptr = get_interior_cache(base);
576 if (interior_cache_ptr) {
578 interior_cache_ptr->find(boost::make_tuple(volume_order, nb_gauss_pts));
579 if (it != interior_cache_ptr->end()) {
581 noalias(data.
dataOnEntities[MBTET][0].getDiffN(base)) = it->diffN;
592 nb_gauss_pts, base_polynomials);
594 if (interior_cache_ptr) {
595 auto p = interior_cache_ptr->emplace(
610 const int nb_gauss_pts = pts.size2();
613 (
unsigned int)nb_gauss_pts)
615 "Base functions or nodes has wrong number of integration points "
621 auto &ptr = data.getBBAlphaIndicesSharedPtr(
field_name);
635 auto &ptr = data.getBBDiffNSharedPtr(
field_name);
641 auto get_alpha_by_name_ptr =
643 const std::string &
field_name) -> boost::shared_ptr<MatrixInt> & {
644 return data.getBBAlphaIndicesSharedPtr(
field_name);
647 auto get_base_by_name_ptr =
649 const std::string &
field_name) -> boost::shared_ptr<MatrixDouble> & {
653 auto get_diff_base_by_name_ptr =
655 const std::string &
field_name) -> boost::shared_ptr<MatrixDouble> & {
659 auto get_alpha_by_order_ptr =
660 [](
auto &data,
const size_t o) -> boost::shared_ptr<MatrixInt> & {
661 return data.getBBAlphaIndicesByOrderSharedPtr(o);
664 auto get_base_by_order_ptr =
665 [](
auto &data,
const size_t o) -> boost::shared_ptr<MatrixDouble> & {
666 return data.getBBNByOrderSharedPtr(o);
669 auto get_diff_base_by_order_ptr =
670 [](
auto &data,
const size_t o) -> boost::shared_ptr<MatrixDouble> & {
671 return data.getBBDiffNByOrderSharedPtr(o);
677 "Wrong size ent of ent data");
680 const int order = ent_data.getOrder();
683 if (get_alpha_by_order_ptr(ent_data,
order)) {
685 get_alpha_by_order_ptr(ent_data,
order);
687 get_base_by_order_ptr(ent_data,
order);
688 get_diff_base_by_name_ptr(ent_data,
field_name) =
689 get_diff_base_by_order_ptr(ent_data,
order);
692 auto &get_n = get_base(ent_data);
693 auto &get_diff_n = get_diff_base(ent_data);
694 get_n.resize(nb_gauss_pts, nb_dofs,
false);
695 get_diff_n.resize(nb_gauss_pts, 3 * nb_dofs,
false);
703 "Inconsistent number of DOFs");
705 auto &tri_alpha = get_alpha(ent_data);
716 "Inconsistent number of DOFs");
718 auto &tet_alpha = get_alpha(ent_data);
719 tet_alpha.resize(nb_dofs, 4,
false);
725 std::array<int *, 6> tet_edge_ptr{
733 tet_edge_ptr.data());
736 std::array<int *, 6> tet_face_ptr{
746 face_n.data(), tet_face_ptr.data());
756 order,
lambda.size1(), tet_alpha.size1(), &tet_alpha(0, 0),
760 get_alpha_by_order_ptr(ent_data,
order) =
762 get_base_by_order_ptr(ent_data,
order) =
764 get_diff_base_by_order_ptr(ent_data,
order) =
765 get_diff_base_by_name_ptr(ent_data,
field_name);
771 ent_data.getBBAlphaIndicesSharedPtr(
field_name).reset();
772 auto &get_n = get_base(ent_data);
773 auto &get_diff_n = get_diff_base(ent_data);
774 get_n.resize(nb_gauss_pts, 0,
false);
775 get_diff_n.resize(nb_gauss_pts, 0,
false);
787 int volume_order, std::array<int, 4> &faces_order,
788 std::array<int, 3 * 4> &faces_nodes,
790 boost::function<
int(
int)> broken_nbfacetri_edge_hdiv,
791 boost::function<
int(
int)> broken_nbfacetri_face_hdiv,
792 boost::function<
int(
int)> broken_nbvolumetet_edge_hdiv,
793 boost::function<
int(
int)> broken_nbvolumetet_face_hdiv,
794 boost::function<
int(
int)> broken_nbvolumetet_volume_hdiv
799 PetscErrorCode (*base_polynomials)(
int p,
double s,
double *diff_s,
double *
L,
800 double *diffL,
const int dim) =
803 int nb_gauss_pts = pts.size2();
807 double *phi_f_e[4][3];
809 double *diff_phi_f_e[4][3];
810 double *diff_phi_f[4];
817 for (
int ff = 0; ff != 4; ++ff) {
819 broken_nbfacetri_edge_hdiv(faces_order[ff]));
821 for (
int ee = 0; ee < 3; ee++) {
822 N_face_edge(ff, ee).resize(nb_gauss_pts, 3 * face_edge_dofs,
false);
823 diffN_face_edge(ff, ee).resize(nb_gauss_pts, 9 * face_edge_dofs,
false);
824 phi_f_e[ff][ee] = &*
N_face_edge(ff, ee).data().begin();
828 broken_nbfacetri_face_hdiv(faces_order[ff]));
829 N_face_bubble[ff].resize(nb_gauss_pts, 3 * face_bubble_dofs,
false);
835 constexpr int nb_nodes_on_tet = 4;
837 for (
int ff = 0; ff < 4; ff++) {
839 &faces_nodes[3 * ff], broken_nbfacetri_edge_hdiv(faces_order[ff]),
840 &*shape_functions.data().begin(), &*diff_shape_functions.data().begin(),
841 phi_f_e[ff], diff_phi_f_e[ff], nb_gauss_pts, nb_nodes_on_tet,
845 for (
int ff = 0; ff < 4; ff++) {
847 &faces_nodes[3 * ff], broken_nbfacetri_face_hdiv(faces_order[ff]),
848 &*shape_functions.data().begin(), &*diff_shape_functions.data().begin(),
849 phi_f[ff], diff_phi_f[ff], nb_gauss_pts, nb_nodes_on_tet,
858 double *diff_phi_v_e[6];
859 double *diff_phi_v_f[4];
863 broken_nbvolumetet_edge_hdiv(volume_order));
866 for (
int ee = 0; ee != 6; ++ee) {
867 N_volume_edge[ee].resize(nb_gauss_pts, 3 * volume_edge_dofs,
false);
872 if (volume_edge_dofs)
874 broken_nbvolumetet_edge_hdiv(volume_order),
875 &*shape_functions.data().begin(), &*diff_shape_functions.data().begin(),
876 phi_v_e, diff_phi_v_e, nb_gauss_pts, base_polynomials);
879 broken_nbvolumetet_face_hdiv(volume_order));
882 for (
int ff = 0; ff != 4; ++ff) {
883 N_volume_face[ff].resize(nb_gauss_pts, 3 * volume_face_dofs,
false);
888 if (volume_face_dofs)
890 broken_nbvolumetet_face_hdiv(volume_order),
891 &*shape_functions.data().begin(), &*diff_shape_functions.data().begin(),
892 phi_v_f, diff_phi_v_f, nb_gauss_pts, base_polynomials);
895 broken_nbvolumetet_volume_hdiv(volume_order));
900 if (volume_bubble_dofs)
902 broken_nbvolumetet_volume_hdiv(volume_order),
903 &*shape_functions.data().begin(), &*diff_shape_functions.data().begin(),
904 phi_v, diff_phi_v, nb_gauss_pts, base_polynomials);
912 std::array<int, 4> faces_order;
913 std::array<int, 4 * 3> faces_nodes;
920 faces_nodes.begin());
921 for (
int ff = 0; ff != 4; ff++) {
928 faces_order, faces_nodes,
946 int nb_gauss_pts = pts.size2();
955 decltype(getFTensor1FromPtr<3>(
static_cast<double *
>(
nullptr)));
956 Tensor1Ptr3 t_base_f_f[] = {
967 Tensor1Ptr3 t_base_f_e[] = {
968 getFTensor1FromPtr<3>(&*(
N_face_edge(0, 0).data().begin())),
969 getFTensor1FromPtr<3>(&*(
N_face_edge(0, 1).data().begin())),
970 getFTensor1FromPtr<3>(&*(
N_face_edge(0, 2).data().begin())),
971 getFTensor1FromPtr<3>(&*(
N_face_edge(1, 0).data().begin())),
972 getFTensor1FromPtr<3>(&*(
N_face_edge(1, 1).data().begin())),
973 getFTensor1FromPtr<3>(&*(
N_face_edge(1, 2).data().begin())),
974 getFTensor1FromPtr<3>(&*(
N_face_edge(2, 0).data().begin())),
975 getFTensor1FromPtr<3>(&*(
N_face_edge(2, 1).data().begin())),
976 getFTensor1FromPtr<3>(&*(
N_face_edge(2, 2).data().begin())),
977 getFTensor1FromPtr<3>(&*(
N_face_edge(3, 0).data().begin())),
978 getFTensor1FromPtr<3>(&*(
N_face_edge(3, 1).data().begin())),
979 getFTensor1FromPtr<3>(&*(
N_face_edge(3, 2).data().begin()))};
994 for (
int ff = 0; ff != 4; ff++) {
995 int face_order = faces_order[ff];
1002 3 * face_dofs,
false);
1003 data.
dataOnEntities[MBTRI][ff].getDiffN(base).resize(nb_gauss_pts,
1004 9 * face_dofs,
false);
1008 double *diff_base_ptr =
1010 auto t_base = getFTensor1FromPtr<3>(base_ptr);
1013 auto max_face_order =
1014 std::max(face_order,
1017 std::max(max_face_order,
1020 for (
int gg = 0; gg != nb_gauss_pts; gg++) {
1021 for (
int oo = 0; oo != max_face_order; oo++) {
1027 for (
int ee = 0; ee != 3; ++ee) {
1028 t_base(
i) = t_base_f_e[ff * 3 + ee](
i);
1030 ++t_base_f_e[ff * 3 + ee];
1032 for (
int ee = 0; ee != 3; ++ee) {
1033 t_diff_base(
i,
j) = t_diff_base_f_e[ff * 3 + ee](
i,
j);
1035 ++t_diff_base_f_e[ff * 3 + ee];
1043 t_base(
i) = t_base_f_f[ff](
i);
1046 t_diff_base(
i,
j) = t_diff_base_f_f[ff](
i,
j);
1048 ++t_diff_base_f_f[ff];
1063 data.
dataOnEntities[MBTET][0].getN(base).resize(nb_gauss_pts, 3 * volume_dofs,
1065 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts,
1066 9 * volume_dofs,
false);
1070 double *diff_base_ptr =
1072 auto t_base = getFTensor1FromPtr<3>(base_ptr);
1077 decltype(getFTensor1FromPtr<3>(
static_cast<double *
>(
nullptr)));
1078 Tensor1Ptr3 t_base_v_e[] = {
1094 Tensor1Ptr3 t_base_v_f[] = {
1108 auto t_base_v = getFTensor1FromPtr<3>(base_ptr);
1111 auto max_volume_order = std::max(
1114 max_volume_order = std::max(
1117 max_volume_order = std::max(
1121 for (
int gg = 0; gg != nb_gauss_pts; gg++) {
1122 for (
int oo = 0; oo < max_volume_order; oo++) {
1129 for (
int ee = 0; ee < 6; ee++) {
1130 t_base(
i) = t_base_v_e[ee](
i);
1133 t_diff_base(
i,
j) = t_diff_base_v_e[ee](
i,
j);
1135 ++t_diff_base_v_e[ee];
1144 for (
int ff = 0; ff < 4; ff++) {
1145 t_base(
i) = t_base_v_f[ff](
i);
1148 t_diff_base(
i,
j) = t_diff_base_v_f[ff](
i,
j);
1150 ++t_diff_base_v_f[ff];
1159 t_base(
i) = t_base_v(
i);
1162 t_diff_base(
i,
j) = t_diff_base_v(
i,
j);
1189 int nb_gauss_pts = pts.size2();
1195 int nb_dofs_volume =
1203 int nb_dofs = 4 * nb_dofs_face + nb_dofs_volume;
1204 data.
dataOnEntities[MBTET][0].getN(base).resize(nb_gauss_pts, 3 * nb_dofs,
1206 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts, 9 * nb_dofs,
1221 auto interior_cache_ptr = get_interior_cache(base);
1223 if (interior_cache_ptr) {
1225 interior_cache_ptr->find(boost::make_tuple(volume_order, nb_gauss_pts));
1226 if (it != interior_cache_ptr->end()) {
1228 noalias(data.
dataOnEntities[MBTET][0].getDiffN(base)) = it->diffN;
1233 std::array<int, 4 * 3> faces_nodes = {0, 1, 3, 1, 2, 3, 0, 3, 2, 0, 2, 1};
1234 std::array<int, 4> faces_order{volume_order, volume_order, volume_order,
1239 faces_order, faces_nodes,
1249 auto *base_ptr = &*data.
dataOnEntities[MBTET][0].getN(base).data().begin();
1250 auto *diff_base_ptr =
1252 auto t_base = getFTensor1FromPtr<3>(base_ptr);
1257 decltype(getFTensor1FromPtr<3>(
static_cast<double *
>(
nullptr)));
1258 Tensor1Ptr3 t_base_f_e[] = {
1259 getFTensor1FromPtr<3>(&*(
N_face_edge(0, 0).data().begin())),
1260 getFTensor1FromPtr<3>(&*(
N_face_edge(0, 1).data().begin())),
1261 getFTensor1FromPtr<3>(&*(
N_face_edge(0, 2).data().begin())),
1262 getFTensor1FromPtr<3>(&*(
N_face_edge(1, 0).data().begin())),
1263 getFTensor1FromPtr<3>(&*(
N_face_edge(1, 1).data().begin())),
1264 getFTensor1FromPtr<3>(&*(
N_face_edge(1, 2).data().begin())),
1265 getFTensor1FromPtr<3>(&*(
N_face_edge(2, 0).data().begin())),
1266 getFTensor1FromPtr<3>(&*(
N_face_edge(2, 1).data().begin())),
1267 getFTensor1FromPtr<3>(&*(
N_face_edge(2, 2).data().begin())),
1268 getFTensor1FromPtr<3>(&*(
N_face_edge(3, 0).data().begin())),
1269 getFTensor1FromPtr<3>(&*(
N_face_edge(3, 1).data().begin())),
1270 getFTensor1FromPtr<3>(&*(
N_face_edge(3, 2).data().begin()))};
1286 Tensor1Ptr3 t_base_f_f[] = {
1290 getFTensor1FromPtr<3>(&*(
N_face_bubble[3].data().begin()))};
1298 Tensor1Ptr3 t_base_v_e[] = {
1314 Tensor1Ptr3 t_base_v_f[] = {
1328 auto t_base_v = getFTensor1FromPtr<3>(base_vol_ptr);
1332 int count_dofs_face = 0;
1333 int count_dofs_volume = 0;
1335 auto max_volume_order =
1336 std::max(volume_order,
1339 std::max(max_volume_order,
1342 std::max(max_volume_order,
1345 std::max(max_volume_order,
1347 max_volume_order = std::max(
1351 for (
int gg = 0; gg != nb_gauss_pts; gg++) {
1352 for (
int oo = 0; oo < max_volume_order; oo++) {
1358 for (
auto ff = 0; ff != 4; ++ff) {
1359 for (
int ee = 0; ee != 3; ++ee) {
1360 t_base(
i) = t_base_f_e[ff * 3 + ee](
i);
1362 ++t_base_f_e[ff * 3 + ee];
1366 for (
int ee = 0; ee != 3; ++ee) {
1367 t_diff_base(
i,
j) = t_diff_base_f_e[ff * 3 + ee](
i,
j);
1369 ++t_diff_base_f_e[ff * 3 + ee];
1378 for (
auto ff = 0; ff != 4; ++ff) {
1379 t_base(
i) = t_base_f_f[ff](
i);
1382 t_diff_base(
i,
j) = t_diff_base_f_f[ff](
i,
j);
1384 ++t_diff_base_f_f[ff];
1394 for (
int ee = 0; ee < 6; ++ee) {
1395 t_base(
i) = t_base_v_e[ee](
i);
1398 t_diff_base(
i,
j) = t_diff_base_v_e[ee](
i,
j);
1400 ++t_diff_base_v_e[ee];
1402 ++count_dofs_volume;
1410 for (
int ff = 0; ff < 4; ff++) {
1411 t_base(
i) = t_base_v_f[ff](
i);
1414 t_diff_base(
i,
j) = t_diff_base_v_f[ff](
i,
j);
1416 ++t_diff_base_v_f[ff];
1418 ++count_dofs_volume;
1427 t_base(
i) = t_base_v(
i);
1430 t_diff_base(
i,
j) = t_diff_base_v(
i,
j);
1434 ++count_dofs_volume;
1440 if (nb_dofs != count_dofs / nb_gauss_pts) {
1442 MOFEM_LOG(
"SELF", Sev::error) <<
"Nb dofs face: " << 4 * nb_dofs_face
1443 <<
" -> " << count_dofs_face / nb_gauss_pts;
1444 MOFEM_LOG(
"SELF", Sev::error) <<
"Nb dofs volume: " << nb_dofs_volume
1445 <<
" -> " << count_dofs_volume / nb_gauss_pts;
1447 "Number of dofs %d is different than expected %d",
1448 count_dofs / nb_gauss_pts, nb_dofs);
1452 if (interior_cache_ptr) {
1453 auto p = interior_cache_ptr->emplace(
1469 "This should be used only with DEMKOWICZ_JACOBI_BASE "
1473 int nb_gauss_pts = pts.size2();
1479 double *diff_phi_f[4];
1491 auto face_cache_ptr = get_face_cache_ptr();
1494 for (
int ff = 0; ff != 4; ff++) {
1496 int order = volume_order > face_order ? volume_order : face_order;
1504 if (face_cache_ptr) {
1505 auto it = face_cache_ptr->find(boost::make_tuple(
1507 face_order, nb_gauss_pts,
1512 if (it != face_cache_ptr->end()) {
1514 noalias(data.
dataOnEntities[MBTRI][ff].getDiffN(base)) = it->diffN;
1520 phi_f[ff] = &*data.
dataOnEntities[MBTRI][ff].getN(base).data().begin();
1527 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
1528 phi_f[ff], diff_phi_f[ff], nb_gauss_pts, 4);
1529 if (face_cache_ptr) {
1531 face_order, nb_gauss_pts, data.
facesNodes(ff, 0),
1549 auto interior_cache_ptr = get_interior_cache();
1558 for (
int v = 0;
v != 1; ++
v) {
1559 if (interior_cache_ptr) {
1560 auto it = interior_cache_ptr->find(
1561 boost::make_tuple(volume_order, nb_gauss_pts));
1562 if (it != interior_cache_ptr->end()) {
1564 noalias(data.
dataOnEntities[MBTET][0].getDiffN(base)) = it->diffN;
1569 double *phi_v = &*data.
dataOnEntities[MBTET][0].getN(base).data().begin();
1570 double *diff_phi_v =
1574 volume_order, &data.
dataOnEntities[MBVERTEX][0].getN(base)(0, 0),
1575 &data.
dataOnEntities[MBVERTEX][0].getDiffN(base)(0, 0), p_f, phi_f,
1576 diff_phi_f, phi_v, diff_phi_v, nb_gauss_pts);
1577 if (interior_cache_ptr) {
1578 auto p = interior_cache_ptr->emplace(
1587 for (
int ff = 0; ff != 4; ff++) {
1606 "This should be used only with DEMKOWICZ_JACOBI_BASE "
1610 int nb_gauss_pts = pts.size2();
1615 int nb_dofs = 4 * nb_dofs_face + nb_dofs_volume;
1616 data.
dataOnEntities[MBTET][0].getN(base).resize(nb_gauss_pts, 3 * nb_dofs,
1618 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts, 9 * nb_dofs,
1636 auto interior_cache_ptr = get_interior_cache();
1638 if (interior_cache_ptr) {
1640 interior_cache_ptr->find(boost::make_tuple(volume_order, nb_gauss_pts));
1641 if (it != interior_cache_ptr->end()) {
1643 noalias(data.
dataOnEntities[MBTET][0].getDiffN(base)) = it->diffN;
1648 std::array<MatrixDouble, 4> face_base_fun{
1653 std::array<MatrixDouble, 4> face_diff_base{
1659 int faces_nodes[4][3] = {{0, 1, 3}, {1, 2, 3}, {0, 3, 2}, {0, 2, 1}};
1661 std::array<int, 4> p_f{volume_order, volume_order, volume_order,
1663 std::array<double *, 4> phi_f{
1664 &*face_base_fun[0].data().begin(), &*face_base_fun[1].data().begin(),
1665 &*face_base_fun[2].data().begin(), &*face_base_fun[3].data().begin()};
1666 std::array<double *, 4> diff_phi_f{
1667 &*face_diff_base[0].data().begin(), &*face_diff_base[1].data().begin(),
1668 &*face_diff_base[2].data().begin(), &*face_diff_base[3].data().begin()};
1671 for (
int ff = 0; ff != 4; ff++) {
1674 faces_nodes[ff], p_f[ff],
1676 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
1677 phi_f[ff], diff_phi_f[ff], nb_gauss_pts, 4);
1680 MatrixDouble vol_bases(nb_gauss_pts, 3 * nb_dofs_volume);
1681 MatrixDouble vol_diff_bases(nb_gauss_pts, 9 * nb_dofs_volume);
1682 auto *phi_v = &*vol_bases.data().begin();
1683 auto *diff_phi_v = &*vol_diff_bases.data().begin();
1685 volume_order, &data.
dataOnEntities[MBVERTEX][0].getN(base)(0, 0),
1686 &data.
dataOnEntities[MBVERTEX][0].getDiffN(base)(0, 0), p_f.data(),
1687 phi_f.data(), diff_phi_f.data(), phi_v, diff_phi_v, nb_gauss_pts);
1691 decltype(getFTensor1FromPtr<3>(
static_cast<double *
>(
nullptr)));
1692 Tensor1Ptr3 t_base_v_f[] = {
1693 getFTensor1FromPtr<3>(phi_f[0]), getFTensor1FromPtr<3>(phi_f[1]),
1694 getFTensor1FromPtr<3>(phi_f[2]), getFTensor1FromPtr<3>(phi_f[3])};
1702 auto t_base_v = getFTensor1FromPtr<3>(&*vol_bases.data().begin());
1706 auto t_base = getFTensor1FromPtr<3>(
1714 for (
auto gg = 0; gg != nb_gauss_pts; ++gg) {
1715 for (
int oo = 0; oo < volume_order; oo++) {
1719 for (
auto ff = 0; ff != 4; ++ff) {
1720 t_base(
i) = t_base_v_f[ff](
i);
1723 t_diff_base(
i,
j) = t_diff_base_v_f[ff](
i,
j);
1725 ++t_diff_base_v_f[ff];
1731 t_base(
i) = t_base_v(
i);
1734 t_diff_base(
i,
j) = t_diff_base_v(
i,
j);
1741 if (interior_cache_ptr) {
1742 auto p = interior_cache_ptr->emplace(
1791 PetscErrorCode (*base_polynomials)(
int p,
double s,
double *diff_s,
double *
L,
1792 double *diffL,
const int dim) =
1795 int nb_gauss_pts = pts.size2();
1799 int sense[6],
order[6];
1803 double *hcurl_edge_n[6], *diff_hcurl_edge_n[6];
1804 for (
int ee = 0; ee != 6; ee++) {
1807 "data inconsistency");
1814 3 * nb_dofs,
false);
1815 data.
dataOnEntities[MBEDGE][ee].getDiffN(base).resize(nb_gauss_pts,
1816 9 * nb_dofs,
false);
1819 diff_hcurl_edge_n[ee] =
1825 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
1826 hcurl_edge_n, diff_hcurl_edge_n, nb_gauss_pts, base_polynomials);
1828 for (
int ee = 0; ee != 6; ee++) {
1829 data.
dataOnEntities[MBEDGE][ee].getN(base).resize(nb_gauss_pts, 0,
false);
1830 data.
dataOnEntities[MBEDGE][ee].getDiffN(base).resize(nb_gauss_pts, 0,
1842 double *hcurl_base_n[4], *diff_hcurl_base_n[4];
1843 for (
int ff = 0; ff != 4; ff++) {
1846 "data inconsistency");
1851 3 * nb_dofs,
false);
1852 data.
dataOnEntities[MBTRI][ff].getDiffN(base).resize(nb_gauss_pts,
1853 9 * nb_dofs,
false);
1856 diff_hcurl_base_n[ff] =
1868 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
1869 hcurl_base_n, diff_hcurl_base_n, nb_gauss_pts, base_polynomials);
1871 for (
int ff = 0; ff != 4; ff++) {
1872 data.
dataOnEntities[MBTRI][ff].getN(base).resize(nb_gauss_pts, 0,
false);
1873 data.
dataOnEntities[MBTRI][ff].getDiffN(base).resize(nb_gauss_pts, 0,
1884 3 * nb_vol_dofs,
false);
1885 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts,
1886 9 * nb_vol_dofs,
false);
1890 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
1893 nb_gauss_pts, base_polynomials);
1896 data.
dataOnEntities[MBTET][0].getN(base).resize(nb_gauss_pts, 0,
false);
1897 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts, 0,
false);
1911 "This should be used only with DEMKOWICZ_JACOBI_BASE "
1916 int nb_gauss_pts = pts.size2();
1920 int sense[6],
order[6];
1923 "wrong size of data structure, expected space for six edges "
1927 double *hcurl_edge_n[6], *diff_hcurl_edge_n[6];
1928 for (
int ee = 0; ee != 6; ee++) {
1931 "orintation of edges is not set");
1938 3 * nb_dofs,
false);
1939 data.
dataOnEntities[MBEDGE][ee].getDiffN(base).resize(nb_gauss_pts,
1940 9 * nb_dofs,
false);
1943 diff_hcurl_edge_n[ee] =
1949 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
1950 hcurl_edge_n, diff_hcurl_edge_n, nb_gauss_pts);
1954 for (
int ee = 0; ee != 6; ee++) {
1955 data.
dataOnEntities[MBEDGE][ee].getN(base).resize(nb_gauss_pts, 0,
false);
1956 data.
dataOnEntities[MBEDGE][ee].getDiffN(base).resize(nb_gauss_pts, 0,
1967 "data structure for storing face h-curl base have wrong size "
1968 "should be four but is %zu",
1971 double *hcurl_base_n[4], *diff_hcurl_base_n[4];
1972 for (
int ff = 0; ff != 4; ff++) {
1975 "orintation of face is not set");
1980 3 * nb_dofs,
false);
1981 data.
dataOnEntities[MBTRI][ff].getDiffN(base).resize(nb_gauss_pts,
1982 9 * nb_dofs,
false);
1985 diff_hcurl_base_n[ff] =
1990 "data inconsistency, should be four faces");
1994 "data inconsistency, should be three nodes on face");
1999 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
2000 hcurl_base_n, diff_hcurl_base_n, nb_gauss_pts);
2004 for (
int ff = 0; ff != 4; ff++) {
2005 data.
dataOnEntities[MBTRI][ff].getN(base).resize(nb_gauss_pts, 0,
false);
2006 data.
dataOnEntities[MBTRI][ff].getDiffN(base).resize(nb_gauss_pts, 0,
2016 3 * nb_vol_dofs,
false);
2017 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts,
2018 9 * nb_vol_dofs,
false);
2022 &*data.
dataOnEntities[MBVERTEX][0].getDiffN(base).data().begin(),
2029 data.
dataOnEntities[MBTET][0].getN(base).resize(nb_gauss_pts, 0,
false);
2030 data.
dataOnEntities[MBTET][0].getDiffN(base).resize(nb_gauss_pts, 0,
false);
2056 boost::shared_ptr<BaseFunctionCtx> ctx_ptr) {
2061 int nb_gauss_pts = pts.size2();
2065 if (pts.size1() < 3)
2068 "Wrong dimension of pts, should be at least 3 rows with coordinates");
2074 data.
dataOnEntities[MBVERTEX][0].getN(base).resize(nb_gauss_pts, 4,
2078 &pts(0, 0), &pts(1, 0), &pts(2, 0), nb_gauss_pts);
2084 (
unsigned int)nb_gauss_pts) {
2086 "Base functions or nodes has wrong number of integration points "
2090 data.
dataOnEntities[MBVERTEX][0].getDiffN(base).resize(4, 3,
false);
2144 switch (continuity) {
2159 "Unknown (or not implemented) continuity");
2174 auto set_ainsworth = [&dofs_side_map]() {
2177 dofs_side_map.clear();
2185 for (
auto ff = 0; ff != 4; ++ff) {
2186 for (
int ee = 0; ee != 3; ++ee) {
2196 for (
auto ff = 0; ff != 4; ++ff) {
2205 for (
int ee = 0; ee < 6; ee++) {
2213 for (
int ff = 0; ff < 4; ff++) {
2229 auto set_demkowicz = [&dofs_side_map]() {
2232 dofs_side_map.clear();
2240 for (
auto ff = 0; ff != 4; ++ff) {
2256 switch (continuity) {
2271 "Unknown (or not implemented) continuity");
2277template <
typename T>
2279 auto it = cache.find(ptr);
2280 if (it != cache.end()) {
2283 <<
"Cache off " << cache_name <<
": " << it->second.size();
2289 <<
"Cache on " << cache_name;
2299 std::string(
"hDivBaseFace") +
2304bool TetPolynomialBase::switchCacheBaseInterior<HDIV>(
2307 std::string(
"hdivBaseInterior") +
2312bool TetPolynomialBase::switchCacheBrokenBaseInterior<HDIV>(
2315 std::string(
"hdivBrokenBaseInterior") +
2321 std::vector<void *>
v) {
2322 for (
auto fe_ptr :
v) {
2323 if (!TetPolynomialBase::switchCacheBaseFace<HDIV>(base, fe_ptr)) {
2324 TetPolynomialBase::switchCacheBaseFace<HDIV>(base, fe_ptr);
2326 if (!TetPolynomialBase::switchCacheBaseInterior<HDIV>(base, fe_ptr)) {
2327 TetPolynomialBase::switchCacheBaseInterior<HDIV>(base, fe_ptr);
2329 if (!TetPolynomialBase::switchCacheBrokenBaseInterior<HDIV>(base, fe_ptr)) {
2330 TetPolynomialBase::switchCacheBrokenBaseInterior<HDIV>(base, fe_ptr);
2337 std::vector<void *>
v) {
2338 for (
auto fe_ptr :
v) {
2339 if (TetPolynomialBase::switchCacheBaseFace<HDIV>(base, fe_ptr)) {
2340 TetPolynomialBase::switchCacheBaseFace<HDIV>(base, fe_ptr);
2342 if (TetPolynomialBase::switchCacheBaseInterior<HDIV>(base, fe_ptr)) {
2343 TetPolynomialBase::switchCacheBaseInterior<HDIV>(base, fe_ptr);
2345 if (TetPolynomialBase::switchCacheBrokenBaseInterior<HDIV>(base, fe_ptr)) {
2346 TetPolynomialBase::switchCacheBrokenBaseInterior<HDIV>(base, fe_ptr);
2352void TetPolynomialBase::switchCacheBaseOn<HDIV>(std::vector<void *>
v) {
2353 for (
auto b = 0; b !=
LASTBASE; ++b) {
2359void TetPolynomialBase::switchCacheBaseOff<HDIV>(std::vector<void *>
v) {
2360 for (
auto b = 0; b !=
LASTBASE; ++b) {
2369 std::string(
"hdivBaseInterior") +
2375 std::vector<void *>
v) {
2376 for (
auto fe_ptr :
v) {
2377 if (!TetPolynomialBase::switchCacheBaseInterior<L2>(base, fe_ptr)) {
2378 TetPolynomialBase::switchCacheBaseInterior<L2>(base, fe_ptr);
2385 std::vector<void *>
v) {
2386 for (
auto fe_ptr :
v) {
2387 if (TetPolynomialBase::switchCacheBaseInterior<L2>(base, fe_ptr)) {
2388 TetPolynomialBase::switchCacheBaseInterior<L2>(base, fe_ptr);
2394void TetPolynomialBase::switchCacheBaseOn<L2>(std::vector<void *>
v) {
2395 for (
auto b = 0; b !=
LASTBASE; ++b) {
2401void TetPolynomialBase::switchCacheBaseOff<L2>(std::vector<void *>
v) {
2402 for (
auto b = 0; b !=
LASTBASE; ++b) {
#define MOFEM_TAG_AND_LOG(channel, severity, tag)
Tag and log in channel.
#define FTENSOR_INDEX(DIM, I)
auto tetCacheSwitch(const void *ptr, T &cache, std::string cache_name)
FieldApproximationBase
approximation base
@ AINSWORTH_LEGENDRE_BASE
Ainsworth Cole (Legendre) approx. base .
@ AINSWORTH_BERNSTEIN_BEZIER_BASE
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
FieldSpace
approximation spaces
@ L2
field with C-1 continuity
@ HCURL
field with continuous tangents
@ HDIV
field with continuous normal traction
FieldContinuity
Field continuity.
@ CONTINUOUS
Regular field.
@ DISCONTINUOUS
Broken continuity (No effect on L2 space)
static const char *const FieldSpaceNames[]
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
@ MOFEM_DATA_INCONSISTENCY
static const char *const ApproximationBaseNames[]
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#define CHKERR
Inline error check.
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
#define MOFEM_LOG(channel, severity)
Log.
#define MOFEM_LOG_CHANNEL(channel)
Set and reset channel.
#define NBVOLUMETET_AINSWORTH_EDGE_HDIV(P)
#define NBEDGE_DEMKOWICZ_HCURL(P)
#define NBVOLUMETET_H1(P)
Number of base functions on tetrahedron for H1 space.
#define NBVOLUMETET_AINSWORTH_HCURL(P)
#define NBFACETRI_AINSWORTH_HCURL(P)
#define NBVOLUMETET_DEMKOWICZ_HDIV(P)
PetscErrorCode H1_EdgeShapeFunctions_MBTET(int *sense, int *p, double *N, double *diffN, double *edgeN[], double *diff_edgeN[], int GDIM, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
#define NBVOLUMETET_AINSWORTH_FACE_HDIV(P)
#define NBEDGE_H1(P)
Number of base function on edge for H1 space.
#define NBFACETRI_DEMKOWICZ_HDIV(P)
PetscErrorCode L2_Ainsworth_ShapeFunctions_MBTET(int p, double *N, double *diffN, double *L2N, double *diff_L2N, int GDIM, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
Get base functions on tetrahedron for L2 space.
#define NBVOLUMETET_DEMKOWICZ_HCURL(P)
#define NBFACETRI_DEMKOWICZ_HCURL(P)
#define NBFACETRI_AINSWORTH_FACE_HDIV(P)
#define NBVOLUMETET_AINSWORTH_VOLUME_HDIV(P)
#define NBFACETRI_AINSWORTH_EDGE_HDIV(P)
PetscErrorCode H1_VolumeShapeFunctions_MBTET(int p, double *N, double *diffN, double *volumeN, double *diff_volumeN, int GDIM, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
#define NBEDGE_AINSWORTH_HCURL(P)
PetscErrorCode H1_FaceShapeFunctions_MBTET(int *faces_nodes, int *p, double *N, double *diffN, double *faceN[], double *diff_faceN[], int GDIM, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
#define NBFACETRI_H1(P)
Number of base function on triangle for H1 space.
#define NBVOLUMETET_L2(P)
Number of base functions on tetrahedron for L2 space.
FTensor::Index< 'i', SPACE_DIM > i
const double v
phase velocity of light in medium (cm/ns)
const double n
refractive index of diffusive medium
FTensor::Index< 'j', 3 > j
PetscErrorCode MoFEMErrorCode
MoFEM/PETSc error code.
UBlasMatrix< double > MatrixDouble
UBlasMatrix< int > MatrixInt
implementation of Data Operators for Forces and Sources
MoFEMErrorCode Hdiv_Demkowicz_Face_MBTET_ON_FACE(int *faces_nodes, int p, double *N, double *diffN, double *phi_f, double *diff_phi_f, int gdim, int nb)
MoFEMErrorCode Hdiv_Ainsworth_EdgeFaceShapeFunctions_MBTET_ON_FACE(int *faces_nodes, int p, double *N, double *diffN, double *phi_f_e[3], double *diff_phi_f_e[3], int gdim, int nb, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
Hdiv base functions, Edge-based face functions by Ainsworth .
auto getFTensor2HVecFromPtr< 3, 3 >(double *ptr)
MoFEMErrorCode Hdiv_Demkowicz_Interior_MBTET(int p, double *N, double *diffN, int p_face[], double *phi_f[4], double *diff_phi_f[4], double *phi_v, double *diff_phi_v, int gdim)
MoFEMErrorCode Hcurl_Ainsworth_VolumeFunctions_MBTET(int p, double *N, double *diffN, double *phi_v, double *diff_phi_v, int nb_integration_pts, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
H-curl volume base functions.
MoFEMErrorCode Hdiv_Ainsworth_FaceBasedVolumeShapeFunctions_MBTET(int p, double *N, double *diffN, double *phi_v_f[], double *diff_phi_v_f[], int gdim, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
MoFEMErrorCode Hdiv_Ainsworth_FaceBubbleShapeFunctions_ON_FACE(int *faces_nodes, int p, double *N, double *diffN, double *phi_f, double *diff_phi_f, int gdim, int nb, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
Face bubble functions by Ainsworth .
MoFEMErrorCode Hcurl_Ainsworth_EdgeBaseFunctions_MBTET(int *sense, int *p, double *N, double *diffN, double *edgeN[], double *diff_edgeN[], int nb_integration_pts, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
Edge based H-curl base functions on tetrahedral.
MoFEMErrorCode Hcurl_Demkowicz_FaceBaseFunctions_MBTET(int *faces_nodes, int *p, double *n, double *diff_n, double *phi[], double *diff_phi[], int nb_integration_pts)
Face base interior function.
MoFEMErrorCode Hdiv_Ainsworth_EdgeBasedVolumeShapeFunctions_MBTET(int p, double *N, double *diffN, double *phi_v_e[6], double *diff_phi_v_e[6], int gdim, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
Hdiv base function, Edge-based interior (volume) functions by Ainsworth .
MoFEMErrorCode Hcurl_Demkowicz_VolumeBaseFunctions_MBTET(int p, double *n, double *diff_n, double *phi, double *diff_phi, int nb_integration_pts)
Volume base interior function.
MoFEMErrorCode Hcurl_Demkowicz_EdgeBaseFunctions_MBTET(int *sense, int *p, double *n, double *diff_n, double *phi[], double *diff_phi[], int nb_integration_pts)
Edge based H-curl base functions on tetrahedral.
MoFEMErrorCode Hcurl_Ainsworth_FaceFunctions_MBTET(int *face_nodes, int *p, double *N, double *diffN, double *phi_f[4], double *diff_phi_f[4], int nb_integration_pts, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
Face H-curl functions.
MoFEMErrorCode Hdiv_Ainsworth_VolumeBubbleShapeFunctions_MBTET(int p, double *N, double *diffN, double *phi_v, double *diff_phi_v, int gdim, PetscErrorCode(*base_polynomials)(int p, double s, double *diff_s, double *L, double *diffL, const int dim))
Interior bubble functions by Ainsworth .
constexpr auto field_name
static boost::function< int(int)> broken_nbvolumetet_edge_hdiv
static boost::function< int(int)> broken_nbvolumetet_face_hdiv
static boost::function< int(int)> broken_nbfacetri_face_hdiv
static boost::function< int(int)> broken_nbvolumetet_volume_hdiv
static boost::function< int(int)> broken_nbfacetri_edge_hdiv
multi_index_container< DofsSideMapData, indexed_by< ordered_non_unique< tag< TypeSide_mi_tag >, composite_key< DofsSideMapData, member< DofsSideMapData, EntityType, &DofsSideMapData::type >, member< DofsSideMapData, int, &DofsSideMapData::side > > >, ordered_unique< tag< EntDofIdx_mi_tag >, member< DofsSideMapData, int, &DofsSideMapData::dof > > > > DofsSideMap
Map entity stype and side to element/entity dof index.
static MoFEMErrorCode generateIndicesTriTet(const int N[], int *alpha[])
static MoFEMErrorCode baseFunctionsTet(const int N, const int gdim, const int n_alpha, const int *alpha, const double *lambda, const double *grad_lambda, double *base, double *grad_base)
static MoFEMErrorCode generateIndicesEdgeTet(const int N[], int *alpha[])
static MoFEMErrorCode generateIndicesVertexTet(const int N, int *alpha)
static MoFEMErrorCode generateIndicesTetTet(const int N, int *alpha)
Class used to pass element data to calculate base functions on tet,triangle,edge.
const FieldApproximationBase copyNodeBase
const std::string fieldName
PetscErrorCode(* basePolynomialsType0)(int p, double s, double *diff_s, double *L, double *diffL, const int dim)
const FieldContinuity spaceContinuity
const FieldApproximationBase bAse
data structure for finite element entity
MatrixInt facesNodes
nodes on finite element faces
std::array< std::bitset< LASTSPACE >, MBMAXTYPE > spacesOnEntities
spaces on entity types
std::array< boost::ptr_vector< EntData >, MBMAXTYPE > dataOnEntities
static constexpr int maxBrokenDofsOrder
Maximum order for broken space DOFs.
Calculate base functions on tetrahedral.
ublas::matrix< MatrixDouble > diffN_face_edge
EntPolynomialBaseCtx * cTx
MatrixDouble N_volume_bubble
MoFEMErrorCode getValueHdivAinsworthBaseImpl(MatrixDouble &pts, MatrixDouble &shape_functions, MatrixDouble &diff_shape_functions, int volume_order, std::array< int, 4 > &faces_order, std::array< int, 3 *4 > &faces_nodes, boost::function< int(int)> broken_nbfacetri_edge_hdiv, boost::function< int(int)> broken_nbfacetri_face_hdiv, boost::function< int(int)> broken_nbvolumetet_edge_hdiv, boost::function< int(int)> broken_nbvolumetet_face_hdiv, boost::function< int(int)> broken_nbvolumetet_volume_hdiv)
MoFEMErrorCode getValueH1AinsworthBase(MatrixDouble &pts)
MoFEMErrorCode getValueHdivAinsworthBrokenBase(MatrixDouble &pts)
ublas::vector< MatrixDouble > diffN_volume_face
MoFEMErrorCode getValueL2BernsteinBezierBase(MatrixDouble &pts)
MoFEMErrorCode getValueHcurlDemkowiczBase(MatrixDouble &pts)
MoFEMErrorCode getValueHcurl(MatrixDouble &pts)
Get base functions for Hcurl space.
virtual ~TetPolynomialBase()
MoFEMErrorCode getValueH1BernsteinBezierBase(MatrixDouble &pts)
static MoFEMErrorCode setDofsSideMap(const FieldSpace space, const FieldContinuity continuity, const FieldApproximationBase base, DofsSideMap &)
Set map of dof to side number.
MoFEMErrorCode getValueH1(MatrixDouble &pts)
Get base functions for H1 space.
ublas::vector< MatrixDouble > diffN_face_bubble
ublas::vector< MatrixDouble > N_volume_edge
ublas::vector< MatrixDouble > N_volume_face
MoFEMErrorCode getValueHdiv(MatrixDouble &pts)
Get base functions for Hdiv space.
MoFEMErrorCode getValueHdivAinsworthBase(MatrixDouble &pts)
MoFEMErrorCode getValueL2AinsworthBase(MatrixDouble &pts)
ublas::vector< MatrixDouble > N_face_bubble
ublas::matrix< MatrixDouble > N_face_edge
MoFEMErrorCode getValueL2(MatrixDouble &pts)
Get base functions for L2 space.
MatrixDouble diffN_volume_bubble
MoFEMErrorCode getValueHdivDemkowiczBase(MatrixDouble &pts)
TetPolynomialBase(const void *ptr=nullptr)
MoFEMErrorCode getValue(MatrixDouble &pts, boost::shared_ptr< BaseFunctionCtx > ctx_ptr)
MoFEMErrorCode getValueHdivDemkowiczBrokenBase(MatrixDouble &pts)
ublas::vector< MatrixDouble > diffN_volume_edge
MoFEMErrorCode getValueHcurlAinsworthBase(MatrixDouble &pts)
static MoFEMErrorCode setDofsSideMapHdiv(const FieldContinuity continuity, const FieldApproximationBase base, DofsSideMap &dofs_side_map)
Set the Dofs Side Map Hdiv object.
base class for all interface classes
MoFEMErrorCode getInterface(IFACE *&iface) const
Get interface reference to pointer of interface.
boost::multi_index_container< BaseCacheItem, boost::multi_index::indexed_by< boost::multi_index::hashed_unique< composite_key< BaseCacheItem, member< BaseCacheItem, int, &BaseCacheItem::order >, member< BaseCacheItem, int, &BaseCacheItem::nb_gauss_pts > > > > > BaseCacheMI
static std::array< std::map< const void *, BaseCacheMI >, LASTBASE > hdivBaseInterior
boost::multi_index_container< HDivBaseCacheItem, boost::multi_index::indexed_by< boost::multi_index::hashed_unique< composite_key< HDivBaseCacheItem, member< HDivBaseCacheItem, int, &HDivBaseCacheItem::order >, member< HDivBaseCacheItem, int, &HDivBaseCacheItem::nb_gauss_pts >, member< HDivBaseCacheItem, int, &HDivBaseCacheItem::n0 >, member< HDivBaseCacheItem, int, &HDivBaseCacheItem::n1 >, member< HDivBaseCacheItem, int, &HDivBaseCacheItem::n2 > > > > > HDivBaseFaceCacheMI
static std::array< std::map< const void *, HDivBaseFaceCacheMI >, LASTBASE > hDivBaseFace
static std::array< std::map< const void *, BaseCacheMI >, LASTBASE > l2BaseInterior
static std::array< std::map< const void *, BaseCacheMI >, LASTBASE > hdivBrokenBaseInterior