v0.14.0
Public Member Functions | Private Attributes | List of all members
EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU Struct Reference

#include <users_modules/eshelbian_plasticit/src/EshelbianContact.hpp>

Inheritance diagram for EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU:
[legend]
Collaboration diagram for EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU:
[legend]

Public Member Functions

 OpConstrainBoundaryL2Lhs_dU (const std::string row_field_name, const std::string col_field_name, boost::shared_ptr< ContactOps::CommonData > common_data_ptr, boost::shared_ptr< ContactTree > contact_tree_ptr, boost::shared_ptr< std::map< int, Range >> sdf_map_range_ptr=nullptr)
 
MoFEMErrorCode iNtegrate (EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)
 

Private Attributes

boost::shared_ptr< ContactOps::CommonDatacommonDataPtr
 
boost::shared_ptr< ContactTreecontactTreePtr
 
boost::shared_ptr< std::map< int, Range > > sdfMapRangePtr
 

Detailed Description

Examples
EshelbianPlasticity.cpp.

Definition at line 155 of file EshelbianContact.hpp.

Constructor & Destructor Documentation

◆ OpConstrainBoundaryL2Lhs_dU()

EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::OpConstrainBoundaryL2Lhs_dU ( const std::string  row_field_name,
const std::string  col_field_name,
boost::shared_ptr< ContactOps::CommonData common_data_ptr,
boost::shared_ptr< ContactTree contact_tree_ptr,
boost::shared_ptr< std::map< int, Range >>  sdf_map_range_ptr = nullptr 
)

Definition at line 540 of file EshelbianContact.cpp.

545  : ContactOps::AssemblyBoundaryEleOp(row_field_name, col_field_name,
546  ContactOps::BoundaryEleOp::OPROWCOL),
547  commonDataPtr(common_data_ptr), contactTreePtr(contact_tree_ptr),
548  sdfMapRangePtr(sdf_map_range_ptr) {
549 
550  sYmm = false;
551 }

Member Function Documentation

◆ iNtegrate()

MoFEMErrorCode EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::iNtegrate ( EntitiesFieldData::EntData row_data,
EntitiesFieldData::EntData col_data 
)

Definition at line 554 of file EshelbianContact.cpp.

555  {
557 
558  using namespace ContactOps;
559 
563 
564  auto nb_rows = row_data.getIndices().size();
565  auto nb_cols = col_data.getIndices().size();
566 
567  auto &locMat = AssemblyBoundaryEleOp::locMat;
568  locMat.resize(nb_rows, nb_cols, false);
569  locMat.clear();
570 
571  if (nb_cols && nb_rows) {
572 
573  auto nb_gauss_pts = getGaussPts().size2();
574  auto t_w = getFTensor0IntegrationWeight();
575  auto t_coords = getFTensor1CoordsAtGaussPts();
576  auto t_disp = getFTensor1FromMat<3>(commonDataPtr->contactDisp);
577  auto t_traction = getFTensor1FromMat<3>(commonDataPtr->contactTraction);
578 
579  // placeholder to pass boundary block id to python
580  auto [block_id, m_normals_at_pts, v_sdf, m_grad_sdf, m_hess_sdf] =
581  getSdf(this, commonDataPtr->contactDisp,
582  checkSdf(getFEEntityHandle(), *sdfMapRangePtr), true);
583 
584  auto t_sdf_v = getFTensor0FromVec(v_sdf);
585  auto t_grad_sdf_v = getFTensor1FromMat<3>(m_grad_sdf);
586  auto t_hess_sdf_v = getFTensor2SymmetricFromMat<3>(m_hess_sdf);
587  auto t_normalized_normal = getFTensor1FromMat<3>(m_normals_at_pts);
588 
589  auto next = [&]() {
590  ++t_w;
591  ++t_coords;
592  ++t_disp;
593  ++t_traction;
594  ++t_sdf_v;
595  ++t_grad_sdf_v;
596  ++t_hess_sdf_v;
597  ++t_normalized_normal;
598  };
599 
600  auto face_data_vec_ptr =
601  contactTreePtr->findFaceDataVecPtr(getFEEntityHandle());
602  auto face_gauss_pts_it = face_data_vec_ptr->begin();
603 
604  auto t_row_base = row_data.getFTensor0N();
605  auto nb_face_functions = row_data.getN().size2() / 3;
606  constexpr auto t_kd = FTensor::Kronecker_Delta<int>();
607 
608  for (size_t gg = 0; gg != nb_gauss_pts; ++gg) {
609 
610  auto face_data_ptr = contactTreePtr->getFaceDataPtr(face_gauss_pts_it, gg,
611  face_data_vec_ptr);
612 
613  auto check_face_contact = [&]() {
614  if (face_data_ptr) {
615  return true;
616  }
617  return false;
618  };
619 
621 
622 #ifdef PYTHON_SDF
623  auto tn = t_traction(i) * t_grad_sdf_v(i);
624  auto c = ContactOps::constrain(t_sdf_v, tn);
625 #else
626  constexpr double c = 0;
627 #endif
628 
629  if (!c && check_face_contact()) {
630  FTensor::Tensor1<double, 3> t_spatial_coords;
631  t_spatial_coords(i) = t_coords(i) + t_disp(i);
632  constexpr double eps = std::numeric_limits<float>::epsilon();
633  for (auto ii = 0; ii < 3; ++ii) {
634  FTensor::Tensor1<std::complex<double>, 3> t_spatial_coords_cx{
635  t_spatial_coords(0), t_spatial_coords(1), t_spatial_coords(2)};
636  t_spatial_coords_cx(ii) += eps * 1i;
637  auto t_rhs_tmp =
638  multiPointRhs(face_data_ptr, t_coords, t_spatial_coords_cx,
639  t_traction, MultiPointRhsType::U);
640  for (int jj = 0; jj != 3; ++jj) {
641  auto v = t_rhs_tmp(jj).imag();
642  t_res_dU(jj, ii) = v / eps;
643  }
644  }
645 
646  } else {
647 
648 #ifdef PYTHON_SDF
649 
650  if (ContactOps::sdfPythonWeakPtr.lock()) {
651  auto inv_cn = ContactOps::alpha_contact_const;
652  t_res_dU(i, j) =
653 
654  (-c) * (t_hess_sdf_v(i, j) * t_grad_sdf_v(k) * t_traction(k) +
655  t_grad_sdf_v(i) * t_hess_sdf_v(k, j) * t_traction(k))
656 
657  + (c * inv_cn) * (t_sdf_v * t_hess_sdf_v(i, j) +
658 
659  t_grad_sdf_v(j) * t_grad_sdf_v(i));
660  } else {
661  t_res_dU(i, j) = 0;
662  }
663 #else
664  t_res_dU(i, j) = 0;
665 #endif
666  }
667 
668  auto alpha = t_w * getMeasure();
669 
670  size_t rr = 0;
671  for (; rr != nb_rows / 3; ++rr) {
672 
673  auto t_mat = getFTensor2FromArray<3, 3, 3>(locMat, 3 * rr);
674  auto t_col_base = col_data.getFTensor0N(gg, 0);
675 
676  for (size_t cc = 0; cc != nb_cols / 3; ++cc) {
677  auto beta = alpha * t_row_base * t_col_base;
678  t_mat(i, j) -= beta * t_res_dU(i, j);
679  ++t_col_base;
680  ++t_mat;
681  }
682 
683  ++t_row_base;
684  }
685  for (; rr < nb_face_functions; ++rr)
686  ++t_row_base;
687 
688  next();
689  }
690  }
691 
693 }

Member Data Documentation

◆ commonDataPtr

boost::shared_ptr<ContactOps::CommonData> EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::commonDataPtr
private

Definition at line 167 of file EshelbianContact.hpp.

◆ contactTreePtr

boost::shared_ptr<ContactTree> EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::contactTreePtr
private

Definition at line 168 of file EshelbianContact.hpp.

◆ sdfMapRangePtr

boost::shared_ptr<std::map<int, Range> > EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::sdfMapRangePtr
private

Definition at line 169 of file EshelbianContact.hpp.


The documentation for this struct was generated from the following files:
MoFEM::OpBaseImpl::locMat
MatrixDouble locMat
local entity block matrix
Definition: FormsIntegrators.hpp:249
FTensor::Tensor1< double, 3 >
ContactOps
Definition: contact.cpp:99
ContactOps::constrain
double constrain(double sdf, double tn)
constrain function
Definition: ContactOps.hpp:603
FTensor::Kronecker_Delta
Kronecker Delta class.
Definition: Kronecker_Delta.hpp:15
EshelbianPlasticity::checkSdf
auto checkSdf(EntityHandle fe_ent, std::map< int, Range > &sdf_map_range)
Definition: EshelbianContact.cpp:17
FTensor::Tensor2< double, 3, 3 >
EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::sdfMapRangePtr
boost::shared_ptr< std::map< int, Range > > sdfMapRangePtr
Definition: EshelbianContact.hpp:169
c
const double c
speed of light (cm/ns)
Definition: initial_diffusion.cpp:39
MoFEM::getFTensor0FromVec
static auto getFTensor0FromVec(ublas::vector< T, A > &data)
Get tensor rank 0 (scalar) form data vector.
Definition: Templates.hpp:135
EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::commonDataPtr
boost::shared_ptr< ContactOps::CommonData > commonDataPtr
Definition: EshelbianContact.hpp:167
ContactOps::AssemblyBoundaryEleOp
FormsIntegrators< BoundaryEleOp >::Assembly< A >::OpBase AssemblyBoundaryEleOp
Definition: EshelbianContact.hpp:18
i
FTensor::Index< 'i', SPACE_DIM > i
Definition: hcurl_divergence_operator_2d.cpp:27
t_kd
constexpr auto t_kd
Definition: free_surface.cpp:139
ContactOps::alpha_contact_const
double alpha_contact_const
Definition: EshelbianContact.hpp:21
FTensor::Index< 'i', 3 >
v
const double v
phase velocity of light in medium (cm/ns)
Definition: initial_diffusion.cpp:40
EshelbianPlasticity::OpConstrainBoundaryL2Lhs_dU::contactTreePtr
boost::shared_ptr< ContactTree > contactTreePtr
Definition: EshelbianContact.hpp:168
EshelbianPlasticity::multiPointRhs
auto multiPointRhs(ContactTree::FaceData *face_data_ptr, FTensor::Tensor1< T1, 3 > &t_coords, FTensor::Tensor1< T2, 3 > &t_spatial_coords, FTensor::Tensor1< T3, 3 > &t_master_traction, MultiPointRhsType type, bool debug=false)
Definition: EshelbianContact.cpp:206
j
FTensor::Index< 'j', 3 > j
Definition: matrix_function.cpp:19
eps
static const double eps
Definition: check_base_functions_derivatives_on_tet.cpp:11
k
FTensor::Index< 'k', 3 > k
Definition: matrix_function.cpp:20
MoFEMFunctionReturn
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:429
EshelbianPlasticity::U
@ U
Definition: EshelbianContact.cpp:201
MoFEMFunctionBegin
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:359
EshelbianPlasticity::getSdf
auto getSdf(OP_PTR op_ptr, MatrixDouble &contact_disp, int block_id, bool eval_hessian)
Definition: EshelbianContact.cpp:26