v0.14.0
Public Member Functions | List of all members
ConvectiveMassElement::OpEshelbyDynamicMaterialMomentumLhs_dv Struct Reference

#include <users_modules/basic_finite_elements/src/ConvectiveMassElement.hpp>

Inheritance diagram for ConvectiveMassElement::OpEshelbyDynamicMaterialMomentumLhs_dv:
[legend]
Collaboration diagram for ConvectiveMassElement::OpEshelbyDynamicMaterialMomentumLhs_dv:
[legend]

Public Member Functions

 OpEshelbyDynamicMaterialMomentumLhs_dv (const std::string vel_field, const std::string field_name, BlockData &data, CommonData &common_data, Range *forcesonlyonentities_ptr)
 
virtual MoFEMErrorCode getJac (EntitiesFieldData::EntData &col_data, int gg)
 
- Public Member Functions inherited from ConvectiveMassElement::OpMassLhs_dM_dv
 OpMassLhs_dM_dv (const std::string vel_field, const std::string field_name, BlockData &data, CommonData &common_data, Range *forcesonlyonentities_ptr=NULL)
 
MoFEMErrorCode doWork (int row_side, int col_side, EntityType row_type, EntityType col_type, EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)
 

Additional Inherited Members

- Public Attributes inherited from ConvectiveMassElement::OpMassLhs_dM_dv
BlockDatadAta
 
CommonDatacommonData
 
Range forcesOnlyOnEntities
 
MatrixDouble k
 
MatrixDouble jac
 

Detailed Description

Definition at line 389 of file ConvectiveMassElement.hpp.

Constructor & Destructor Documentation

◆ OpEshelbyDynamicMaterialMomentumLhs_dv()

ConvectiveMassElement::OpEshelbyDynamicMaterialMomentumLhs_dv::OpEshelbyDynamicMaterialMomentumLhs_dv ( const std::string  vel_field,
const std::string  field_name,
BlockData data,
CommonData common_data,
Range forcesonlyonentities_ptr 
)

Definition at line 1535 of file ConvectiveMassElement.cpp.

1541  vel_field, field_name, data, common_data, forcesonlyonentities_ptr) {}

Member Function Documentation

◆ getJac()

MoFEMErrorCode ConvectiveMassElement::OpEshelbyDynamicMaterialMomentumLhs_dv::getJac ( EntitiesFieldData::EntData col_data,
int  gg 
)
virtual

Reimplemented from ConvectiveMassElement::OpMassLhs_dM_dv.

Reimplemented in ConvectiveMassElement::OpEshelbyDynamicMaterialMomentumLhs_dX, and ConvectiveMassElement::OpEshelbyDynamicMaterialMomentumLhs_dx.

Definition at line 1544 of file ConvectiveMassElement.cpp.

1545  {
1547  int nb_col = col_data.getIndices().size();
1548  jac.clear();
1549  double *base_ptr = const_cast<double *>(&col_data.getN(gg)[0]);
1550  FTensor::Tensor0<double *> base(base_ptr, 1);
1551  double *diff_ptr =
1552  const_cast<double *>(&(col_data.getDiffN(gg, nb_col / 3)(0, 0)));
1553  FTensor::Tensor1<double *, 3> diff(diff_ptr, &diff_ptr[1], &diff_ptr[2], 3);
1554  FTensor::Tensor2<double *, 3, 3> t_jac(&jac(0, 0), &jac(0, 1), &jac(0, 2),
1555  &jac(1, 0), &jac(1, 1), &jac(1, 2),
1556  &jac(2, 0), &jac(2, 1), &jac(2, 2), 3);
1557  const int u = 3;
1559  &commonData.jacT[gg](0, u + 0), &commonData.jacT[gg](0, u + 1),
1560  &commonData.jacT[gg](0, u + 2), &commonData.jacT[gg](1, u + 0),
1561  &commonData.jacT[gg](1, u + 1), &commonData.jacT[gg](1, u + 2),
1562  &commonData.jacT[gg](2, u + 0), &commonData.jacT[gg](2, u + 1),
1563  &commonData.jacT[gg](2, u + 2));
1564  const int s = 3 + 3;
1566  // T* d000, T* d001, T* d002,
1567  // T* d010, T* d011, T* d012,
1568  // T* d020, T* d021, T* d022,
1569  // T* d100, T* d101, T* d102,
1570  // T* d110, T* d111, T* d112,
1571  // T* d120, T* d121, T* d122,
1572  // T* d200, T* d201, T* d202,
1573  // T* d210, T* d211, T* d212,
1574  // T* d220, T* d221, T* d222,
1575  &commonData.jacT[gg](0, s + 0), &commonData.jacT[gg](0, s + 1),
1576  &commonData.jacT[gg](0, s + 2), &commonData.jacT[gg](0, s + 3),
1577  &commonData.jacT[gg](0, s + 4), &commonData.jacT[gg](0, s + 5),
1578  &commonData.jacT[gg](0, s + 6), &commonData.jacT[gg](0, s + 7),
1579  &commonData.jacT[gg](0, s + 8), &commonData.jacT[gg](1, s + 0),
1580  &commonData.jacT[gg](1, s + 1), &commonData.jacT[gg](1, s + 2),
1581  &commonData.jacT[gg](1, s + 3), &commonData.jacT[gg](1, s + 4),
1582  &commonData.jacT[gg](1, s + 5), &commonData.jacT[gg](1, s + 6),
1583  &commonData.jacT[gg](1, s + 7), &commonData.jacT[gg](1, s + 8),
1584  &commonData.jacT[gg](2, s + 0), &commonData.jacT[gg](2, s + 1),
1585  &commonData.jacT[gg](2, s + 2), &commonData.jacT[gg](2, s + 3),
1586  &commonData.jacT[gg](2, s + 4), &commonData.jacT[gg](2, s + 5),
1587  &commonData.jacT[gg](2, s + 6), &commonData.jacT[gg](2, s + 7),
1588  &commonData.jacT[gg](2, s + 8));
1592  for (int dd = 0; dd < nb_col / 3; dd++) {
1593  t_jac(i, j) += t_mass1(i, j) * base * getFEMethod()->ts_a;
1594  t_jac(i, j) += t_mass3(i, j, k) * diff(k);
1595  ++base_ptr;
1596  ++diff_ptr;
1597  ++t_jac;
1598  }
1600 }

The documentation for this struct was generated from the following files:
MoFEMFunctionReturnHot
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:447
FTensor::Tensor1
Definition: Tensor1_value.hpp:8
ConvectiveMassElement::OpMassLhs_dM_dv
Definition: ConvectiveMassElement.hpp:222
ConvectiveMassElement::OpMassLhs_dM_dv::jac
MatrixDouble jac
Definition: ConvectiveMassElement.hpp:234
ConvectiveMassElement::CommonData::jacT
std::vector< MatrixDouble > jacT
Definition: ConvectiveMassElement.hpp:146
MoFEM::EntitiesFieldData::EntData::getDiffN
MatrixDouble & getDiffN(const FieldApproximationBase base)
get derivatives of base functions
Definition: EntitiesFieldData.hpp:1316
ConvectiveMassElement::OpMassLhs_dM_dv::k
MatrixDouble k
Definition: ConvectiveMassElement.hpp:234
FTensor::Tensor2< double *, 3, 3 >
FTensor::Tensor3
Definition: Tensor3_value.hpp:12
MoFEM::EntitiesFieldData::EntData::getIndices
const VectorInt & getIndices() const
Get global indices of dofs on entity.
Definition: EntitiesFieldData.hpp:1201
i
FTensor::Index< 'i', SPACE_DIM > i
Definition: hcurl_divergence_operator_2d.cpp:27
field_name
constexpr auto field_name
Definition: poisson_2d_homogeneous.cpp:13
FTensor::Index< 'i', 3 >
ConvectiveMassElement::OpMassLhs_dM_dv::commonData
CommonData & commonData
Definition: ConvectiveMassElement.hpp:227
FTensor::dd
const Tensor2_symmetric_Expr< const ddTensor0< T, Dim, i, j >, typename promote< T, double >::V, Dim, i, j > dd(const Tensor0< T * > &a, const Index< i, Dim > index1, const Index< j, Dim > index2, const Tensor1< int, Dim > &d_ijk, const Tensor1< double, Dim > &d_xyz)
Definition: ddTensor0.hpp:33
FTensor::Tensor0
Definition: Tensor0.hpp:16
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:1305
j
FTensor::Index< 'j', 3 > j
Definition: matrix_function.cpp:19
MoFEMFunctionBeginHot
#define MoFEMFunctionBeginHot
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:440