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

Public Member Functions

 OpTauStabilisation_dX (const std::string &field_name, boost::shared_ptr< std::vector< BrokenBaseSideData > > broken_disp_data_ptr, boost::shared_ptr< MatrixDouble > hybrid_disp_ptr, boost::shared_ptr< MatrixDouble > var_hybrid_disp_ptr, boost::shared_ptr< TopologicalData > topo_ptr, const double alpha_tau, SmartPetscObj< Vec > vec, boost::shared_ptr< double > J_ptr=nullptr, Tag tag=Tag())
 
MoFEMErrorCode integrate (int side, EntityType type, EntData &data) override
 
- Public Member Functions inherited from EshelbianPlasticity::OpAssembleTopologicalObjectiveDerivativeImplBase< OpAssembleFace >
 OpAssembleTopologicalObjectiveDerivativeImplBase (const std::string &field_name, boost::shared_ptr< DataAtIntegrationPts > data_ptr, boost::shared_ptr< TopologicalData > topo_ptr, boost::shared_ptr< double > J_ptr, SmartPetscObj< Vec > assemble_vec, Tag topo_tag)
 
MoFEMErrorCode assemble (int side, EntityType type, EntData &data) override
 
- Public Member Functions inherited from OpAssembleBasic< FaceUserDataOperator >
 OpAssembleBasic (const std::string &field_name, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type)
 
 OpAssembleBasic (std::string row_field, std::string col_field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type, const bool assemble_symmetry, ScaleOff scale_off=[]() { return 1;})
 
 OpAssembleBasic (const FieldSpace space)
 
virtual MoFEMErrorCode integrate (EntData &)
 
virtual MoFEMErrorCode integrate (int, EntityType, EntData &data)
 
virtual MoFEMErrorCode integrate (EntData &, EntData &)
 
virtual MoFEMErrorCode assemble (EntData &data)
 
virtual MoFEMErrorCode assemble (int, EntityType, EntData &data)
 
virtual MoFEMErrorCode assemble (int, int, EntityType, EntityType, EntData &row_data, EntData &col_data)
 
MoFEMErrorCode doWork (int side, EntityType type, EntData &data)
 
MoFEMErrorCode doWork (int row_side, int col_side, EntityType row_type, EntityType col_type, EntData &row_data, EntData &col_data)
 

Private Attributes

boost::shared_ptr< std::vector< BrokenBaseSideData > > brokenDispDataPtr
 
boost::shared_ptr< MatrixDouble > hybridDispPtr
 
boost::shared_ptr< MatrixDouble > varHybridDispPtr
 
double alphaTau
 

Additional Inherited Members

- Public Types inherited from EshelbianPlasticity::OpAssembleTopologicalObjectiveDerivativeImplBase< OpAssembleFace >
using OP = OpAssembleFace
 
- Public Types inherited from OpAssembleBasic< FaceUserDataOperator >
using ScaleOff = boost::function< double()>
 
- Public Attributes inherited from OpAssembleBasic< FaceUserDataOperator >
const bool assembleSymmetry
 
boost::shared_ptr< DataAtIntegrationPtsdataAtPts
 data at integration pts
 
VectorDouble nF
 local right hand side vector
 
MatrixDouble K
 local tangent matrix
 
MatrixDouble transposeK
 
ScaleOff scaleOff
 
- Protected Attributes inherited from EshelbianPlasticity::OpAssembleTopologicalObjectiveDerivativeImplBase< OpAssembleFace >
double locJ
 
boost::shared_ptr< doubleJPtr
 
SmartPetscObj< Vec > assembleVec
 
Tag topoTag
 
boost::shared_ptr< TopologicalDatatopoData
 

Detailed Description

Definition at line 182 of file EshelbianTopologicalDerivativeOperators.cpp.

Constructor & Destructor Documentation

◆ OpTauStabilisation_dX()

EshelbianPlasticity::OpTauStabilisation_dX::OpTauStabilisation_dX ( const std::string &  field_name,
boost::shared_ptr< std::vector< BrokenBaseSideData > >  broken_disp_data_ptr,
boost::shared_ptr< MatrixDouble >  hybrid_disp_ptr,
boost::shared_ptr< MatrixDouble >  var_hybrid_disp_ptr,
boost::shared_ptr< TopologicalData topo_ptr,
const double  alpha_tau,
SmartPetscObj< Vec >  vec,
boost::shared_ptr< double J_ptr = nullptr,
Tag  tag = Tag() 
)
inline

Member Function Documentation

◆ integrate()

MoFEMErrorCode EshelbianPlasticity::OpTauStabilisation_dX::integrate ( int  side,
EntityType  type,
EntData data 
)
override

Definition at line 1073 of file EshelbianTopologicalDerivativeOperators.cpp.

1074 {
1076 locJ = 0;
1077
1078#ifndef NDEBUG
1079 if (!topoData)
1080 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1081 "Topological data pointer is null");
1082 if (!brokenDispDataPtr)
1083 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1084 "Broken displacement data pointer is null");
1085 if (!hybridDispPtr)
1086 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1087 "Hybrid displacement pointer is null");
1088 if (!varHybridDispPtr)
1089 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1090 "Adjoint hybrid displacement pointer is null");
1091#endif // NDEBUG
1092
1093 const int nb_dofs = data.getIndices().size();
1094 if (!nb_dofs)
1096
1097 const int nb_integration_pts = getGaussPts().size2();
1098 const int nb_base_functions = data.getN().size2();
1099
1100#ifndef NDEBUG
1101 if (this->nF.size() != nb_dofs)
1102 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1103 "Size of nF %ld != nb_dofs %d", this->nF.size(), nb_dofs);
1104 if (data.getDiffN().size1() != nb_integration_pts)
1105 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1106 "Differential of base functions should have the same number of "
1107 "integration points as the data");
1108 if (data.getDiffN().size2() != nb_base_functions * 2)
1109 SETERRQ(PETSC_COMM_SELF, MOFEM_DATA_INCONSISTENCY,
1110 "Differential of base functions should have the same number of "
1111 "base functions as the data");
1112#endif // NDEBUG
1113
1117
1118 auto &coords = getCoords();
1119 // Tau scale is based on the mesh triangle coordinates, not on the perturbed
1120 // material-position field. Treat h as constant with respect to X.
1121 const double h = std::get<2>(Tools::getTricircumcenter3d(coords.data().data()));
1122
1123 auto t_w = getFTensor0IntegrationWeight();
1124 auto t_tangent1 = getFTensor1Tangent1AtGaussPts();
1125 auto t_tangent2 = getFTensor1Tangent2AtGaussPts();
1126 auto t_u_hybrid = getFTensor1FromMat<SPACE_DIM, -1, DL>(*hybridDispPtr);
1127 auto t_var_u_hybrid =
1128 getFTensor1FromMat<SPACE_DIM, -1, DL>(*varHybridDispPtr);
1129 auto t_diff_base = data.getFTensor1DiffN<2>();
1130
1131 for (int gg = 0; gg != nb_integration_pts; ++gg) {
1133 t_normal(j) =
1134 (FTensor::levi_civita(i, j, k) * t_tangent1(k)) * t_tangent2(i);
1135
1136 double area = std::sqrt(t_normal(i) * t_normal(i));
1138 t_da(i) = t_normal(i) / area;
1139 area /= 2.;
1140 t_da(i) /= 2.;
1141
1142 double tau_density = 0;
1143 for (auto &bd : *brokenDispDataPtr) {
1144 auto t_u_broken =
1145 getFTensor1FromMat<SPACE_DIM, -1, DL>(bd.getFlux(), nb_integration_pts);
1146 auto t_var_u_broken = getFTensor1FromMat<SPACE_DIM, -1, DL>(
1147 bd.getVarFlux(), nb_integration_pts);
1148 for (int ss = 0; ss != gg; ++ss) {
1149 ++t_u_broken;
1150 ++t_var_u_broken;
1151 }
1152
1153 // This is the adjoint-weighted material derivative of the four tau
1154 // stabilisation residual blocks:
1155 // u_gamma-u_gamma, L2-L2, u_gamma-L2, and L2-u_gamma.
1156 const double hybrid_hybrid = t_var_u_hybrid(i) * t_u_hybrid(i);
1157 const double broken_broken = t_var_u_broken(i) * t_u_broken(i);
1158 const double hybrid_broken = -t_var_u_hybrid(i) * t_u_broken(i);
1159 const double broken_hybrid = -t_var_u_broken(i) * t_u_hybrid(i);
1160 tau_density +=
1161 hybrid_hybrid + broken_broken + hybrid_broken + broken_hybrid;
1162 }
1163
1164 const double tau = alphaTau / h;
1165 locJ += t_w * tau * area * tau_density;
1166
1167 auto t_nf = getFTensor1FromArray<SPACE_DIM, SPACE_DIM>(nF);
1168 int rr = 0;
1169 for (; rr != nb_dofs / SPACE_DIM; ++rr) {
1171 t_normal_dX(j, I) =
1172 (FTensor::levi_civita(i, j, I) * t_tangent2(i)) * t_diff_base(N0) +
1173 (FTensor::levi_civita(I, j, k) * t_tangent1(k)) * t_diff_base(N1);
1174
1175 t_nf(I) +=
1176 t_w * alphaTau * tau_density * (t_da(i) * t_normal_dX(i, I)) / h;
1177 ++t_diff_base;
1178 ++t_nf;
1179 }
1180 for (; rr != nb_base_functions; ++rr)
1181 ++t_diff_base;
1182
1183 ++t_w;
1184 ++t_tangent1;
1185 ++t_tangent2;
1186 ++t_u_hybrid;
1187 ++t_var_u_hybrid;
1188 }
1189
1191}
#define FTENSOR_INDEXES(DIM,...)
constexpr int SPACE_DIM
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#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
FTensor::Index< 'j', 3 > j
FTensor::Index< 'k', 3 > k
constexpr std::enable_if<(Dim0<=2 &&Dim1<=2), Tensor2_Expr< Levi_Civita< T >, T, Dim0, Dim1, i, j > >::type levi_civita(const Index< i, Dim0 > &, const Index< j, Dim1 > &)
levi_civita functions to make for easy adhoc use
auto getFTensor1FromMat(M &data, int rr=0, int cc=0)
Get tensor rank 1 (vector) form data matrix.
constexpr IntegrationType I
double h
MatrixDouble & getDiffN(const FieldApproximationBase base)
get derivatives of base functions
auto getFTensor1DiffN(const FieldApproximationBase base)
Get derivatives of base functions.
MatrixDouble & getN(const FieldApproximationBase base)
get base functions this return matrix (nb. of rows is equal to nb. of Gauss pts, nb....
const VectorInt & getIndices() const
Get global indices of degrees of freedom on entity.
VectorDouble nF
local right hand side vector

Member Data Documentation

◆ alphaTau

double EshelbianPlasticity::OpTauStabilisation_dX::alphaTau
private

Definition at line 202 of file EshelbianTopologicalDerivativeOperators.cpp.

◆ brokenDispDataPtr

boost::shared_ptr<std::vector<BrokenBaseSideData> > EshelbianPlasticity::OpTauStabilisation_dX::brokenDispDataPtr
private

Definition at line 199 of file EshelbianTopologicalDerivativeOperators.cpp.

◆ hybridDispPtr

boost::shared_ptr<MatrixDouble> EshelbianPlasticity::OpTauStabilisation_dX::hybridDispPtr
private

Definition at line 200 of file EshelbianTopologicalDerivativeOperators.cpp.

◆ varHybridDispPtr

boost::shared_ptr<MatrixDouble> EshelbianPlasticity::OpTauStabilisation_dX::varHybridDispPtr
private

Definition at line 201 of file EshelbianTopologicalDerivativeOperators.cpp.


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