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

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

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

Public Member Functions

 OpCalculatePlasticFlowRhs (const std::string field_name, boost::shared_ptr< CommonData > common_data_ptr, boost::shared_ptr< MatrixDouble > m_D_ptr)
 [Calculate stress] More...
 
MoFEMErrorCode iNtegrate (EntitiesFieldData::EntData &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< MatrixDouble > mDPtr
 

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 144 of file PlasticOps.hpp.

Constructor & Destructor Documentation

◆ OpCalculatePlasticFlowRhs()

PlasticOps::OpCalculatePlasticFlowRhs::OpCalculatePlasticFlowRhs ( const std::string  field_name,
boost::shared_ptr< CommonData common_data_ptr,
boost::shared_ptr< MatrixDouble >  m_D_ptr 
)

[Calculate stress]

Examples
PlasticOpsGeneric.hpp.

Definition at line 309 of file PlasticOpsGeneric.hpp.

313 commonDataPtr(common_data_ptr), mDPtr(m_D_ptr) {}
FormsIntegrators< DomainEleOp >::Assembly< A >::OpBase AssemblyDomainEleOp
Definition: plastic.cpp:48
constexpr auto field_name
@ OPROW
operator doWork function is executed on FE rows
boost::shared_ptr< MatrixDouble > mDPtr
Definition: PlasticOps.hpp:152
boost::shared_ptr< CommonData > commonDataPtr
Definition: PlasticOps.hpp:151

Member Function Documentation

◆ iNtegrate()

MoFEMErrorCode PlasticOps::OpCalculatePlasticFlowRhs::iNtegrate ( EntitiesFieldData::EntData &  data)
Examples
PlasticOps.hpp, and PlasticOpsGeneric.hpp.

Definition at line 316 of file PlasticOpsGeneric.hpp.

316 {
318
319 const auto nb_integration_pts = getGaussPts().size2();
320 const auto nb_base_functions = data.getN().size2();
321
322 auto t_res_flow =
323 getFTensor2SymmetricFromMat<SPACE_DIM>(commonDataPtr->resFlow);
324
325 auto t_L = symm_L_tensor();
326
327 auto next = [&]() { ++t_res_flow; };
328
329 auto t_w = getFTensor0IntegrationWeight();
330 auto t_base = data.getFTensor0N();
331 auto &nf = AssemblyDomainEleOp::locF;
332 for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
333 double alpha = getMeasure() * t_w;
334 ++t_w;
335
337 t_rhs(L) = alpha * (t_res_flow(i, j) * t_L(i, j, L));
338 next();
339
340 auto t_nf = getFTensor1FromArray<size_symm, size_symm>(nf);
341 size_t bb = 0;
342 for (; bb != AssemblyDomainEleOp::nbRows / size_symm; ++bb) {
343 t_nf(L) += t_base * t_rhs(L);
344 ++t_base;
345 ++t_nf;
346 }
347 for (; bb < nb_base_functions; ++bb)
348 ++t_base;
349 }
350
352}
#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
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< 'i', SPACE_DIM > i
[Common data]
Definition: PlasticOps.hpp:92
constexpr auto size_symm
Definition: plastic.cpp:33
VectorDouble locF
local entity vector
int nbRows
number of dofs on rows

Member Data Documentation

◆ commonDataPtr

boost::shared_ptr<CommonData> PlasticOps::OpCalculatePlasticFlowRhs::commonDataPtr
private
Examples
PlasticOps.hpp, and PlasticOpsGeneric.hpp.

Definition at line 151 of file PlasticOps.hpp.

◆ mDPtr

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

Definition at line 152 of file PlasticOps.hpp.


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