v0.16.0
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
EshelbianPlasticity::OpConstrainBoundaryL2Rhs Struct Reference
Inheritance diagram for EshelbianPlasticity::OpConstrainBoundaryL2Rhs:
[legend]
Collaboration diagram for EshelbianPlasticity::OpConstrainBoundaryL2Rhs:
[legend]

Public Member Functions

 OpConstrainBoundaryL2Rhs (const std::string row_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)
 

Private Attributes

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

Detailed Description

Definition at line 478 of file EshelbianContact.cpp.

Constructor & Destructor Documentation

◆ OpConstrainBoundaryL2Rhs()

EshelbianPlasticity::OpConstrainBoundaryL2Rhs::OpConstrainBoundaryL2Rhs ( const std::string  row_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 493 of file EshelbianContact.cpp.

498 : ContactOps::AssemblyBoundaryEleOp(row_field_name, row_field_name,
499 ContactOps::BoundaryEleOp::OPROW),
500 commonDataPtr(common_data_ptr), contactTreePtr(contact_tree_ptr),
501 sdfMapRangePtr(sdf_map_range_ptr) {
502 CHK_THROW_MESSAGE(PetscOptionsGetScalar(PETSC_NULLPTR, "", "-cn",
504 PETSC_NULLPTR),
505 "get cn failed");
508 PetscOptionsGetScalar(PETSC_NULLPTR, "", "-alpha_contact_const",
509 &ContactOps::alpha_contact_const, PETSC_NULLPTR),
510 "get alpha contact failed");
512 PETSC_NULLPTR, "", "-alpha_contact_quadratic",
514 "get alpha contact failed");
516 PetscOptionsGetScalar(PETSC_NULLPTR, "", "-airplane_ray_distance",
517 &ContactOps::airplane_ray_distance, PETSC_NULLPTR),
518 "get alpha contact failed");
519
520 MOFEM_LOG("EP", Sev::inform) << "cn " << ContactOps::cn_contact;
521 MOFEM_LOG("EP", Sev::inform)
522 << "alpha_contact_const " << ContactOps::alpha_contact_const;
523 MOFEM_LOG("EP", Sev::inform)
524 << "alpha_contact_quadratic " << ContactOps::alpha_contact_quadratic;
525 MOFEM_LOG("EP", Sev::inform)
526 << "airplane_ray_distance " << ContactOps::airplane_ray_distance;
527}
#define CHK_THROW_MESSAGE(err, msg)
Check and throw MoFEM exception.
#define MOFEM_LOG(channel, severity)
Log.
double cn_contact
Definition contact.cpp:97
double alpha_contact_quadratic
FormsIntegrators< BoundaryEleOp >::Assembly< A >::OpBase AssemblyBoundaryEleOp
double alpha_contact_const
double airplane_ray_distance
PetscErrorCode PetscOptionsGetScalar(PetscOptions *, const char pre[], const char name[], PetscScalar *dval, PetscBool *set)
boost::shared_ptr< std::map< int, Range > > sdfMapRangePtr
boost::shared_ptr< ContactOps::CommonData > commonDataPtr
boost::shared_ptr< ContactTree > contactTreePtr

Member Function Documentation

◆ iNtegrate()

MoFEMErrorCode EshelbianPlasticity::OpConstrainBoundaryL2Rhs::iNtegrate ( EntitiesFieldData::EntData row_data)

Definition at line 530 of file EshelbianContact.cpp.

530 {
532
533 FTensor::Index<'i', 3> i;
534 FTensor::Index<'j', 3> j;
535 FTensor::Index<'k', 3> k;
536 FTensor::Index<'l', 3> l;
537
538 const size_t nb_gauss_pts = getGaussPts().size2();
539
540#ifndef NDEBUG
541 if (commonDataPtr->contactDisp.size1() != nb_gauss_pts) {
542 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
543 "Wrong number of integration pts %ld != %ld",
544 commonDataPtr->contactDisp.size1(), nb_gauss_pts);
545 }
546#endif // !NDEBUG
547
548 auto &nf = locF;
549 locF.clear();
550
551 auto t_w = getFTensor0IntegrationWeight();
552 auto t_coords = getFTensor1CoordsAtGaussPts();
553 auto t_disp = getFTensor1FromMat<3>(commonDataPtr->contactDisp);
554 auto t_traction = getFTensor1FromMat<3>(commonDataPtr->contactTraction);
555
556 // placeholder to pass boundary block id to python. default SDF is set on
557 // block = -1, one can choose different block by making block "CONTACT_SDF",
558 // then specific SDF can be set to that block.
559 auto [block_id, m_normals_at_pts, v_sdf, m_grad_sdf, m_hess_sdf] =
560 getSdf(this, commonDataPtr->contactDisp,
561 checkSdf(getFEEntityHandle(), *sdfMapRangePtr), false);
562
563 auto t_sdf_v = getFTensor0FromVec(v_sdf);
564 auto t_grad_sdf_v = getFTensor1FromMat<3>(m_grad_sdf);
565 auto t_normalize_normal = getFTensor1FromMat<3>(m_normals_at_pts);
566
567 auto next = [&]() {
568 ++t_w;
569 ++t_coords;
570 ++t_disp;
571 ++t_traction;
572 ++t_normalize_normal;
573 ++t_sdf_v;
574 ++t_grad_sdf_v;
575 };
576
577 auto face_data_vec_ptr =
578 contactTreePtr->findFaceDataVecPtr(getFEEntityHandle());
579 auto face_gauss_pts_it = face_data_vec_ptr->begin();
580
581 auto nb_base_functions = data.getN().size2();
582 auto t_base = data.getFTensor0N();
583 for (auto gg = 0; gg != nb_gauss_pts; ++gg) {
584
586 auto face_data_ptr = contactTreePtr->getFaceDataPtr(face_gauss_pts_it, gg,
587 face_data_vec_ptr);
588
589 auto check_face_contact = [&]() {
590 if (checkSdf(getFEEntityHandle(), *sdfMapRangePtr) != -1)
591 return false;
592
593 if (face_data_ptr) {
594 return true;
595 }
596 return false;
597 };
598
599#ifdef ENABLE_PYTHON_BINDING
600 double c = 0.;
601 if (ContactOps::sdfPythonWeakPtr.lock()) {
602 auto tn = t_traction(i) * t_grad_sdf_v(i);
603 c = ContactOps::constrain(t_sdf_v, tn);
604 }
605#else
606 constexpr double c = 0;
607#endif
608
609 if (!c && check_face_contact()) {
610 FTensor::Tensor1<double, 3> t_spatial_coords;
611 t_spatial_coords(i) = t_coords(i) + t_disp(i);
612 auto t_rhs_tmp = multiPointRhs(face_data_ptr, t_coords, t_spatial_coords,
613 t_traction, MultiPointRhsType::U, true);
614 t_rhs(i) = t_rhs_tmp(i);
615
616 } else {
617
618#ifdef ENABLE_PYTHON_BINDING
619 auto inv_cn = 1. / ContactOps::cn_contact;
620
621 if (ContactOps::sdfPythonWeakPtr.lock()) {
623 t_cP(i, j) = (c * t_grad_sdf_v(i)) * t_grad_sdf_v(j);
624 t_cQ(i, j) = kronecker_delta(i, j) - t_cP(i, j);
625 t_rhs(i) = t_cQ(i, j) * t_traction(j) +
626 (c * inv_cn * t_sdf_v) * t_grad_sdf_v(i);
627 } else {
628 t_rhs(i) = t_traction(i);
629 }
630#else
631 t_rhs(i) = t_traction(i);
632#endif
633 }
634
635 auto t_nf = getFTensor1FromPtr<3>(&nf[0]);
636 const double alpha = t_w * getMeasure();
637
638 size_t bb = 0;
639 for (; bb != nbRows / 3; ++bb) {
640 const double beta = alpha * t_base;
641 t_nf(i) -= beta * t_rhs(i);
642 ++t_nf;
643 ++t_base;
644 }
645 for (; bb < nb_base_functions; ++bb)
646 ++t_base;
647
648 next();
649 }
650
652}
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
@ MOFEM_DATA_INCONSISTENCY
Definition definitions.h:31
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
FTensor::Index< 'i', SPACE_DIM > i
const double c
speed of light (cm/ns)
FTensor::Index< 'l', 3 > l
FTensor::Index< 'j', 3 > j
FTensor::Index< 'k', 3 > k
double constrain(double sdf, double tn)
constrain function
auto checkSdf(EntityHandle fe_ent, std::map< int, Range > &sdf_map_range)
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)
auto getSdf(OP_PTR op_ptr, MatrixDouble &contact_disp, int block_id, bool eval_hessian)
Tensor2_Expr< Kronecker_Delta< T >, T, Dim0, Dim1, i, j > kronecker_delta(const Index< i, Dim0 > &, const Index< j, Dim1 > &)
Rank 2.
static auto getFTensor0FromVec(V &data)
Get tensor rank 0 (scalar) form data vector.

Member Data Documentation

◆ commonDataPtr

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

Definition at line 488 of file EshelbianContact.cpp.

◆ contactTreePtr

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

Definition at line 489 of file EshelbianContact.cpp.

◆ sdfMapRangePtr

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

Definition at line 490 of file EshelbianContact.cpp.


The documentation for this struct was generated from the following file: