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

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

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

Public Member Functions

 OpCalculateConstraintsLhs_LogStrain_dU (const std::string row_field_name, const std::string col_field_name, boost::shared_ptr< CommonData > common_data_ptr, boost::shared_ptr< HenckyOps::CommonData > comman_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 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 265 of file PlasticOps.hpp.

Constructor & Destructor Documentation

◆ OpCalculateConstraintsLhs_LogStrain_dU()

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

Definition at line 200 of file PlasticOpsLargeStrains.hpp.

205 : AssemblyDomainEleOp(row_field_name, col_field_name,
207 commonDataPtr(common_data_ptr),
208 commonHenckyDataPtr(comman_henky_data_ptr), mDPtr(m_D_ptr) {
209 sYmm = false;
210}
FormsIntegrators< DomainEleOp >::Assembly< A >::OpBase AssemblyDomainEleOp
Definition: plastic.cpp:48
@ OPROWCOL
operator doWork is executed on FE rows &columns
boost::shared_ptr< MatrixDouble > mDPtr
Definition: PlasticOps.hpp:277
boost::shared_ptr< CommonData > commonDataPtr
Definition: PlasticOps.hpp:275
boost::shared_ptr< HenckyOps::CommonData > commonHenckyDataPtr
Definition: PlasticOps.hpp:276

Member Function Documentation

◆ iNtegrate()

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

Definition at line 212 of file PlasticOpsLargeStrains.hpp.

214 {
216 constexpr auto t_kd = FTensor::Kronecker_Delta<int>();
217
219 false);
220 locMat.clear();
221
222 const auto nb_integration_pts = getGaussPts().size2();
223 const auto nb_row_base_functions = row_data.getN().size2();
224
225 if (AssemblyDomainEleOp::colType == MBVERTEX &&
227
228 resDiff.resize(SPACE_DIM * SPACE_DIM, nb_integration_pts, false);
229 auto t_res_diff = getFTensor2FromMat<SPACE_DIM, SPACE_DIM>(resDiff);
230 auto t_grad =
231 getFTensor2FromMat<SPACE_DIM, SPACE_DIM>(*(commonDataPtr->mGradPtr));
232 auto t_logC_dC = getFTensor4DdgFromMat<SPACE_DIM, SPACE_DIM>(
233 commonHenckyDataPtr->matLogCdC);
234 auto t_c_dstrain =
235 getFTensor2SymmetricFromMat<SPACE_DIM>(commonDataPtr->resCdStrain);
236
237 auto next = [&]() {
238 ++t_grad;
239 ++t_logC_dC;
240 ++t_c_dstrain;
241 ++t_res_diff;
242 };
243
244 auto t_diff_grad_symmetrise = diff_symmetrize();
245
246 for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
250 t_dC_dF;
251
252 t_diff_ls_dlog_c(k, l) =
253 (t_c_dstrain(i, j)) * (t_logC_dC(i, j, k, l) / 2);
254 t_F(i, j) = t_grad(i, j) + t_kd(i, j);
255 t_dC_dF(i, j, k, l) = (t_kd(i, l) * t_F(k, j)) + (t_kd(j, l) * t_F(k, i));
256
258 t_res_diff(i, j) = (t_diff_ls_dlog_c(k, l) * t_dC_dF(k, l, i, j));
259 next();
260 }
261 }
262
263 auto t_res_diff = getFTensor2FromMat<SPACE_DIM, SPACE_DIM>(resDiff);
264
265 auto t_w = getFTensor0IntegrationWeight();
266 auto t_row_base = row_data.getFTensor0N();
267 for (auto gg = 0; gg != nb_integration_pts; ++gg) {
268 double alpha = getMeasure() * t_w;
269 ++t_w;
270
271 auto t_mat = getFTensor1FromPtr<SPACE_DIM>(locMat.data().data());
272 size_t rr = 0;
273 for (; rr != AssemblyDomainEleOp::nbRows; ++rr) {
274 const auto row_base = alpha * t_row_base;
275 auto t_col_diff_base = col_data.getFTensor1DiffN<SPACE_DIM>(gg, 0);
276 for (size_t cc = 0; cc != AssemblyDomainEleOp::nbCols / SPACE_DIM; cc++) {
277 t_mat(i) += row_base * (t_res_diff(i, j) * t_col_diff_base(j));
278 ++t_mat;
279 ++t_col_diff_base;
280 }
281 ++t_row_base;
282 }
283 for (; rr != nb_row_base_functions; ++rr)
284 ++t_row_base;
285
286 ++t_res_diff;
287 }
288
290}
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
FTensor::Index< 'j', SPACE_DIM > j
Definition: PlasticOps.hpp:93
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
auto diff_symmetrize()
Definition: PlasticOps.hpp:333
int colSide
column side number
int nbRows
number of dofs on rows
EntityType colType
column type
MatrixDouble locMat
local entity block matrix
int nbCols
number if dof on column

Member Data Documentation

◆ commonDataPtr

boost::shared_ptr<CommonData> PlasticOps::OpCalculateConstraintsLhs_LogStrain_dU::commonDataPtr
private
Examples
PlasticOps.hpp, and PlasticOpsLargeStrains.hpp.

Definition at line 275 of file PlasticOps.hpp.

◆ commonHenckyDataPtr

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

Definition at line 276 of file PlasticOps.hpp.

◆ mDPtr

boost::shared_ptr<MatrixDouble> PlasticOps::OpCalculateConstraintsLhs_LogStrain_dU::mDPtr
private
Examples
PlasticOps.hpp.

Definition at line 277 of file PlasticOps.hpp.

◆ resDiff

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

Definition at line 278 of file PlasticOps.hpp.


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