v0.13.2
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
EshelbianPlasticity::OpDispBc Struct Reference

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

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

Public Member Functions

 OpDispBc (const std::string &field_name, boost::shared_ptr< DataAtIntegrationPts > &data_ptr, boost::shared_ptr< BcDispVec > &bc_disp_ptr)
 
MoFEMErrorCode integrate (EntData &data)
 
- Public Member Functions inherited from EshelbianPlasticity::OpAssembleFace
 OpAssembleFace (const std::string &field, boost::shared_ptr< DataAtIntegrationPts > &data_ptr, const char type)
 
 OpAssembleFace (const std::string &row_field, const std::string &col_field, boost::shared_ptr< DataAtIntegrationPts > &data_ptr, const char type, const bool assemble_symmetry)
 
- Public Member Functions inherited from EshelbianPlasticity::OpAssembleBasic< FaceUserDataOperator >
 OpAssembleBasic (const std::string &field_name, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type)
 
 OpAssembleBasic (const std::string &row_field, const std::string &col_field, boost::shared_ptr< DataAtIntegrationPts > data_ptr, const char type, const bool assemble_symmetry)
 
virtual MoFEMErrorCode integrate (EntData &data)
 
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)
 

Public Attributes

boost::shared_ptr< BcDispVecbcDispPtr
 
- Public Attributes inherited from EshelbianPlasticity::OpAssembleBasic< FaceUserDataOperator >
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
 

Detailed Description

Definition at line 571 of file EshelbianPlasticity.hpp.

Constructor & Destructor Documentation

◆ OpDispBc()

EshelbianPlasticity::OpDispBc::OpDispBc ( const std::string &  field_name,
boost::shared_ptr< DataAtIntegrationPts > &  data_ptr,
boost::shared_ptr< BcDispVec > &  bc_disp_ptr 
)
inline

Definition at line 573 of file EshelbianPlasticity.hpp.

576 : OpAssembleFace(field_name, data_ptr, OPROW), bcDispPtr(bc_disp_ptr) {}
constexpr auto field_name
OpAssembleFace(const std::string &field, boost::shared_ptr< DataAtIntegrationPts > &data_ptr, const char type)
boost::shared_ptr< BcDispVec > bcDispPtr

Member Function Documentation

◆ integrate()

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

Reimplemented from EshelbianPlasticity::OpAssembleBasic< FaceUserDataOperator >.

Examples
EshelbianOperators.cpp.

Definition at line 543 of file EshelbianOperators.cpp.

543 {
545 // get entity of face
546 EntityHandle fe_ent = getFEEntityHandle();
547 // interate over all boundary data
548 for (auto &bc : (*bcDispPtr)) {
549 // check if finite element entity is part of boundary condition
550 if (bc.faces.find(fe_ent) != bc.faces.end()) {
551 int nb_dofs = data.getIndices().size();
552 int nb_integration_pts = data.getN().size1();
553 auto t_normal = getFTensor1Normal();
554 auto t_w = getFTensor0IntegrationWeight();
555 int nb_base_functions = data.getN().size2() / 3;
556 auto t_row_base_fun = data.getFTensor1N<3>();
557
560 auto get_ftensor1 = [](auto &v) {
562 &v[2]);
563 };
564
565 // get bc data
566 FTensor::Tensor1<double, 3> t_bc_disp(bc.vals[0], bc.vals[1], bc.vals[2]);
567 t_bc_disp(i) *= getFEMethod()->ts_t;
568
569 for (int gg = 0; gg != nb_integration_pts; ++gg) {
571 t_bc_res(i) = t_bc_disp(i);
572 auto t_nf = get_ftensor1(nF);
573 int bb = 0;
574 for (; bb != nb_dofs / 3; ++bb) {
575 t_nf(i) -=
576 t_w * (t_row_base_fun(j) * t_normal(j)) * t_bc_res(i) * 0.5;
577 ++t_nf;
578 ++t_row_base_fun;
579 }
580 for (; bb != nb_base_functions; ++bb)
581 ++t_row_base_fun;
582
583 ++t_w;
584 }
585 }
586 }
588}
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:346
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:416
FTensor::Index< 'i', SPACE_DIM > i
const double v
phase velocity of light in medium (cm/ns)
FTensor::Index< 'j', 3 > j
MatrixDouble & getN(const FieldApproximationBase base)
get base functions this return matrix (nb. of rows is equal to nb. of Gauss pts, nb....
FTensor::Tensor1< FTensor::PackPtr< double *, Tensor_Dim >, Tensor_Dim > getFTensor1N(FieldApproximationBase base)
Get base functions for Hdiv/Hcurl spaces.
const VectorInt & getIndices() const
Get global indices of dofs on entity.

Member Data Documentation

◆ bcDispPtr

boost::shared_ptr<BcDispVec> EshelbianPlasticity::OpDispBc::bcDispPtr
Examples
EshelbianOperators.cpp.

Definition at line 572 of file EshelbianPlasticity.hpp.


The documentation for this struct was generated from the following files: