v0.14.0
Public Member Functions | Private Attributes | List of all members
PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp > Struct Template Reference

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

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

Public Member Functions

 OpCalculatePlasticFlowLhs_LogStrain_dUImpl (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...
 

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 >
using OpType = typename EleOp::OpType
 
using EntData = EntitiesFieldData::EntData
 
using MatSetValuesHook = boost::function< MoFEMErrorCode(ForcesAndSourcesCore::UserDataOperator *op_ptr, const EntitiesFieldData::EntData &row_data, const EntitiesFieldData::EntData &col_data, MatrixDouble &m)>
 
- 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...
 
- Static Public Attributes inherited from MoFEM::OpBaseImpl< A, EleOp >
static MatSetValuesHook matSetValuesHook
 
- Protected Member Functions inherited from MoFEM::OpBaseImpl< A, EleOp >
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)
 
virtual size_t getNbOfBaseFunctions (EntitiesFieldData::EntData &data)
 Get number of base functions. More...
 
- Protected Attributes inherited from MoFEM::OpBaseImpl< A, EleOp >
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

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

Definition at line 129 of file PlasticOpsLargeStrains.hpp.

Constructor & Destructor Documentation

◆ OpCalculatePlasticFlowLhs_LogStrain_dUImpl()

template<int DIM, typename AssemblyDomainEleOp >
PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::OpCalculatePlasticFlowLhs_LogStrain_dUImpl ( 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 
)

Definition at line 149 of file PlasticOpsLargeStrains.hpp.

154  : AssemblyDomainEleOp(row_field_name, col_field_name,
155  AssemblyDomainEleOp::OPROWCOL),
156  commonDataPtr(common_data_ptr),
157  commonHenckyDataPtr(comman_henky_data_ptr), mDPtr(m_D_ptr) {
158  AssemblyDomainEleOp::sYmm = false;
159 }

Member Function Documentation

◆ iNtegrate()

template<int DIM, typename AssemblyDomainEleOp >
MoFEMErrorCode PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::iNtegrate ( EntitiesFieldData::EntData row_data,
EntitiesFieldData::EntData col_data 
)

Definition at line 164 of file PlasticOpsLargeStrains.hpp.

165  {
167 
174  constexpr auto size_symm = (DIM * (DIM + 1)) / 2;
176 
178 
179  const auto nb_integration_pts = AssemblyDomainEleOp::getGaussPts().size2();
180  const auto nb_row_base_functions = row_data.getN().size2();
181 
182  if (AssemblyDomainEleOp::colType == MBVERTEX &&
184 
185  resDiff.resize(size_symm * DIM * DIM, nb_integration_pts, false);
186  auto t_res_diff = getFTensor3FromMat<size_symm, DIM, DIM>(resDiff);
187 
188  auto t_res_flow_dstrain =
189  getFTensor4DdgFromMat<DIM, DIM>(commonDataPtr->resFlowDstrain);
190  auto t_grad = getFTensor2FromMat<DIM, DIM>(*(commonDataPtr->mGradPtr));
191  auto t_logC_dC =
192  getFTensor4DdgFromMat<DIM, DIM>(commonHenckyDataPtr->matLogCdC);
193 
194  auto next = [&]() {
195  ++t_res_flow_dstrain;
196  ++t_grad;
197  ++t_logC_dC;
198  ++t_res_diff;
199  };
200 
202  constexpr auto t_kd = FTensor::Kronecker_Delta<int>();
204  t_diff_grad(i, j, k, l) = t_kd(i, k) * t_kd(j, l);
205 
206  for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
207  FTensor::Ddg<double, DIM, DIM> t_diff_ls_dlogC_dC;
210 
211  t_diff_ls_dlogC_dC(i, j, k, l) =
212  (t_res_flow_dstrain(i, j, m, n)) * (t_logC_dC(m, n, k, l) / 2);
213 
214  t_F(i, j) = t_grad(i, j) + t_kd(i, j);
215  t_dC_dF(i, j, k, l) = (t_kd(i, l) * t_F(k, j)) + (t_kd(j, l) * t_F(k, i));
216 
218  t_res_diff(L, i, j) =
219  (t_L(m, n, L) * t_diff_ls_dlogC_dC(m, n, k, l)) * t_dC_dF(k, l, i, j);
220  next();
221  }
222  }
223 
224  auto t_res_diff = getFTensor3FromMat<size_symm, DIM, DIM>(resDiff);
225 
226  auto t_w = AssemblyDomainEleOp::getFTensor0IntegrationWeight();
227  auto t_row_base = row_data.getFTensor0N();
228  for (size_t gg = 0; gg != nb_integration_pts; ++gg) {
229  double alpha = AssemblyDomainEleOp::getMeasure() * t_w;
230  ++t_w;
231 
232  size_t rr = 0;
233  for (; rr != AssemblyDomainEleOp::nbRows / size_symm; ++rr) {
234  const auto row_base = alpha * t_row_base;
235  auto t_mat =
237  auto t_col_diff_base = col_data.getFTensor1DiffN<DIM>(gg, 0);
238  for (auto cc = 0; cc != AssemblyDomainEleOp::nbCols / DIM; ++cc) {
239  t_mat(L, l) += row_base * (t_res_diff(L, l, k) * t_col_diff_base(k));
240  ++t_mat;
241  ++t_col_diff_base;
242  }
243  ++t_row_base;
244  }
245 
246  for (; rr < nb_row_base_functions; ++rr)
247  ++t_row_base;
248 
249  ++t_res_diff;
250  }
251 
253 }

Member Data Documentation

◆ commonDataPtr

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

Definition at line 141 of file PlasticOpsLargeStrains.hpp.

◆ commonHenckyDataPtr

template<int DIM, typename AssemblyDomainEleOp >
boost::shared_ptr<HenckyOps::CommonData> PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::commonHenckyDataPtr
private

Definition at line 142 of file PlasticOpsLargeStrains.hpp.

◆ mDPtr

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

Definition at line 143 of file PlasticOpsLargeStrains.hpp.

◆ resDiff

template<int DIM, typename AssemblyDomainEleOp >
MatrixDouble PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::resDiff
private

Definition at line 144 of file PlasticOpsLargeStrains.hpp.


The documentation for this struct was generated from the following file:
MoFEM::OpBaseImpl::locMat
MatrixDouble locMat
local entity block matrix
Definition: FormsIntegrators.hpp:239
FTensor::Kronecker_Delta
Kronecker Delta class.
Definition: Kronecker_Delta.hpp:15
FTensor::Tensor2
Definition: Tensor2_value.hpp:16
PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::commonDataPtr
boost::shared_ptr< CommonData > commonDataPtr
Definition: PlasticOpsLargeStrains.hpp:141
FTensor::Number
Definition: Number.hpp:11
FTensor::Tensor3
Definition: Tensor3_value.hpp:12
PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::resDiff
MatrixDouble resDiff
Definition: PlasticOpsLargeStrains.hpp:144
MoFEM::OpBaseImpl::colSide
int colSide
column side number
Definition: FormsIntegrators.hpp:232
PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::mDPtr
boost::shared_ptr< MatrixDouble > mDPtr
Definition: PlasticOpsLargeStrains.hpp:143
MoFEM::L
VectorDouble L
Definition: Projection10NodeCoordsOnField.cpp:124
PlasticOps::get_mat_tensor_sym_dvector
static auto get_mat_tensor_sym_dvector(size_t rr, MatrixDouble &mat, FTensor::Number< 2 >)
[Lambda functions]
Definition: PlasticOpsGeneric.hpp:366
FTensor::Tensor4
Definition: Tensor4_value.hpp:18
size_symm
constexpr auto size_symm
Definition: plastic.cpp:42
PlasticOps::OpCalculatePlasticFlowLhs_LogStrain_dUImpl< DIM, GAUSS, AssemblyDomainEleOp >::commonHenckyDataPtr
boost::shared_ptr< HenckyOps::CommonData > commonHenckyDataPtr
Definition: PlasticOpsLargeStrains.hpp:142
i
FTensor::Index< 'i', SPACE_DIM > i
Definition: hcurl_divergence_operator_2d.cpp:27
t_kd
constexpr auto t_kd
Definition: free_surface.cpp:137
FTensor::Index< 'i', DIM >
convert.n
n
Definition: convert.py:82
MoFEM::OpBaseImpl::nbCols
int nbCols
number if dof on column
Definition: FormsIntegrators.hpp:227
MoFEM::OpBaseImpl::nbRows
int nbRows
number of dofs on rows
Definition: FormsIntegrators.hpp:226
PlasticOps::symm_L_tensor
auto symm_L_tensor(FTensor::Number< DIM >)
Definition: PlasticOpsGeneric.hpp:21
j
FTensor::Index< 'j', 3 > j
Definition: matrix_function.cpp:19
FTensor::Ddg
Definition: Ddg_value.hpp:7
m
FTensor::Index< 'm', 3 > m
Definition: shallow_wave.cpp:80
AssemblyDomainEleOp
FormsIntegrators< DomainEleOp >::Assembly< A >::OpBase AssemblyDomainEleOp
Definition: tensor_divergence_operator.cpp:59
k
FTensor::Index< 'k', 3 > k
Definition: matrix_function.cpp:20
MoFEMFunctionReturn
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:416
MoFEMFunctionBegin
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:346
MoFEM::OpBaseImpl::colType
EntityType colType
column type
Definition: FormsIntegrators.hpp:234
l
FTensor::Index< 'l', 3 > l
Definition: matrix_function.cpp:21