v0.16.0
Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp > Struct Template Reference

[Calculate stress] More...

#include "tutorials/adv-0_plasticity/src/PlasticOpsGeneric.hpp"

Inheritance diagram for PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >:
[legend]
Collaboration diagram for PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >:
[legend]

Public Member Functions

 OpCalculatePlasticFlowRhsImpl (const std::string field_name, boost::shared_ptr< CommonData > common_data_ptr, boost::shared_ptr< MatrixDouble > m_D_ptr)
 
MoFEMErrorCode iNtegrate (EntitiesFieldData::EntData &data)
 
 OpCalculatePlasticFlowRhsImpl (const std::string field_name, boost::shared_ptr< CommonData > common_data_ptr, boost::shared_ptr< MatrixDouble > m_D_ptr)
 
MoFEMErrorCode iNtegrate (EntitiesFieldData::EntData &data)
 

Private Attributes

boost::shared_ptr< CommonDatacommonDataPtr
 
boost::shared_ptr< MatrixDouble > mDPtr
 

Detailed Description

template<int DIM, typename AssemblyDomainEleOp>
struct PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >

[Calculate stress]

Definition at line 708 of file PlasticOpsGeneric.hpp.

Constructor & Destructor Documentation

◆ OpCalculatePlasticFlowRhsImpl() [1/2]

template<int DIM, typename AssemblyDomainEleOp >
PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >::OpCalculatePlasticFlowRhsImpl ( const std::string  field_name,
boost::shared_ptr< CommonData common_data_ptr,
boost::shared_ptr< MatrixDouble >  m_D_ptr 
)

Definition at line 721 of file PlasticOpsGeneric.hpp.

725 : AssemblyDomainEleOp(field_name, field_name, AssemblyDomainEleOp::OPROW),
726 commonDataPtr(common_data_ptr), mDPtr(m_D_ptr) {}
constexpr auto field_name
FormsIntegrators< DomainEleOp >::Assembly< A >::OpBase AssemblyDomainEleOp

◆ OpCalculatePlasticFlowRhsImpl() [2/2]

template<int DIM, typename AssemblyDomainEleOp >
PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >::OpCalculatePlasticFlowRhsImpl ( const std::string  field_name,
boost::shared_ptr< CommonData common_data_ptr,
boost::shared_ptr< MatrixDouble >  m_D_ptr 
)

Member Function Documentation

◆ iNtegrate() [1/2]

template<int DIM, typename AssemblyDomainEleOp >
MoFEMErrorCode PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >::iNtegrate ( EntitiesFieldData::EntData &  data)

Definition at line 730 of file PlasticOpsGeneric.hpp.

731 {
733
734 FTensor::Index<'i', DIM> i;
735 FTensor::Index<'j', DIM> j;
736 FTensor::Index<'k', DIM> k;
737 FTensor::Index<'l', DIM> l;
738 constexpr auto size_symm = (DIM * (DIM + 1)) / 2;
740
741 const auto nb_integration_pts = AssemblyDomainEleOp::getGaussPts().size2();
742 const auto nb_base_functions = data.getN().size2();
743
744 auto t_res_flow = getFTensor2SymmetricFromMat<DIM>(commonDataPtr->resFlow);
745
746 auto t_L = FTensor::symm_l_tensor<double, DIM>();
747
748 auto next = [&]() { ++t_res_flow; };
749
750 auto t_w = AssemblyDomainEleOp::getFTensor0IntegrationWeight();
751 auto t_base = data.getFTensor0N();
752 auto &nf = AssemblyDomainEleOp::locF;
753 for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
754 double alpha = AssemblyDomainEleOp::getMeasure() * t_w;
755 ++t_w;
756
758 t_rhs(L) = alpha * (t_res_flow(i, j) * t_L(i, j, L));
759 next();
760
761 auto t_nf = getFTensor1FromArray<size_symm, size_symm>(nf);
762 size_t bb = 0;
763 for (; bb != AssemblyDomainEleOp::nbRows / size_symm; ++bb) {
764 t_nf(L) += t_base * t_rhs(L);
765 ++t_base;
766 ++t_nf;
767 }
768 for (; bb < nb_base_functions; ++bb)
769 ++t_base;
770 }
771
773}
#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< 'l', 3 > l
FTensor::Index< 'j', 3 > j
FTensor::Index< 'k', 3 > k
constexpr auto size_symm
Definition plastic.cpp:42

◆ iNtegrate() [2/2]

template<int DIM, typename AssemblyDomainEleOp >
MoFEMErrorCode PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >::iNtegrate ( EntitiesFieldData::EntData &  data)

Member Data Documentation

◆ commonDataPtr

template<int DIM, typename AssemblyDomainEleOp >
boost::shared_ptr< CommonData > PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >::commonDataPtr
private

Definition at line 716 of file PlasticOpsGeneric.hpp.

◆ mDPtr

template<int DIM, typename AssemblyDomainEleOp >
boost::shared_ptr< MatrixDouble > PlasticOps::OpCalculatePlasticFlowRhsImpl< DIM, GAUSS, AssemblyDomainEleOp >::mDPtr
private

Definition at line 717 of file PlasticOpsGeneric.hpp.


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