v0.16.0
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp > Struct Template Reference

#include "tutorials/adv-1_contact/src/ContactOps.hpp"

Inheritance diagram for ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >:
[legend]
Collaboration diagram for ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >:
[legend]

Public Member Functions

 OpConstrainBoundaryLhs_dUImpl (const std::string row_field_name, const std::string col_field_name, boost::shared_ptr< CommonData > common_data_ptr, bool is_axisymmetric=false)
 
MoFEMErrorCode iNtegrate (EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)
 
 OpConstrainBoundaryLhs_dUImpl (const std::string row_field_name, const std::string col_field_name, boost::shared_ptr< CommonData > common_data_ptr, bool is_axisymmetric=false)
 
MoFEMErrorCode iNtegrate (EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)
 

Public Attributes

SurfaceDistanceFunction surfaceDistanceFunction = surface_distance_function
 
GradSurfaceDistanceFunction gradSurfaceDistanceFunction
 
HessSurfaceDistanceFunction hessSurfaceDistanceFunction
 
boost::shared_ptr< CommonDatacommonDataPtr
 
bool isAxisymmetric
 

Detailed Description

template<int DIM, typename AssemblyBoundaryEleOp>
struct ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >

Definition at line 542 of file ContactOps.hpp.

Constructor & Destructor Documentation

◆ OpConstrainBoundaryLhs_dUImpl() [1/2]

template<int DIM, typename AssemblyBoundaryEleOp >
ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::OpConstrainBoundaryLhs_dUImpl ( const std::string  row_field_name,
const std::string  col_field_name,
boost::shared_ptr< CommonData common_data_ptr,
bool  is_axisymmetric = false 
)

Definition at line 974 of file ContactOps.hpp.

979 : AssemblyBoundaryEleOp(row_field_name, col_field_name,
980 AssemblyBoundaryEleOp::OPROWCOL),
981 commonDataPtr(common_data_ptr), isAxisymmetric(is_axisymmetric) {
982 AssemblyBoundaryEleOp::sYmm = false;
983}
FormsIntegrators< BoundaryEleOp >::Assembly< A >::OpBase AssemblyBoundaryEleOp
PetscBool is_axisymmetric
Definition contact.cpp:91

◆ OpConstrainBoundaryLhs_dUImpl() [2/2]

template<int DIM, typename AssemblyBoundaryEleOp >
ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::OpConstrainBoundaryLhs_dUImpl ( const std::string  row_field_name,
const std::string  col_field_name,
boost::shared_ptr< CommonData common_data_ptr,
bool  is_axisymmetric = false 
)

Member Function Documentation

◆ iNtegrate() [1/2]

template<int DIM, typename AssemblyBoundaryEleOp >
MoFEMErrorCode ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::iNtegrate ( EntitiesFieldData::EntData &  row_data,
EntitiesFieldData::EntData &  col_data 
)

Definition at line 987 of file ContactOps.hpp.

989 {
991
992 FTensor::Index<'i', DIM> i;
993 FTensor::Index<'j', DIM> j;
994 FTensor::Index<'k', DIM> k;
995
996 const size_t nb_gauss_pts = AssemblyBoundaryEleOp::getGaussPts().size2();
997 auto &locMat = AssemblyBoundaryEleOp::locMat;
998
999 auto t_traction = getFTensor1FromMat<DIM>(commonDataPtr->contactTraction);
1000 auto t_coords = AssemblyBoundaryEleOp::getFTensor1CoordsAtGaussPts();
1001
1002 auto t_w = AssemblyBoundaryEleOp::getFTensor0IntegrationWeight();
1003 auto t_row_base = row_data.getFTensor1N<3>();
1004 size_t nb_face_functions = row_data.getN().size2() / 3;
1005
1006 auto m_spatial_coords = get_spatial_coords(
1007 BoundaryEleOp::getFTensor1CoordsAtGaussPts(),
1008 getFTensor1FromMat<DIM>(commonDataPtr->contactDisp), nb_gauss_pts);
1009 auto m_normals_at_pts = get_normalize_normals(
1010 BoundaryEleOp::getFTensor1NormalsAtGaussPts(), nb_gauss_pts);
1011
1012 auto t_normal = getFTensor1FromMat<3>(m_normals_at_pts);
1013
1014 auto ts_time = AssemblyBoundaryEleOp::getTStime();
1015 auto ts_time_step = AssemblyBoundaryEleOp::getTStimeStep();
1016
1017 // placeholder to pass boundary block id to python
1018 int block_id = 0;
1019
1020 auto v_sdf =
1021 surfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
1022 m_spatial_coords, m_normals_at_pts, block_id);
1023
1024 auto m_grad_sdf =
1025 gradSurfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
1026 m_spatial_coords, m_normals_at_pts, block_id);
1027
1028 auto m_hess_sdf =
1029 hessSurfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
1030 m_spatial_coords, m_normals_at_pts, block_id);
1031
1032 auto t_sdf = getFTensor0FromVec(v_sdf);
1033 auto t_grad_sdf = getFTensor1FromMat<3>(m_grad_sdf);
1034 auto t_hess_sdf = getFTensor2SymmetricFromMat<3>(m_hess_sdf);
1035
1036 for (size_t gg = 0; gg != nb_gauss_pts; ++gg) {
1037
1038 double jacobian = 1.;
1039 if (isAxisymmetric) {
1040 jacobian = 2. * M_PI * t_coords(0);
1041 }
1042 const double alpha = t_w * jacobian * AssemblyBoundaryEleOp::getMeasure();
1043
1044 auto tn = -t_traction(i) * t_grad_sdf(i);
1045 auto c = constrain(t_sdf, tn);
1046
1048 t_cP(i, j) = (c * t_grad_sdf(i)) * t_grad_sdf(j);
1050 t_cQ(i, j) = kronecker_delta(i, j) - t_cP(i, j);
1051
1053 t_res_dU(i, j) = kronecker_delta(i, j) + t_cP(i, j);
1054
1055 if (c > 0) {
1056 t_res_dU(i, j) +=
1057 (c * cn_contact) *
1058 (t_hess_sdf(i, j) * (t_grad_sdf(k) * t_traction(k)) +
1059 t_grad_sdf(i) * t_hess_sdf(k, j) * t_traction(k)) +
1060 c * t_sdf * t_hess_sdf(i, j);
1061 }
1062
1063 size_t rr = 0;
1064 for (; rr != AssemblyBoundaryEleOp::nbRows / DIM; ++rr) {
1065
1066 auto t_mat = getFTensor2FromArray<DIM, DIM, DIM>(locMat, DIM * rr);
1067
1068 const double row_base = t_row_base(i) * t_normal(i);
1069
1070 auto t_col_base = col_data.getFTensor0N(gg, 0);
1071 for (size_t cc = 0; cc != AssemblyBoundaryEleOp::nbCols / DIM; ++cc) {
1072 const double beta = alpha * row_base * t_col_base;
1073
1074 t_mat(i, j) -= beta * t_res_dU(i, j);
1075
1076 ++t_col_base;
1077 ++t_mat;
1078 }
1079
1080 ++t_row_base;
1081 }
1082 for (; rr < nb_face_functions; ++rr)
1083 ++t_row_base;
1084
1085 ++t_traction;
1086 ++t_coords;
1087 ++t_w;
1088 ++t_normal;
1089 ++t_sdf;
1090 ++t_grad_sdf;
1091 ++t_hess_sdf;
1092 }
1093
1095}
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
#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< 'j', 3 > j
FTensor::Index< 'k', 3 > k
auto get_normalize_normals(FTensor::Tensor1< T1, DIM1 > &&t_normal_at_pts, size_t nb_gauss_pts)
double cn_contact
Definition contact.cpp:97
auto get_spatial_coords(FTensor::Tensor1< T1, DIM1 > &&t_coords, FTensor::Tensor1< T2, DIM2 > &&t_disp, size_t nb_gauss_pts)
double constrain(double sdf, double tn)
constrain function
Tensor2_Expr< Kronecker_Delta< T >, T, Dim0, Dim1, i, j > kronecker_delta(const Index< i, Dim0 > &, const Index< j, Dim1 > &)
Rank 2.

◆ iNtegrate() [2/2]

template<int DIM, typename AssemblyBoundaryEleOp >
MoFEMErrorCode ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::iNtegrate ( EntitiesFieldData::EntData &  row_data,
EntitiesFieldData::EntData &  col_data 
)

Member Data Documentation

◆ commonDataPtr

template<int DIM, typename AssemblyBoundaryEleOp >
boost::shared_ptr< CommonData > ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::commonDataPtr

Definition at line 557 of file ContactOps.hpp.

◆ gradSurfaceDistanceFunction

template<int DIM, typename AssemblyBoundaryEleOp >
GradSurfaceDistanceFunction ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::gradSurfaceDistanceFunction
Initial value:
=
MatrixDouble grad_surface_distance_function(double delta_t, double t, int nb_gauss_pts, MatrixDouble &m_spatial_coords, MatrixDouble &m_normals_at_pts, int block_id)

Definition at line 552 of file ContactOps.hpp.

◆ hessSurfaceDistanceFunction

template<int DIM, typename AssemblyBoundaryEleOp >
HessSurfaceDistanceFunction ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::hessSurfaceDistanceFunction
Initial value:
=
MatrixDouble hess_surface_distance_function(double delta_t, double t, int nb_gauss_pts, MatrixDouble &m_spatial_coords, MatrixDouble &m_normals_at_pts, int block_id)

Definition at line 554 of file ContactOps.hpp.

◆ isAxisymmetric

template<int DIM, typename AssemblyBoundaryEleOp >
bool ContactOps::OpConstrainBoundaryLhs_dUImpl< DIM, GAUSS, AssemblyBoundaryEleOp >::isAxisymmetric

Definition at line 558 of file ContactOps.hpp.

◆ surfaceDistanceFunction

Definition at line 551 of file ContactOps.hpp.


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