v0.14.0
Public Member Functions | Public Attributes | List of all members
MoFEM::OpGetHOTangentOnEdge Struct Reference

Calculate tangent vector on edge form HO geometry approximation. More...

#include <src/finite_elements/DataOperators.hpp>

Inheritance diagram for MoFEM::OpGetHOTangentOnEdge:
[legend]
Collaboration diagram for MoFEM::OpGetHOTangentOnEdge:
[legend]

Public Member Functions

 OpGetHOTangentOnEdge (MatrixDouble &tangent)
 
MoFEMErrorCode doWork (int side, EntityType type, EntitiesFieldData::EntData &data)
 Operator for linear form, usually to calculate values on right hand side. More...
 
- Public Member Functions inherited from MoFEM::DataOperator
 DataOperator (const bool symm=true)
 
virtual ~DataOperator ()=default
 
virtual MoFEMErrorCode doWork (int row_side, int col_side, EntityType row_type, EntityType col_type, EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)
 Operator for bi-linear form, usually to calculate values on left hand side. More...
 
virtual MoFEMErrorCode opLhs (EntitiesFieldData &row_data, EntitiesFieldData &col_data)
 
virtual MoFEMErrorCode opRhs (EntitiesFieldData &data, const bool error_if_no_base=false)
 
bool getSymm () const
 Get if operator uses symmetry of DOFs or not. More...
 
void setSymm ()
 set if operator is executed taking in account symmetry More...
 
void unSetSymm ()
 unset if operator is executed for non symmetric problem More...
 

Public Attributes

MatrixDoubletAngent
 
- Public Attributes inherited from MoFEM::DataOperator
DoWorkLhsHookFunType doWorkLhsHook
 
DoWorkRhsHookFunType doWorkRhsHook
 
bool sYmm
 If true assume that matrix is symmetric structure. More...
 
std::array< bool, MBMAXTYPE > doEntities
 If true operator is executed for entity. More...
 
booldoVertices
 \deprectaed If false skip vertices More...
 
booldoEdges
 \deprectaed If false skip edges More...
 
booldoQuads
 \deprectaed More...
 
booldoTris
 \deprectaed More...
 
booldoTets
 \deprectaed More...
 
booldoPrisms
 \deprectaed More...
 

Additional Inherited Members

- Public Types inherited from MoFEM::DataOperator
using DoWorkLhsHookFunType = boost::function< MoFEMErrorCode(DataOperator *op_ptr, int row_side, int col_side, EntityType row_type, EntityType col_type, EntitiesFieldData::EntData &row_data, EntitiesFieldData::EntData &col_data)>
 
using DoWorkRhsHookFunType = boost::function< MoFEMErrorCode(DataOperator *op_ptr, int side, EntityType type, EntitiesFieldData::EntData &data)>
 

Detailed Description

Calculate tangent vector on edge form HO geometry approximation.

Definition at line 483 of file DataOperators.hpp.

Constructor & Destructor Documentation

◆ OpGetHOTangentOnEdge()

MoFEM::OpGetHOTangentOnEdge::OpGetHOTangentOnEdge ( MatrixDouble tangent)
inline

Definition at line 487 of file DataOperators.hpp.

487 : tAngent(tangent) {}

Member Function Documentation

◆ doWork()

MoFEMErrorCode MoFEM::OpGetHOTangentOnEdge::doWork ( int  side,
EntityType  type,
EntitiesFieldData::EntData data 
)
virtual

Operator for linear form, usually to calculate values on right hand side.

Reimplemented from MoFEM::DataOperator.

Definition at line 692 of file DataOperators.cpp.

693  {
695 
696  int nb_dofs = data.getFieldData().size();
697  if (nb_dofs == 0)
699 
700  int nb_gauss_pts = data.getN().size1();
701  tAngent.resize(nb_gauss_pts, 3, false);
702 
703  int nb_approx_fun = data.getN().size2();
704  double *diff = &*data.getDiffN().data().begin();
705  double *dofs[] = {&data.getFieldData()[0], &data.getFieldData()[1],
706  &data.getFieldData()[2]};
707 
708  tAngent.resize(nb_gauss_pts, 3, false);
709 
710  switch (type) {
711  case MBVERTEX:
712  for (int dd = 0; dd != 3; dd++) {
713  for (int gg = 0; gg != nb_gauss_pts; ++gg) {
714  tAngent(gg, dd) = cblas_ddot(2, diff, 1, dofs[dd], 3);
715  }
716  }
717  break;
718  case MBEDGE:
719  if (nb_dofs % 3) {
720  SETERRQ(PETSC_COMM_SELF, MOFEM_IMPOSSIBLE_CASE,
721  "Approximated field should be rank 3, i.e. vector in 3d space");
722  }
723  for (int dd = 0; dd != 3; dd++) {
724  for (int gg = 0; gg != nb_gauss_pts; ++gg) {
725  tAngent(gg, dd) +=
726  cblas_ddot(nb_dofs / 3, &diff[gg * nb_approx_fun], 1, dofs[dd], 3);
727  }
728  }
729  break;
730  default:
731  SETERRQ(PETSC_COMM_SELF, MOFEM_IMPOSSIBLE_CASE,
732  "This operator can calculate tangent vector only on edge");
733  }
734 
736 }

Member Data Documentation

◆ tAngent

MatrixDouble& MoFEM::OpGetHOTangentOnEdge::tAngent

Definition at line 485 of file DataOperators.hpp.


The documentation for this struct was generated from the following files:
MoFEMFunctionReturnHot
#define MoFEMFunctionReturnHot(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:460
MOFEM_IMPOSSIBLE_CASE
@ MOFEM_IMPOSSIBLE_CASE
Definition: definitions.h:35
convert.type
type
Definition: convert.py:64
FTensor::dd
const Tensor2_symmetric_Expr< const ddTensor0< T, Dim, i, j >, typename promote< T, double >::V, Dim, i, j > dd(const Tensor0< T * > &a, const Index< i, Dim > index1, const Index< j, Dim > index2, const Tensor1< int, Dim > &d_ijk, const Tensor1< double, Dim > &d_xyz)
Definition: ddTensor0.hpp:33
MoFEMFunctionReturn
#define MoFEMFunctionReturn(a)
Last executable line of each PETSc function used for error handling. Replaces return()
Definition: definitions.h:429
MoFEM::OpGetHOTangentOnEdge::tAngent
MatrixDouble & tAngent
Definition: DataOperators.hpp:485
MoFEMFunctionBegin
#define MoFEMFunctionBegin
First executable line of each MoFEM function, used for error handling. Final line of MoFEM functions ...
Definition: definitions.h:359