v0.15.5
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 543 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 981 of file ContactOps.hpp.

986 : AssemblyBoundaryEleOp(row_field_name, col_field_name,
987 AssemblyBoundaryEleOp::OPROWCOL),
988 commonDataPtr(common_data_ptr), isAxisymmetric(is_axisymmetric) {
989 AssemblyBoundaryEleOp::sYmm = false;
990}
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 994 of file ContactOps.hpp.

996 {
998
999 FTensor::Index<'i', DIM> i;
1000 FTensor::Index<'j', DIM> j;
1001 FTensor::Index<'k', DIM> k;
1002
1003 const size_t nb_gauss_pts = AssemblyBoundaryEleOp::getGaussPts().size2();
1004 auto &locMat = AssemblyBoundaryEleOp::locMat;
1005
1006 auto t_normal_at_pts = AssemblyBoundaryEleOp::getFTensor1NormalsAtGaussPts();
1007 auto t_traction = getFTensor1FromMat<DIM>(commonDataPtr->contactTraction);
1008 auto t_coords = AssemblyBoundaryEleOp::getFTensor1CoordsAtGaussPts();
1009
1010 auto t_w = AssemblyBoundaryEleOp::getFTensor0IntegrationWeight();
1011 auto t_row_base = row_data.getFTensor1N<3>();
1012 size_t nb_face_functions = row_data.getN().size2() / 3;
1013
1014 auto m_spatial_coords = get_spatial_coords(
1015 BoundaryEleOp::getFTensor1CoordsAtGaussPts(),
1016 getFTensor1FromMat<DIM>(commonDataPtr->contactDisp), nb_gauss_pts);
1017 auto m_normals_at_pts = get_normalize_normals(
1018 BoundaryEleOp::getFTensor1NormalsAtGaussPts(), nb_gauss_pts);
1019
1020 auto t_normal = getFTensor1FromMat<3>(m_normals_at_pts);
1021
1022 auto ts_time = AssemblyBoundaryEleOp::getTStime();
1023 auto ts_time_step = AssemblyBoundaryEleOp::getTStimeStep();
1024
1025 // placeholder to pass boundary block id to python
1026 int block_id = 0;
1027
1028 auto v_sdf =
1029 surfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
1030 m_spatial_coords, m_normals_at_pts, block_id);
1031
1032 auto m_grad_sdf =
1033 gradSurfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
1034 m_spatial_coords, m_normals_at_pts, block_id);
1035
1036 auto m_hess_sdf =
1037 hessSurfaceDistanceFunction(ts_time_step, ts_time, nb_gauss_pts,
1038 m_spatial_coords, m_normals_at_pts, block_id);
1039
1040 auto t_sdf = getFTensor0FromVec(v_sdf);
1041 auto t_grad_sdf = getFTensor1FromMat<3>(m_grad_sdf);
1042 auto t_hess_sdf = getFTensor2SymmetricFromMat<3>(m_hess_sdf);
1043
1044 for (size_t gg = 0; gg != nb_gauss_pts; ++gg) {
1045
1046 double jacobian = 1.;
1047 if (isAxisymmetric) {
1048 jacobian = 2. * M_PI * t_coords(0);
1049 }
1050 const double alpha = t_w * jacobian * AssemblyBoundaryEleOp::getMeasure();
1051
1052 auto tn = -t_traction(i) * t_grad_sdf(i);
1053 auto c = constrain(t_sdf, tn);
1054
1056 t_cP(i, j) = (c * t_grad_sdf(i)) * t_grad_sdf(j);
1058 t_cQ(i, j) = kronecker_delta(i, j) - t_cP(i, j);
1059
1061 t_res_dU(i, j) = kronecker_delta(i, j) + t_cP(i, j);
1062
1063 if (c > 0) {
1064 t_res_dU(i, j) +=
1065 (c * cn_contact) *
1066 (t_hess_sdf(i, j) * (t_grad_sdf(k) * t_traction(k)) +
1067 t_grad_sdf(i) * t_hess_sdf(k, j) * t_traction(k)) +
1068 c * t_sdf * t_hess_sdf(i, j);
1069 }
1070
1071 size_t rr = 0;
1072 for (; rr != AssemblyBoundaryEleOp::nbRows / DIM; ++rr) {
1073
1074 auto t_mat = getFTensor2FromArray<DIM, DIM, DIM>(locMat, DIM * rr);
1075
1076 const double row_base = t_row_base(i) * t_normal(i);
1077
1078 auto t_col_base = col_data.getFTensor0N(gg, 0);
1079 for (size_t cc = 0; cc != AssemblyBoundaryEleOp::nbCols / DIM; ++cc) {
1080 const double beta = alpha * row_base * t_col_base;
1081
1082 t_mat(i, j) -= beta * t_res_dU(i, j);
1083
1084 ++t_col_base;
1085 ++t_mat;
1086 }
1087
1088 ++t_row_base;
1089 }
1090 for (; rr < nb_face_functions; ++rr)
1091 ++t_row_base;
1092
1093 ++t_traction;
1094 ++t_coords;
1095 ++t_w;
1096 ++t_normal;
1097 ++t_sdf;
1098 ++t_grad_sdf;
1099 ++t_hess_sdf;
1100 }
1101
1103}
#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 558 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 553 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 555 of file ContactOps.hpp.

◆ isAxisymmetric

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

Definition at line 559 of file ContactOps.hpp.

◆ surfaceDistanceFunction

Definition at line 552 of file ContactOps.hpp.


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