v0.13.2
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP Struct Reference

#include <users_modules/tutorials/adv-0/src/PlasticOps.hpp>

Inheritance diagram for PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP:
[legend]
Collaboration diagram for PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP:
[legend]

Public Member Functions

 OpCalculatePlasticInternalForceLhs_LogStrain_dEP (const std::string row_field_name, const std::string col_field_name, boost::shared_ptr< CommonData > common_data_ptr, boost::shared_ptr< HenckyOps::CommonData > common_henky_data_ptr, boost::shared_ptr< MatrixDouble > m_D_ptr)
 
MoFEMErrorCode iNtegrate (EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)
 
- Public Member Functions inherited from MoFEM::OpBaseImpl< A, EleOp >
 OpBaseImpl (const std::string row_field_name, const std::string col_field_name, const OpType type, boost::shared_ptr< Range > ents_ptr=nullptr)
 
MoFEMErrorCode doWork (int row_side, int col_side, EntityType row_type, EntityType col_type, EntData &row_data, EntData &col_data)
 Do calculations for the left hand side. More...
 
MoFEMErrorCode doWork (int row_side, EntityType row_type, EntData &row_data)
 Do calculations for the right hand side. More...
 
void setAssembleTo (AssembleTo a_to)
 Where to assemble. More...
 

Private Attributes

boost::shared_ptr< CommonDatacommonDataPtr
 
boost::shared_ptr< HenckyOps::CommonDatacommonHenckyDataPtr
 
boost::shared_ptr< MatrixDouble > mDPtr
 
MatrixDouble locMat
 
MatrixDouble resDiff
 

Additional Inherited Members

- Public Types inherited from MoFEM::OpBaseImpl< A, EleOp >
enum  AssembleTo { AMat , BMat }
 
using OpType = typename EleOp::OpType
 
using EntData = EntitiesFieldData::EntData
 
- Public Attributes inherited from MoFEM::OpBaseImpl< A, EleOp >
TimeFun timeScalingFun
 assumes that time variable is set More...
 
FEFun feScalingFun
 assumes that time variable is set More...
 
boost::shared_ptr< RangeentsPtr
 Entities on which element is run. More...
 
- Protected Member Functions inherited from MoFEM::OpBaseImpl< A, EleOp >
auto matSelector ()
 Select matrix. More...
 
template<int DIM>
FTensor::Tensor1< FTensor::PackPtr< double *, DIM >, DIM > getNf ()
 
template<int DIM>
FTensor::Tensor2< FTensor::PackPtr< double *, DIM >, DIM, DIM > getLocMat (const int rr)
 
virtual MoFEMErrorCode iNtegrate (EntData &row_data, EntData &col_data)
 Integrate grad-grad operator. More...
 
virtual MoFEMErrorCode aSsemble (EntData &row_data, EntData &col_data, const bool trans)
 
virtual MoFEMErrorCode iNtegrate (EntData &data)
 Class dedicated to integrate operator. More...
 
virtual MoFEMErrorCode aSsemble (EntData &data)
 
- Protected Attributes inherited from MoFEM::OpBaseImpl< A, EleOp >
enum AssembleTo assembleTo = BMat
 
int nbRows
 number of dofs on rows More...
 
int nbCols
 number if dof on column More...
 
int nbIntegrationPts
 number of integration points More...
 
int nbRowBaseFunctions
 number or row base functions More...
 
int rowSide
 row side number More...
 
int colSide
 column side number More...
 
EntityType rowType
 row type More...
 
EntityType colType
 column type More...
 
bool assembleTranspose
 
bool onlyTranspose
 
MatrixDouble locMat
 local entity block matrix More...
 
MatrixDouble locMatTranspose
 local entity block matrix More...
 
VectorDouble locF
 local entity vector More...
 

Detailed Description

Examples
plastic.cpp.

Definition at line 179 of file PlasticOps.hpp.

Constructor & Destructor Documentation

◆ OpCalculatePlasticInternalForceLhs_LogStrain_dEP()

PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP::OpCalculatePlasticInternalForceLhs_LogStrain_dEP ( const std::string  row_field_name,
const std::string  col_field_name,
boost::shared_ptr< CommonData common_data_ptr,
boost::shared_ptr< HenckyOps::CommonData common_henky_data_ptr,
boost::shared_ptr< MatrixDouble >  m_D_ptr 
)
Examples
PlasticOpsLargeStrains.hpp.

Definition at line 7 of file PlasticOpsLargeStrains.hpp.

13 : AssemblyDomainEleOp(row_field_name, col_field_name,
15 commonDataPtr(common_data_ptr),
16 commonHenckyDataPtr(common_henky_data_ptr), mDPtr(m_D_ptr) {
17 sYmm = false;
18}
FormsIntegrators< DomainEleOp >::Assembly< A >::OpBase AssemblyDomainEleOp
Definition: plastic.cpp:48
@ OPROWCOL
operator doWork is executed on FE rows &columns
boost::shared_ptr< HenckyOps::CommonData > commonHenckyDataPtr
Definition: PlasticOps.hpp:191

Member Function Documentation

◆ iNtegrate()

MoFEMErrorCode PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP::iNtegrate ( EntitiesFieldData::EntData &  row_data,
EntitiesFieldData::EntData &  col_data 
)
Examples
PlasticOps.hpp, and PlasticOpsLargeStrains.hpp.

Definition at line 20 of file PlasticOpsLargeStrains.hpp.

22 {
24
26
27 const size_t nb_integration_pts = row_data.getN().size1();
28 const size_t nb_row_base_functions = row_data.getN().size2();
29
30 if (AssemblyDomainEleOp::rowType == MBVERTEX &&
32 resDiff.resize(SPACE_DIM * SPACE_DIM * size_symm, nb_integration_pts,
33 false);
34 auto t_res_diff =
35 getFTensor3FromMat<SPACE_DIM, SPACE_DIM, size_symm>(resDiff);
36 auto t_D = getFTensor4DdgFromMat<SPACE_DIM, SPACE_DIM, 0>(*mDPtr);
37 auto t_logC_dC = getFTensor4DdgFromMat<SPACE_DIM, SPACE_DIM>(
38 commonHenckyDataPtr->matLogCdC);
39 auto t_grad = getFTensor2FromMat<SPACE_DIM, SPACE_DIM>(
40 *(commonHenckyDataPtr->matGradPtr));
41 auto t_L = symm_L_tensor();
42 constexpr auto t_kd = FTensor::Kronecker_Delta<int>();
43 for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
45 t_F(i, j) = t_grad(i, j) + t_kd(i, j);
47 t_DLogC_dC;
48 t_DLogC_dC(i, j, k, l) = t_D(m, n, k, l) * t_logC_dC(m, n, i, j);
50 t_FDLogC_dC;
51 t_FDLogC_dC(i, j, k, l) = t_F(i, m) * t_DLogC_dC(m, j, k, l);
53 t_res_diff(i, j, L) = t_FDLogC_dC(i, j, k, l) * t_L(k, l, L);
54 ++t_logC_dC;
55 ++t_grad;
56 ++t_res_diff;
57 }
58 }
59
60 auto t_w = getFTensor0IntegrationWeight();
61 auto t_row_diff_base = row_data.getFTensor1DiffN<SPACE_DIM>();
62 auto t_res_diff =
63 getFTensor3FromMat<SPACE_DIM, SPACE_DIM, size_symm>(resDiff);
64
65 for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
66 double alpha = getMeasure() * t_w;
67
68 size_t rr = 0;
69 for (; rr != AssemblyDomainEleOp::nbRows / SPACE_DIM; ++rr) {
70
71 auto t_mat =
73
75 t_tmp(i, L) = (t_res_diff(i, j, L) * (alpha * t_row_diff_base(j)));
76
77 auto t_col_base = col_data.getFTensor0N(gg, 0);
78 for (size_t cc = 0; cc != AssemblyDomainEleOp::nbCols / size_symm; ++cc) {
79
80 t_mat(i, L) -= (t_col_base * t_tmp(i, L));
81
82 ++t_mat;
83 ++t_col_base;
84 }
85
86 ++t_row_diff_base;
87 }
88
89 for (; rr < nb_row_base_functions; ++rr)
90 ++t_row_diff_base;
91
92 ++t_w;
93 ++t_res_diff;
94 }
95
97}
constexpr int SPACE_DIM
Kronecker Delta class.
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:346
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:416
constexpr auto t_kd
auto symm_L_tensor()
Definition: PlasticOps.hpp:315
FTensor::Index< 'j', SPACE_DIM > j
Definition: PlasticOps.hpp:93
FTensor::Index< 'L', size_symm > L
Definition: PlasticOps.hpp:106
FTensor::Index< 'l', SPACE_DIM > l
Definition: PlasticOps.hpp:95
FTensor::Index< 'k', SPACE_DIM > k
Definition: PlasticOps.hpp:94
FTensor::Index< 'i', SPACE_DIM > i
[Common data]
Definition: PlasticOps.hpp:92
FTensor::Index< 'm', SPACE_DIM > m
Definition: PlasticOps.hpp:96
static FTensor::Tensor2< FTensor::PackPtr< double *, 3 >, 2, 3 > get_mat_vector_dtensor_sym(size_t rr, MatrixDouble &mat, FTensor::Number< 2 >)
FTensor::Index< 'n', SPACE_DIM > n
Definition: PlasticOps.hpp:97
constexpr auto size_symm
Definition: plastic.cpp:33
int rowSide
row side number
int nbRows
number of dofs on rows
MatrixDouble locMat
local entity block matrix
int nbCols
number if dof on column
EntityType rowType
row type

Member Data Documentation

◆ commonDataPtr

boost::shared_ptr<CommonData> PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP::commonDataPtr
private
Examples
PlasticOps.hpp.

Definition at line 190 of file PlasticOps.hpp.

◆ commonHenckyDataPtr

boost::shared_ptr<HenckyOps::CommonData> PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP::commonHenckyDataPtr
private
Examples
PlasticOps.hpp, and PlasticOpsLargeStrains.hpp.

Definition at line 191 of file PlasticOps.hpp.

◆ locMat

MatrixDouble PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP::locMat
private
Examples
PlasticOps.hpp, and PlasticOpsLargeStrains.hpp.

Definition at line 193 of file PlasticOps.hpp.

◆ mDPtr

boost::shared_ptr<MatrixDouble> PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP::mDPtr
private
Examples
PlasticOps.hpp, and PlasticOpsLargeStrains.hpp.

Definition at line 192 of file PlasticOps.hpp.

◆ resDiff

MatrixDouble PlasticOps::OpCalculatePlasticInternalForceLhs_LogStrain_dEP::resDiff
private
Examples
PlasticOps.hpp, and PlasticOpsLargeStrains.hpp.

Definition at line 194 of file PlasticOps.hpp.


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