Loading [MathJax]/extensions/AMSmath.js
v0.14.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Public Member Functions | Static Public Member Functions | List of all members
MoFEM::AddHOOps< 3, 3, 3 > Struct Reference

#include <src/finite_elements/HODataOperators.hpp>

Public Member Functions

 AddHOOps ()=delete
 

Static Public Member Functions

static MoFEMErrorCode add (boost::ptr_deque< ForcesAndSourcesCore::UserDataOperator > &pipeline, std::vector< FieldSpace > space, std::string geom_field_name="", boost::shared_ptr< MatrixDouble > jac=nullptr, boost::shared_ptr< VectorDouble > det=nullptr, boost::shared_ptr< MatrixDouble > inv_jac=nullptr)
 

Detailed Description

Definition at line 459 of file HODataOperators.hpp.

Constructor & Destructor Documentation

◆ AddHOOps()

MoFEM::AddHOOps< 3, 3, 3 >::AddHOOps ( )
delete

Member Function Documentation

◆ add()

MoFEMErrorCode AddHOOps< 3, 3, 3 >::add ( boost::ptr_deque< ForcesAndSourcesCore::UserDataOperator > &  pipeline,
std::vector< FieldSpace space,
std::string  geom_field_name = "",
boost::shared_ptr< MatrixDouble jac = nullptr,
boost::shared_ptr< VectorDouble det = nullptr,
boost::shared_ptr< MatrixDouble inv_jac = nullptr 
)
static

Definition at line 978 of file HODataOperators.cpp.

982  {
984 
985  if (!jac)
986  jac = boost::make_shared<MatrixDouble>();
987  if (!det)
988  det = boost::make_shared<VectorDouble>();
989  if (!inv_jac)
990  inv_jac = boost::make_shared<MatrixDouble>();
991 
992  if (geom_field_name.empty()) {
993 
994  pipeline.push_back(new OpCalculateHOJac<3>(jac));
995 
996  } else {
997 
998  pipeline.push_back(new OpCalculateHOCoords<3>(geom_field_name));
999  pipeline.push_back(
1000  new OpCalculateVectorFieldGradient<3, 3>(geom_field_name, jac));
1001  }
1002 
1003  pipeline.push_back(new OpInvertMatrix<3>(jac, det, inv_jac));
1004  pipeline.push_back(new OpSetHOWeights(det));
1005 
1006  for (auto s : spaces) {
1007  switch (s) {
1008  case NOSPACE:
1009  break;
1010  case H1:
1011  pipeline.push_back(new OpSetHOInvJacToScalarBases<3>(H1, inv_jac));
1012  break;
1013  case HCURL:
1014  pipeline.push_back(new OpSetHOCovariantPiolaTransform(HCURL, inv_jac));
1015  pipeline.push_back(new OpSetHOInvJacVectorBase(HCURL, inv_jac));
1016  break;
1017  case HDIV:
1018  pipeline.push_back(
1019  new OpSetHOContravariantPiolaTransform(HDIV, det, jac));
1020  break;
1021  case L2:
1022  pipeline.push_back(new OpSetHOInvJacToScalarBases<3>(L2, inv_jac));
1023  break;
1024  default:
1025  SETERRQ1(PETSC_COMM_SELF, MOFEM_NOT_IMPLEMENTED,
1026  "Space %s not yet implemented", FieldSpaceNames[s]);
1027  break;
1028  }
1029  }
1030 
1032 }

The documentation for this struct was generated from the following files:
NOSPACE
@ NOSPACE
Definition: definitions.h:83
H1
@ H1
continuous field
Definition: definitions.h:85
L2
@ L2
field with C-1 continuity
Definition: definitions.h:88
FieldSpaceNames
const static char *const FieldSpaceNames[]
Definition: definitions.h:92
HCURL
@ HCURL
field with continuous tangents
Definition: definitions.h:86
MoFEMFunctionReturn
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:429
HDIV
@ HDIV
field with continuous normal traction
Definition: definitions.h:87
MOFEM_NOT_IMPLEMENTED
@ MOFEM_NOT_IMPLEMENTED
Definition: definitions.h:32
OpCalculateVectorFieldGradient
MoFEMFunctionBegin
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:359