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

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

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

Public Member Functions

 OpCalculateConstraintsLhs_dTAU (const std::string row_field_name, const std::string col_field_name, boost::shared_ptr< CommonData > common_data_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
 

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

Constructor & Destructor Documentation

◆ OpCalculateConstraintsLhs_dTAU()

PlasticOps::OpCalculateConstraintsLhs_dTAU::OpCalculateConstraintsLhs_dTAU ( const std::string  row_field_name,
const std::string  col_field_name,
boost::shared_ptr< CommonData common_data_ptr 
)
Examples
PlasticOpsGeneric.hpp.

Definition at line 622 of file PlasticOpsGeneric.hpp.

625 : AssemblyDomainEleOp(row_field_name, col_field_name,
627 commonDataPtr(common_data_ptr) {
628 sYmm = false;
629}
FormsIntegrators< DomainEleOp >::Assembly< A >::OpBase AssemblyDomainEleOp
Definition: plastic.cpp:48
@ OPROWCOL
operator doWork is executed on FE rows &columns
boost::shared_ptr< CommonData > commonDataPtr
Definition: PlasticOps.hpp:302

Member Function Documentation

◆ iNtegrate()

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

Definition at line 631 of file PlasticOpsGeneric.hpp.

633 {
635
636 const auto nb_integration_pts = getGaussPts().size2();
637 const auto nb_row_base_functions = row_data.getN().size2();
638
639 auto t_res_c_dtau = getFTensor0FromVec(commonDataPtr->resCdTau);
640 auto next = [&]() { ++t_res_c_dtau; };
641
642 auto t_w = getFTensor0IntegrationWeight();
643 auto t_row_base = row_data.getFTensor0N();
644 for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
645 const double alpha = getMeasure() * t_w;
646 ++t_w;
647
648 const auto res = alpha * (t_res_c_dtau);
649 next();
650
651 auto mat_ptr = locMat.data().begin();
652 size_t rr = 0;
653 for (; rr != AssemblyDomainEleOp::nbRows; ++rr) {
654 auto t_col_base = col_data.getFTensor0N(gg, 0);
655 for (size_t cc = 0; cc != AssemblyDomainEleOp::nbCols; ++cc) {
656 *mat_ptr += t_row_base * t_col_base * res;
657 ++t_col_base;
658 ++mat_ptr;
659 }
660 ++t_row_base;
661 }
662 for (; rr < nb_row_base_functions; ++rr)
663 ++t_row_base;
664 }
665
667}
#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
int nbRows
number of dofs on rows
MatrixDouble locMat
local entity block matrix
int nbCols
number if dof on column

Member Data Documentation

◆ commonDataPtr

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

Definition at line 302 of file PlasticOps.hpp.


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