v0.16.0
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Private Attributes | List of all members
OpFaceMaterialForce Struct Reference

#include "users_modules/eshelbian_plasticity/src/EshelbianOperators.hpp"

Inheritance diagram for OpFaceMaterialForce:
[legend]
Collaboration diagram for OpFaceMaterialForce:
[legend]

Public Types

using OP = FaceElementForcesAndSourcesCore::UserDataOperator
 

Public Member Functions

 OpFaceMaterialForce (boost::shared_ptr< DataAtIntegrationPts > data_ptr)
 
MoFEMErrorCode doWork (int side, EntityType type, EntData &data)
 

Private Attributes

boost::shared_ptr< DataAtIntegrationPtsdataAtPts
 data at integration pts
 

Detailed Description

Definition at line 1058 of file EshelbianOperators.hpp.

Member Typedef Documentation

◆ OP

using OpFaceMaterialForce::OP = FaceElementForcesAndSourcesCore::UserDataOperator

Definition at line 1062 of file EshelbianOperators.hpp.

Constructor & Destructor Documentation

◆ OpFaceMaterialForce()

OpFaceMaterialForce::OpFaceMaterialForce ( boost::shared_ptr< DataAtIntegrationPts data_ptr)
inline

Definition at line 1064 of file EshelbianOperators.hpp.

1065 : OP(NOSPACE, OPSPACE), dataAtPts(data_ptr) {}
@ NOSPACE
Definition definitions.h:83
boost::shared_ptr< DataAtIntegrationPts > dataAtPts
data at integration pts
FaceElementForcesAndSourcesCore::UserDataOperator OP

Member Function Documentation

◆ doWork()

MoFEMErrorCode OpFaceMaterialForce::doWork ( int  side,
EntityType  type,
EntData data 
)
Examples
/home/lk58p/mofem_install/vanilla_dev_release/mofem-cephas/mofem/users_modules/eshelbian_plasticity/src/impl/EshelbianOperators.cpp.

Definition at line 4351 of file EshelbianOperators.cpp.

4352 {
4354
4355#ifndef NDEBUG
4356 auto fe_mi_ptr = getFEMethod()->numeredEntFiniteElementPtr;
4357 auto pstatus = fe_mi_ptr->getPStatus();
4358 if (pstatus) {
4359 auto owner = fe_mi_ptr->getOwnerProc();
4360 MOFEM_LOG("SELF", Sev::noisy)
4361 << "OpFaceMaterialForce: owner proc is not 0, owner proc: " << owner
4362 << " " << getPtrFE()->mField.get_comm_rank();
4363 }
4364#endif // NDEBUG
4365
4367
4369 t_face_T(I) = 0.;
4370 double face_pressure = 0.;
4371 auto t_T = dataAtPts->getFTensorFaceMaterialForce(
4372 getGaussPts().size2()); //< face material force
4373 auto t_p =
4374 getFTensor0FromVec(dataAtPts->normalPressureAtPts); //< normal pressure
4375 auto t_w = getFTensor0IntegrationWeight();
4376 for (auto gg = 0; gg != getGaussPts().size2(); ++gg) {
4377 t_face_T(I) += t_w * t_T(I);
4378 face_pressure += t_w * t_p;
4379 ++t_w;
4380 ++t_T;
4381 ++t_p;
4382 }
4383 t_face_T(I) *= getMeasure();
4384 face_pressure *= getMeasure();
4385
4386 auto get_tag = [&](auto name, auto dim) {
4387 auto &moab = getPtrFE()->mField.get_moab();
4388 Tag tag;
4389 double def_val[] = {0., 0., 0.};
4390 CHK_MOAB_THROW(moab.tag_get_handle(name, dim, MB_TYPE_DOUBLE, tag,
4391 MB_TAG_CREAT | MB_TAG_SPARSE, def_val),
4392 "create tag");
4393 return tag;
4394 };
4395
4396 auto set_tag = [&](auto &&tag, auto ptr) {
4397 auto &moab = getPtrFE()->mField.get_moab();
4398 auto face = getPtrFE()->getFEEntityHandle();
4399 CHK_MOAB_THROW(moab.tag_set_data(tag, &face, 1, ptr), "set tag");
4400 };
4401
4402 set_tag(get_tag("MaterialForce", 3), &t_face_T(0));
4403 set_tag(get_tag("FacePressure", 1), &face_pressure);
4404
4406}
#define FTENSOR_INDEX(DIM, I)
constexpr int SPACE_DIM
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
#define CHK_MOAB_THROW(err, msg)
Check error code of MoAB function and throw MoFEM exception.
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
#define MOFEM_LOG(channel, severity)
Log.
static auto getFTensor0FromVec(V &data)
Get tensor rank 0 (scalar) form data vector.
constexpr IntegrationType I

Member Data Documentation

◆ dataAtPts

boost::shared_ptr<DataAtIntegrationPts> OpFaceMaterialForce::dataAtPts
private

data at integration pts

Definition at line 1071 of file EshelbianOperators.hpp.


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