v0.14.0
Public Member Functions | Static Public Member Functions | List of all members
MoFEM::AddHOOps< 2, 2, 2 > 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 > spaces, 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 505 of file HODataOperators.hpp.

Constructor & Destructor Documentation

◆ AddHOOps()

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

Member Function Documentation

◆ add()

MoFEMErrorCode MoFEM::AddHOOps< 2, 2, 2 >::add ( boost::ptr_deque< ForcesAndSourcesCore::UserDataOperator > &  pipeline,
std::vector< FieldSpace spaces,
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 693 of file HODataOperators.cpp.

698  {
700 
701  if (!jac_ptr)
702  jac_ptr = boost::make_shared<MatrixDouble>();
703  if (!det_ptr)
704  det_ptr = boost::make_shared<VectorDouble>();
705  if (!inv_jac_ptr)
706  inv_jac_ptr = boost::make_shared<MatrixDouble>();
707 
708  if (geom_field_name.empty()) {
709 
710  pipeline.push_back(new OpCalculateHOJac<2>(jac_ptr));
711 
712  } else {
713 
714  pipeline.push_back(new OpCalculateHOCoords<2>(geom_field_name));
715  pipeline.push_back(
716  new OpCalculateVectorFieldGradient<2, 2>(geom_field_name, jac_ptr));
717  pipeline.push_back(new OpGetHONormalsOnFace<2>(geom_field_name));
718  }
719 
720  pipeline.push_back(new OpInvertMatrix<2>(jac_ptr, det_ptr, inv_jac_ptr));
721  pipeline.push_back(new OpSetHOWeightsOnFace());
722 
723  for (auto s : spaces) {
724  switch (s) {
725  case NOSPACE:
726  break;
727  case H1:
728  case L2:
729  pipeline.push_back(new OpSetHOInvJacToScalarBases<2>(s, inv_jac_ptr));
730  break;
731  case HCURL:
732  pipeline.push_back(new OpSetCovariantPiolaTransformOnFace2D(inv_jac_ptr));
733  pipeline.push_back(new OpSetInvJacHcurlFace(inv_jac_ptr));
734  break;
735  case HDIV:
736  pipeline.push_back(new OpMakeHdivFromHcurl());
737  pipeline.push_back(new OpSetContravariantPiolaTransformOnFace2D(jac_ptr));
738  pipeline.push_back(new OpSetInvJacHcurlFace(inv_jac_ptr));
739  break;
740  default:
741  SETERRQ1(PETSC_COMM_SELF, MOFEM_NOT_IMPLEMENTED,
742  "Space %s not yet implemented", FieldSpaceNames[s]);
743  }
744  }
745 
747 }

The documentation for this struct was generated from the following files:
NOSPACE
@ NOSPACE
Definition: definitions.h:83
MoFEM::OpSetInvJacHcurlFace
OpSetInvJacHcurlFaceImpl< 2 > OpSetInvJacHcurlFace
Definition: UserDataOperators.hpp:2982
H1
@ H1
continuous field
Definition: definitions.h:85
MoFEM::OpSetContravariantPiolaTransformOnFace2D
OpSetContravariantPiolaTransformOnFace2DImpl< 2 > OpSetContravariantPiolaTransformOnFace2D
Definition: UserDataOperators.hpp:3080
L2
@ L2
field with C-1 continuity
Definition: definitions.h:88
MoFEM::OpSetCovariantPiolaTransformOnFace2D
OpSetCovariantPiolaTransformOnFace2DImpl< 2 > OpSetCovariantPiolaTransformOnFace2D
Definition: UserDataOperators.hpp:3032
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:416
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:346