v0.14.0
Public Member Functions | List of all members
EshelbianPlasticity::OpSpatialPhysical_du_dP Struct Reference

#include <users_modules/eshelbian_plasticit/src/EshelbianPlasticity.hpp>

Inheritance diagram for EshelbianPlasticity::OpSpatialPhysical_du_dP:
[legend]
Collaboration diagram for EshelbianPlasticity::OpSpatialPhysical_du_dP:
[legend]

Public Member Functions

 OpSpatialPhysical_du_dP (std::string row_field, std::string col_field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const bool assemble_off=false)
 
MoFEMErrorCode integrate (EntData &row_data, EntData &col_data)
 
- Public Member Functions inherited from EshelbianPlasticity::OpAssembleVolume
 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)
 
- Public Member Functions inherited from EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >
 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)
 

Additional Inherited Members

- Public Types inherited from EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >
using ScaleOff = boost::function< double()>
 
- Public Attributes inherited from EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >
const bool assembleSymmetry
 
boost::shared_ptr< DataAtIntegrationPtsdataAtPts
 data at integration pts More...
 
VectorDouble nF
 local right hand side vector More...
 
MatrixDouble K
 local tangent matrix More...
 
MatrixDouble transposeK
 
ScaleOff scaleOff
 

Detailed Description

Definition at line 712 of file EshelbianPlasticity.hpp.

Constructor & Destructor Documentation

◆ OpSpatialPhysical_du_dP()

EshelbianPlasticity::OpSpatialPhysical_du_dP::OpSpatialPhysical_du_dP ( std::string  row_field,
std::string  col_field,
boost::shared_ptr< DataAtIntegrationPts data_ptr,
const bool  assemble_off = false 
)
inline

Definition at line 713 of file EshelbianPlasticity.hpp.

716  : OpAssembleVolume(row_field, col_field, data_ptr, OPROWCOL,
717  assemble_off) {
718  sYmm = false;
719  }

Member Function Documentation

◆ integrate()

MoFEMErrorCode EshelbianPlasticity::OpSpatialPhysical_du_dP::integrate ( EntData row_data,
EntData col_data 
)
virtual

Reimplemented from EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >.

Definition at line 1049 of file EshelbianOperators.cpp.

1050  {
1052 
1054 
1055  int nb_integration_pts = row_data.getN().size1();
1056  int row_nb_dofs = row_data.getIndices().size();
1057  int col_nb_dofs = col_data.getIndices().size();
1058  auto get_ftensor3 = [](MatrixDouble &m, const int r, const int c) {
1060 
1061  &m(r + 0, c + 0), &m(r + 0, c + 1), &m(r + 0, c + 2),
1062 
1063  &m(r + 1, c + 0), &m(r + 1, c + 1), &m(r + 1, c + 2),
1064 
1065  &m(r + 2, c + 0), &m(r + 2, c + 1), &m(r + 2, c + 2),
1066 
1067  &m(r + 3, c + 0), &m(r + 3, c + 1), &m(r + 3, c + 2),
1068 
1069  &m(r + 4, c + 0), &m(r + 4, c + 1), &m(r + 4, c + 2),
1070 
1071  &m(r + 5, c + 0), &m(r + 5, c + 1), &m(r + 5, c + 2));
1072  };
1073 
1076 
1077  auto v = getVolume();
1078  auto t_w = getFTensor0IntegrationWeight();
1079  auto t_approx_P_adjont_log_du_dP =
1080  getFTensor3FromMat<3, 3, size_symm>(dataAtPts->adjointPdUdPAtPts);
1081  int row_nb_base_functions = row_data.getN().size2();
1082  auto t_row_base_fun = row_data.getFTensor0N();
1083  for (int gg = 0; gg != nb_integration_pts; ++gg) {
1084  double a = v * t_w;
1085  int rr = 0;
1086  for (; rr != row_nb_dofs / 6; ++rr) {
1087 
1088  auto t_col_base_fun = col_data.getFTensor1N<3>(gg, 0);
1089  auto t_m = get_ftensor3(K, 6 * rr, 0);
1090 
1091  for (int cc = 0; cc != col_nb_dofs / 3; ++cc) {
1092  t_m(L, i) +=
1093  a * (t_approx_P_adjont_log_du_dP(i, j, L) * t_col_base_fun(j)) *
1094  t_row_base_fun;
1095  ++t_col_base_fun;
1096  ++t_m;
1097  }
1098 
1099  ++t_row_base_fun;
1100  }
1101  for (; rr != row_nb_base_functions; ++rr)
1102  ++t_row_base_fun;
1103  ++t_w;
1104  ++t_approx_P_adjont_log_du_dP;
1105  }
1107 }

The documentation for this struct was generated from the following files:
EshelbianPlasticity::size_symm
constexpr static auto size_symm
Definition: EshelbianAux.hpp:39
MoFEM::Types::MatrixDouble
UBlasMatrix< double > MatrixDouble
Definition: Types.hpp:77
sdf.r
int r
Definition: sdf.py:8
FTensor::Tensor2
Definition: Tensor2_value.hpp:16
MoFEM::EntitiesFieldData::EntData::getFTensor0N
FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > getFTensor0N(const FieldApproximationBase base)
Get base function as Tensor0.
Definition: EntitiesFieldData.hpp:1502
c
const double c
speed of light (cm/ns)
Definition: initial_diffusion.cpp:39
a
constexpr double a
Definition: approx_sphere.cpp:30
MoFEM::EntitiesFieldData::EntData::getIndices
const VectorInt & getIndices() const
Get global indices of dofs on entity.
Definition: EntitiesFieldData.hpp:1214
MoFEM::L
VectorDouble L
Definition: Projection10NodeCoordsOnField.cpp:124
EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >::dataAtPts
boost::shared_ptr< DataAtIntegrationPts > dataAtPts
data at integration pts
Definition: EshelbianPlasticity.hpp:412
i
FTensor::Index< 'i', SPACE_DIM > i
Definition: hcurl_divergence_operator_2d.cpp:27
FTensor::Index
Definition: Index.hpp:23
v
const double v
phase velocity of light in medium (cm/ns)
Definition: initial_diffusion.cpp:40
MoFEM::EntitiesFieldData::EntData::getN
MatrixDouble & getN(const FieldApproximationBase base)
get base functions this return matrix (nb. of rows is equal to nb. of Gauss pts, nb....
Definition: EntitiesFieldData.hpp:1318
j
FTensor::Index< 'j', 3 > j
Definition: matrix_function.cpp:19
MoFEM::EntitiesFieldData::EntData::getFTensor1N
FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > getFTensor1N(FieldApproximationBase base)
Get base functions for Hdiv/Hcurl spaces.
Definition: EntitiesFieldData.cpp:640
m
FTensor::Index< 'm', 3 > m
Definition: shallow_wave.cpp:80
EshelbianPlasticity::OpAssembleVolume::OpAssembleVolume
OpAssembleVolume(const std::string &field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type)
Definition: EshelbianPlasticity.hpp:518
EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >::K
MatrixDouble K
local tangent matrix
Definition: EshelbianPlasticity.hpp:427
MoFEMFunctionReturn
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:429
MoFEMFunctionBegin
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:359