v0.15.0
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
OpCalculateTractionFromSideEl Struct Reference

#include "users_modules/eshelbian_plasticity/src/EshelbianOperators.hpp"

Inheritance diagram for OpCalculateTractionFromSideEl:
[legend]
Collaboration diagram for OpCalculateTractionFromSideEl:
[legend]

Public Member Functions

 OpCalculateTractionFromSideEl (boost::shared_ptr< DataAtIntegrationPts > data_ptr)
 
MoFEMErrorCode doWork (int side, EntityType type, EntData &data)
 

Private Attributes

boost::shared_ptr< DataAtIntegrationPtsdataAtPts
 data at integration pts
 

Detailed Description

Definition at line 300 of file EshelbianOperators.hpp.

Constructor & Destructor Documentation

◆ OpCalculateTractionFromSideEl()

OpCalculateTractionFromSideEl::OpCalculateTractionFromSideEl ( boost::shared_ptr< DataAtIntegrationPts data_ptr)
inline

Definition at line 301 of file EshelbianOperators.hpp.

303 : SideEleOp(NOSPACE, SideEleOp::OPSPACE), dataAtPts(data_ptr) {
304 std::fill(&doEntities[MBVERTEX], &doEntities[MBMAXTYPE], false);
305 for (auto t = moab::CN::TypeDimensionMap[SPACE_DIM].first;
306 t <= moab::CN::TypeDimensionMap[SPACE_DIM].second; ++t)
307 doEntities[t] = true;
308 sYmm = false;
309 }
constexpr int SPACE_DIM
@ NOSPACE
Definition definitions.h:83
constexpr double t
plate stiffness
Definition plate.cpp:58
boost::shared_ptr< DataAtIntegrationPts > dataAtPts
data at integration pts
EleOnSide::UserDataOperator SideEleOp

Member Function Documentation

◆ doWork()

MoFEMErrorCode OpCalculateTractionFromSideEl::doWork ( int  side,
EntityType  type,
EntData data 
)
Examples
mofem/users_modules/eshelbian_plasticity/src/impl/EshelbianOperators.cpp.

Definition at line 884 of file EshelbianOperators.cpp.

885 {
889
890 auto N_InLoop = getNinTheLoop();
891 auto sensee = getSkeletonSense();
892 auto nb_gauss_pts = getGaussPts().size2();
893 auto t_normal = getFTensor1NormalsAtGaussPts();
894
895 auto t_sigma_ptr =
896 getFTensor2FromMat<SPACE_DIM, SPACE_DIM>(dataAtPts->approxPAtPts);
897 if (N_InLoop == 0) {
898 dataAtPts->tractionAtPts.resize(SPACE_DIM, nb_gauss_pts, false);
899 dataAtPts->tractionAtPts.clear();
900 }
901 auto t_traction = getFTensor1FromMat<SPACE_DIM>(dataAtPts->tractionAtPts);
902
903 for (int gg = 0; gg != nb_gauss_pts; gg++) {
904 t_traction(i) = t_sigma_ptr(i, j) * sensee * (t_normal(j) / t_normal.l2());
905 ++t_traction;
906 ++t_sigma_ptr;
907 ++t_normal;
908 }
909
911}
#define FTENSOR_INDEX(DIM, I)
#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
FTensor::Index< 'j', 3 > j

Member Data Documentation

◆ dataAtPts

boost::shared_ptr<DataAtIntegrationPts> OpCalculateTractionFromSideEl::dataAtPts
private

data at integration pts

Definition at line 314 of file EshelbianOperators.hpp.


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