#include <users_modules/eshelbian_plasticit/src/EshelbianPlasticity.hpp>
|
| OpSpatialConsistency_dBubble_dBubble (std::string row_field, std::string col_field, boost::shared_ptr< DataAtIntegrationPts > data_ptr) |
|
MoFEMErrorCode | integrate (EntData &row_data, EntData &col_data) |
|
| OpAssembleVolume (const std::string &field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type) |
|
| OpAssembleVolume (std::string row_field, std::string col_field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type, const bool assemble_symmetry) |
|
| OpAssembleBasic (const std::string &field_name, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type) |
|
| OpAssembleBasic (std::string row_field, std::string col_field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type, const bool assemble_symmetry, ScaleOff scale_off=[]() { return 1;}) |
|
virtual MoFEMErrorCode | integrate (EntData &data) |
|
virtual MoFEMErrorCode | integrate (int row_side, EntityType row_type, EntData &data) |
|
virtual MoFEMErrorCode | assemble (EntData &data) |
|
virtual MoFEMErrorCode | assemble (int row_side, EntityType row_type, EntData &data) |
|
virtual MoFEMErrorCode | assemble (int row_side, int col_side, EntityType row_type, EntityType col_type, EntData &row_data, EntData &col_data) |
|
MoFEMErrorCode | doWork (int side, EntityType type, EntData &data) |
|
MoFEMErrorCode | doWork (int row_side, int col_side, EntityType row_type, EntityType col_type, EntData &row_data, EntData &col_data) |
|
Definition at line 792 of file EshelbianPlasticity.hpp.
◆ OpSpatialConsistency_dBubble_dBubble()
EshelbianPlasticity::OpSpatialConsistency_dBubble_dBubble::OpSpatialConsistency_dBubble_dBubble |
( |
std::string |
row_field, |
|
|
std::string |
col_field, |
|
|
boost::shared_ptr< DataAtIntegrationPts > |
data_ptr |
|
) |
| |
|
inline |
◆ integrate()
◆ integrateImpl()
Definition at line 1469 of file EshelbianOperators.cpp.
1473 int nb_integration_pts = getGaussPts().size2();
1474 int row_nb_dofs = row_data.
getIndices().size();
1475 int col_nb_dofs = col_data.
getIndices().size();
1477 auto v = getVolume();
1478 auto t_w = getFTensor0IntegrationWeight();
1479 int row_nb_base_functions = row_data.
getN().size2() / 9;
1486 auto t_inv_D = getFTensor4DdgFromPtr<SPACE_DIM, SPACE_DIM, S>(
1490 for (
int gg = 0; gg != nb_integration_pts; ++gg) {
1494 for (; rr != row_nb_dofs; ++rr) {
1496 for (
int cc = 0; cc != col_nb_dofs; ++cc) {
1498 a * (t_row_base(
i,
j) * (t_inv_D(
i,
j,
k,
l) * t_col_base(
k,
l)));
1505 for (; rr != row_nb_base_functions; ++rr)
The documentation for this struct was generated from the following files:
FTensor::Tensor2< FTensor::PackPtr< double *, Tensor_Dim0 *Tensor_Dim1 >, Tensor_Dim0, Tensor_Dim1 > getFTensor2N(FieldApproximationBase base)
Get base functions for Hdiv/Hcurl spaces.