v0.14.0
Public Member Functions | Private Attributes | List of all members
EshelbianPlasticity::OpSpatialPhysical Struct Reference
Inheritance diagram for EshelbianPlasticity::OpSpatialPhysical:
[legend]
Collaboration diagram for EshelbianPlasticity::OpSpatialPhysical:
[legend]

Public Member Functions

 OpSpatialPhysical (const std::string &field_name, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const double alpha_u)
 
MoFEMErrorCode integrate (EntData &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 (int row_side, EntityType row_type, EntData &data)
 
virtual MoFEMErrorCode integrate (EntData &row_data, EntData &col_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)
 

Private Attributes

const double alphaU
 

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 21 of file EshelbianADOL-C.cpp.

Constructor & Destructor Documentation

◆ OpSpatialPhysical()

EshelbianPlasticity::OpSpatialPhysical::OpSpatialPhysical ( const std::string &  field_name,
boost::shared_ptr< DataAtIntegrationPts data_ptr,
const double  alpha_u 
)
inline

Definition at line 23 of file EshelbianADOL-C.cpp.

26  : OpAssembleVolume(field_name, data_ptr, OPROW), alphaU(alpha_u) {}

Member Function Documentation

◆ integrate()

MoFEMErrorCode EshelbianPlasticity::OpSpatialPhysical::integrate ( EntData data)
virtual

Reimplemented from EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >.

Definition at line 34 of file EshelbianADOL-C.cpp.

34  {
36 
38  auto t_L = symm_L_tensor();
39 
40  int nb_dofs = data.getIndices().size();
41  int nb_integration_pts = data.getN().size1();
42  auto v = getVolume();
43  auto t_w = getFTensor0IntegrationWeight();
44  auto t_approx_P_adjont_log_du =
45  getFTensor1FromMat<size_symm>(dataAtPts->adjointPdUAtPts);
46  auto t_P = getFTensor2FromMat<3, 3>(dataAtPts->PAtPts);
47  auto t_dot_log_u =
48  getFTensor2SymmetricFromMat<3>(dataAtPts->logStretchDotTensorAtPts);
49  auto t_diff_u =
50  getFTensor4DdgFromMat<3, 3, 1>(dataAtPts->diffStretchTensorAtPts);
51 
56  auto get_ftensor2 = [](auto &v) {
58  &v[0], &v[1], &v[2], &v[3], &v[4], &v[5]);
59  };
60 
61  int nb_base_functions = data.getN().size2();
62  auto t_row_base_fun = data.getFTensor0N();
63  for (int gg = 0; gg != nb_integration_pts; ++gg) {
64  double a = v * t_w;
65  auto t_nf = get_ftensor2(nF);
66 
68  t_Ldiff_u(i, j, L) = t_diff_u(i, j, k, l) * t_L(k, l, L);
69 
71  t_viscous_P(i, j) =
72  alphaU *
73  t_dot_log_u(i,
74  j); // That is cheat, should be split on axial and deviator
75 
77  t_residual(L) =
78  a * (t_approx_P_adjont_log_du(L) - t_Ldiff_u(i, j, L) * t_P(i, j) -
79  t_L(i, j, L) * t_viscous_P(i, j));
80 
81  int bb = 0;
82  for (; bb != nb_dofs / 6; ++bb) {
83  t_nf(L) += t_row_base_fun * t_residual(L);
84  ++t_nf;
85  ++t_row_base_fun;
86  }
87  for (; bb != nb_base_functions; ++bb)
88  ++t_row_base_fun;
89 
90  ++t_w;
91  ++t_approx_P_adjont_log_du;
92  ++t_P;
93  ++t_dot_log_u;
94  ++t_diff_u;
95  }
97 }

Member Data Documentation

◆ alphaU

const double EshelbianPlasticity::OpSpatialPhysical::alphaU
private

Definition at line 31 of file EshelbianADOL-C.cpp.


The documentation for this struct was generated from the following file:
FTensor::Tensor1
Definition: Tensor1_value.hpp:8
EshelbianPlasticity::OpAssembleBasic< VolUserDataOperator >::nF
VectorDouble nF
local right hand side vector
Definition: EshelbianPlasticity.hpp:426
FTensor::Tensor2_symmetric
Definition: Tensor2_symmetric_value.hpp:13
EshelbianPlasticity::OpSpatialPhysical::alphaU
const double alphaU
Definition: EshelbianADOL-C.cpp:31
MoFEM::EntitiesFieldData::EntData::getFTensor0N
FTensor::Tensor0< FTensor::PackPtr< double *, 1 > > getFTensor0N(const FieldApproximationBase base)
Get base function as Tensor0.
Definition: EntitiesFieldData.hpp:1502
FTensor::Tensor3
Definition: Tensor3_value.hpp:12
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
EshelbianPlasticity::symm_L_tensor
auto symm_L_tensor()
Definition: EshelbianAux.hpp:52
field_name
constexpr auto field_name
Definition: poisson_2d_homogeneous.cpp:13
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
EshelbianPlasticity::OpAssembleVolume::OpAssembleVolume
OpAssembleVolume(const std::string &field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type)
Definition: EshelbianPlasticity.hpp:518
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:429
MoFEMFunctionBegin
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:359
l
FTensor::Index< 'l', 3 > l
Definition: matrix_function.cpp:21