10 boost::shared_ptr<MatrixDouble> jac_ptr)
14 for (
auto t = MBEDGE;
t != MBMAXTYPE; ++
t)
26 const auto nb_base_functions = data.
getN(
NOBASE).size2();
27 if (nb_base_functions) {
34 if (nb_gauss_pts != data.
getDiffN().size1())
36 "Inconsistent number base functions and gauss points");
37 if (nb_base_functions != data.
getDiffN().size2() / 3)
39 "Inconsistent number of base functions");
40 if (coords.size() != 3 * nb_base_functions)
43 "Number of vertex coordinates and base functions is inconsistent "
45 coords.size() / 3, nb_base_functions);
48 jacPtr->resize(9, nb_gauss_pts,
false);
50 auto t_jac = getFTensor2FromMat<3, 3>(*
jacPtr);
57 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg) {
59 &coords[0], &coords[1], &coords[2]);
60 for (
size_t bb = 0; bb != nb_base_functions; ++bb) {
61 t_jac(
i,
j) += t_coords(
i) * (t_vol_inv_jac(
k,
j) * t_diff_base(
k));
81 return applyTransform<3, 3, 3, 3>(diff_n);
93 CHKERR transform_base(*(
m.second));
98 CHKERR transform_base(*ptr);
122 data.
getDiffN(base).size2(),
false);
124 unsigned int nb_gauss_pts = data.
getDiffN(base).size1();
125 unsigned int nb_base_functions = data.
getDiffN(base).size2() / 9;
126 if (nb_base_functions == 0)
132 t_inv_diff_n_ptr, &t_inv_diff_n_ptr[
HVEC0_1],
137 auto t_inv_jac = getFTensor2FromMat<3, 3>(*
invJacPtr);
138 for (
unsigned int gg = 0; gg != nb_gauss_pts; ++gg) {
139 for (
unsigned int bb = 0; bb != nb_base_functions; ++bb) {
140 t_inv_diff_n(
i,
j) = t_inv_jac(
k,
j) * t_diff_n(
i,
k);
165 for (
size_t gg = 0; gg != nb_int_pts; ++gg) {
166 t_w *= sqrt(t_normal(
i) * t_normal(
i)) /
a;
172 "Number of rows in getNormalsAtGaussPts should be equal to "
173 "number of integration points, but is not, i.e. %d != %d",
190 for (
size_t gg = 0; gg != nb_int_pts; ++gg) {
191 t_w *= sqrt(t_tangent(
i) * t_tangent(
i)) /
a;
197 "Number of rows in getTangentAtGaussPts should be equal to "
198 "number of integration points, but is not, i.e. %d != %d",
209 const auto nb_integration_pts =
detPtr->size();
214 "Inconsistent number of data points");
219 for (
size_t gg = 0; gg != nb_integration_pts; ++gg) {
240 "Pointer for detPtr not allocated");
243 "Pointer for jacPtr not allocated");
251 auto nb_base_functions =
253 auto nb_diff_base_functions =
257 if (nb_diff_base_functions) {
258 if (nb_diff_base_functions != nb_base_functions)
260 "Wrong number base functions %d != %d", nb_diff_base_functions,
262 if (data.
getDiffN(base).size1() != nb_gauss_pts)
264 "Wrong number integration points");
268 if (nb_gauss_pts && nb_base_functions) {
270 piolaN.resize(nb_gauss_pts, data.
getN(base).size2(),
false);
273 double *t_transformed_n_ptr = &*
piolaN.data().begin();
276 &t_transformed_n_ptr[
HVEC1], &t_transformed_n_ptr[
HVEC2]);
279 auto t_jac = getFTensor2FromMat<3, 3>(*
jacPtr);
281 for (
unsigned int gg = 0; gg != nb_gauss_pts; ++gg) {
282 for (
unsigned int bb = 0; bb != nb_base_functions; ++bb) {
283 const double a = 1. / t_det;
284 t_transformed_n(
i) =
a * (t_jac(
i,
k) * t_n(
k));
295 if (nb_gauss_pts && nb_diff_base_functions) {
300 double *t_transformed_diff_n_ptr = &*
piolaDiffN.data().begin();
302 t_transformed_diff_n(t_transformed_diff_n_ptr,
303 &t_transformed_diff_n_ptr[
HVEC0_1],
304 &t_transformed_diff_n_ptr[
HVEC0_2],
305 &t_transformed_diff_n_ptr[
HVEC1_0],
306 &t_transformed_diff_n_ptr[
HVEC1_1],
307 &t_transformed_diff_n_ptr[
HVEC1_2],
308 &t_transformed_diff_n_ptr[
HVEC2_0],
309 &t_transformed_diff_n_ptr[
HVEC2_1],
310 &t_transformed_diff_n_ptr[
HVEC2_2]);
313 for (
unsigned int gg = 0; gg != nb_gauss_pts; ++gg) {
314 for (
unsigned int bb = 0; bb != nb_diff_base_functions; ++bb) {
315 const double a = 1. / t_det;
316 t_transformed_diff_n(
i,
k) =
a * t_diff_n(
i,
k);
318 ++t_transformed_diff_n;
343 unsigned int nb_gauss_pts = data.
getN(base).size1();
344 unsigned int nb_base_functions = data.
getN(base).size2() / 3;
345 piolaN.resize(nb_gauss_pts, data.
getN(base).size2(),
false);
349 double *t_transformed_n_ptr = &*
piolaN.data().begin();
352 &t_transformed_n_ptr[
HVEC1], &t_transformed_n_ptr[
HVEC2]);
354 double *t_transformed_diff_n_ptr = &*
piolaDiffN.data().begin();
356 t_transformed_diff_n_ptr, &t_transformed_diff_n_ptr[
HVEC0_1],
357 &t_transformed_diff_n_ptr[
HVEC0_2], &t_transformed_diff_n_ptr[
HVEC1_0],
358 &t_transformed_diff_n_ptr[
HVEC1_1], &t_transformed_diff_n_ptr[
HVEC1_2],
359 &t_transformed_diff_n_ptr[
HVEC2_0], &t_transformed_diff_n_ptr[
HVEC2_1],
360 &t_transformed_diff_n_ptr[
HVEC2_2]);
362 auto t_inv_jac = getFTensor2FromMat<3, 3>(*
jacInvPtr);
364 for (
unsigned int gg = 0; gg != nb_gauss_pts; ++gg) {
365 for (
unsigned int bb = 0; bb != nb_base_functions; ++bb) {
366 t_transformed_n(
i) = t_inv_jac(
k,
i) * t_n(
k);
367 t_transformed_diff_n(
i,
k) = t_inv_jac(
j,
i) * t_diff_n(
j,
k);
371 ++t_transformed_diff_n;
384 boost::shared_ptr<MatrixDouble> jac_ptr)
394 const auto nb_gauss_pts = getGaussPts().size2();
396 jacPtr->resize(4, nb_gauss_pts,
false);
397 auto t_jac = getFTensor2FromMat<2, 2>(*jacPtr);
402 auto t_t1 = getFTensor1Tangent1AtGaussPts();
403 auto t_t2 = getFTensor1Tangent2AtGaussPts();
407 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg) {
408 t_jac(
i, N0) = t_t1(
i);
409 t_jac(
i, N1) = t_t2(
i);
427 size_t nb_gauss_pts = getGaussPts().size2();
428 jacPtr->resize(9, nb_gauss_pts,
false);
430 auto t_t1 = getFTensor1Tangent1AtGaussPts();
431 auto t_t2 = getFTensor1Tangent2AtGaussPts();
432 auto t_normal = getFTensor1NormalsAtGaussPts();
438 auto t_jac = getFTensor2FromMat<3, 3>(*jacPtr);
439 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg, ++t_jac) {
441 t_jac(
i, N0) = t_t1(
i);
442 t_jac(
i, N1) = t_t2(
i);
444 const double l = sqrt(t_normal(
j) * t_normal(
j));
446 t_jac(
i, N2) = t_normal(
i) /
l;
461 if (moab::CN::Dimension(
type) != 2)
464 auto get_normals_ptr = [&]() {
471 auto apply_transform_nonlinear_geometry = [&](
auto base,
auto nb_gauss_pts,
472 auto nb_base_functions) {
475 auto ptr = get_normals_ptr();
477 &ptr[0], &ptr[1], &ptr[2]);
480 for (
int gg = 0; gg != nb_gauss_pts; ++gg) {
481 const auto l2 = t_normal(
i) * t_normal(
i);
482 for (
int bb = 0; bb != nb_base_functions; ++bb) {
483 const auto v = t_base(0);
484 t_base(
i) = (
v / l2) * t_normal(
i);
495 const auto &base_functions = data.
getN(base);
496 const auto nb_gauss_pts = base_functions.size1();
500 const auto nb_base_functions = base_functions.size2() / 3;
501 CHKERR apply_transform_nonlinear_geometry(base, nb_gauss_pts,
513 const auto type_dim = moab::CN::Dimension(
type);
514 if (type_dim != 1 && type_dim != 2)
527 &ptr_t1[0], &ptr_t2[0], &ptr_n[0],
529 &ptr_t1[1], &ptr_t2[1], &ptr_n[1],
531 &ptr_t1[2], &ptr_t2[2], &ptr_n[2]);
537 &ptr_t1[0], &ptr_t2[0], &ptr_n[0],
539 &ptr_t1[1], &ptr_t2[1], &ptr_n[1],
541 &ptr_t1[2], &ptr_t2[2], &ptr_n[2]);
549 auto &baseN = data.
getN(base);
550 auto &diffBaseN = data.
getDiffN(base);
552 int nb_dofs = baseN.size2() / 3;
553 int nb_gauss_pts = baseN.size1();
555 piolaN.resize(baseN.size1(), baseN.size2());
556 diffPiolaN.resize(diffBaseN.size1(), diffBaseN.size2());
558 if (nb_dofs > 0 && nb_gauss_pts > 0) {
567 t_transformed_diff_h_curl(
578 for (
int gg = 0; gg != nb_gauss_pts; ++gg) {
581 for (
int ll = 0; ll != nb_dofs; ll++) {
582 t_transformed_h_curl(
i) = t_inv_m(
j,
i) * t_h_curl(
j);
583 t_transformed_diff_h_curl(
i,
k) = t_inv_m(
j,
i) * t_diff_h_curl(
j,
k);
585 ++t_transformed_h_curl;
587 ++t_transformed_diff_h_curl;
594 if (cc != nb_gauss_pts * nb_dofs)
619 "Wrong number of integration points %d!=%d",
622 auto get_base_at_pts = [&](
auto base) {
629 auto get_tangent_ptr = [&]() {
637 auto get_tangent_at_pts = [&]() {
638 auto ptr = get_tangent_ptr();
640 &ptr[0], &ptr[1], &ptr[2]);
644 auto calculate_squared_edge_length = [&]() {
645 std::vector<double> l1;
647 l1.resize(nb_gauss_pts);
648 auto t_m_at_pts = get_tangent_at_pts();
649 for (
size_t gg = 0; gg != nb_gauss_pts; ++gg) {
650 l1[gg] = t_m_at_pts(
i) * t_m_at_pts(
i);
657 auto l1 = calculate_squared_edge_length();
662 const auto nb_dofs = data.
getN(base).size2() / 3;
664 if (nb_gauss_pts && nb_dofs) {
665 auto t_h_curl = get_base_at_pts(base);
667 auto t_m_at_pts = get_tangent_at_pts();
668 for (
int gg = 0; gg != nb_gauss_pts; ++gg) {
669 const double l0 = l1[gg];
670 for (
int ll = 0; ll != nb_dofs; ++ll) {
671 const double val = t_h_curl(0);
672 const double a = val / l0;
673 t_h_curl(
i) = t_m_at_pts(
i) *
a;
681 if (cc != nb_gauss_pts * nb_dofs)
692 boost::shared_ptr<VectorDouble> det_jac_ptr,
693 boost::shared_ptr<double> scale_det_ptr)
694 :
OP(space), fieldSpace(space), fieldBase(base), detJacPtr(det_jac_ptr),
695 scaleDetPtr(scale_det_ptr) {
706 double scale_det = 1.0;
710 auto scale = [&](
auto base) {
712 auto &base_fun = data.
getN(base);
713 if (base_fun.size2()) {
716 const auto nb_int_pts = base_fun.size1();
718 if (nb_int_pts != det_vec.size())
720 "Number of integration pts in detJacPtr does not mush "
721 "number of integration pts in base function");
723 for (
auto gg = 0; gg != nb_int_pts; ++gg) {
724 auto row = ublas::matrix_row<MatrixDouble>(base_fun, gg);
725 row *= scale_det / det_vec[gg];
728 auto &diff_base_fun = data.
getDiffN(base);
729 if (diff_base_fun.size2()) {
730 for (
auto gg = 0; gg != nb_int_pts; ++gg) {
731 auto row = ublas::matrix_row<MatrixDouble>(diff_base_fun, gg);
732 row *= scale_det / det_vec[gg];
774 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pipeline,
775 std::vector<FieldSpace> spaces, std::string geom_field_name,
776 boost::shared_ptr<MatrixDouble> jac_ptr,
777 boost::shared_ptr<VectorDouble> det_ptr,
778 boost::shared_ptr<MatrixDouble> inv_jac_ptr) {
782 jac_ptr = boost::make_shared<MatrixDouble>();
784 det_ptr = boost::make_shared<VectorDouble>();
786 inv_jac_ptr = boost::make_shared<MatrixDouble>();
788 if (geom_field_name.empty()) {
803 for (
auto s : spaces) {
830 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pipeline,
831 std::vector<FieldSpace> spaces, std::string geom_field_name,
832 boost::shared_ptr<MatrixDouble> jac_ptr,
833 boost::shared_ptr<VectorDouble> det_ptr,
834 boost::shared_ptr<MatrixDouble> inv_jac_ptr) {
838 jac_ptr = boost::make_shared<MatrixDouble>();
840 det_ptr = boost::make_shared<VectorDouble>();
842 inv_jac_ptr = boost::make_shared<MatrixDouble>();
844 if (geom_field_name.empty()) {
856 for (
auto s : spaces) {
886 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pipeline,
887 std::vector<FieldSpace> spaces, std::string geom_field_name) {
890 if (geom_field_name.empty()) {
898 for (
auto s : spaces) {
918 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pipeline,
919 std::vector<FieldSpace> spaces, std::string geom_field_name) {
922 if (geom_field_name.empty()) {
930 for (
auto s : spaces) {
945 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pipeline,
946 std::vector<FieldSpace> spaces, std::string geom_field_name) {
949 if (geom_field_name.empty()) {
956 for (
auto s : spaces) {
979 boost::ptr_deque<ForcesAndSourcesCore::UserDataOperator> &pipeline,
980 std::vector<FieldSpace> spaces, std::string geom_field_name,
981 boost::shared_ptr<MatrixDouble> jac, boost::shared_ptr<VectorDouble> det,
982 boost::shared_ptr<MatrixDouble> inv_jac) {
986 jac = boost::make_shared<MatrixDouble>();
988 det = boost::make_shared<VectorDouble>();
990 inv_jac = boost::make_shared<MatrixDouble>();
992 if (geom_field_name.empty()) {
1006 for (
auto s : spaces) {