v0.14.0
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, ScaleOff scale_off=[]() { return 1;})
 
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
 
ScaleOff scaleOff
 

Additional Inherited Members

- Public Types inherited from EshelbianPlasticity::OpAssembleBasic< FaceUserDataOperator >
using ScaleOff = boost::function< double()>
 

Detailed Description

Definition at line 538 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 540 of file EshelbianPlasticity.hpp.

543 : 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 811 of file EshelbianOperators.cpp.

811 {
813 // get entity of face
814 EntityHandle fe_ent = getFEEntityHandle();
815 // interate over all boundary data
816 for (auto &bc : (*bcDispPtr)) {
817 // check if finite element entity is part of boundary condition
818 if (bc.faces.find(fe_ent) != bc.faces.end()) {
819 int nb_dofs = data.getIndices().size();
820 int nb_integration_pts = data.getN().size1();
821 auto t_normal = getFTensor1Normal();
822 auto t_w = getFTensor0IntegrationWeight();
823 int nb_base_functions = data.getN().size2() / 3;
824 auto t_row_base_fun = data.getFTensor1N<3>();
825
828 auto get_ftensor1 = [](auto &v) {
830 &v[2]);
831 };
832
833 // get bc data
834 FTensor::Tensor1<double, 3> t_bc_disp(bc.vals[0], bc.vals[1], bc.vals[2]);
835 t_bc_disp(i) *= getFEMethod()->ts_t;
836
837 for (int gg = 0; gg != nb_integration_pts; ++gg) {
839 t_bc_res(i) = t_bc_disp(i);
840 auto t_nf = get_ftensor1(nF);
841 int bb = 0;
842 for (; bb != nb_dofs / 3; ++bb) {
843 t_nf(i) -=
844 t_w * (t_row_base_fun(j) * t_normal(j)) * t_bc_res(i) * 0.5;
845 ++t_nf;
846 ++t_row_base_fun;
847 }
848 for (; bb != nb_base_functions; ++bb)
849 ++t_row_base_fun;
850
851 ++t_w;
852 }
853 }
854 }
856}
#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 539 of file EshelbianPlasticity.hpp.


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