Calculating Lobatto base functions.
More...
#include <src/approximation/LobattoPolynomial.hpp>
|
using | DofsSideMap = multi_index_container< DofsSideMapData, indexed_by< ordered_non_unique< tag< TypeSide_mi_tag >, composite_key< DofsSideMapData, member< DofsSideMapData, EntityType, &DofsSideMapData::type >, member< DofsSideMapData, int, &DofsSideMapData::side > >>, ordered_unique< tag< EntDofIdx_mi_tag >, member< DofsSideMapData, int, &DofsSideMapData::dof > > > > |
| Map entity stype and side to element/entity dof index. More...
|
|
static MoFEMErrorCode | getLibVersion (Version &version) |
| Get library version. More...
|
|
static MoFEMErrorCode | getFileVersion (moab::Interface &moab, Version &version) |
| Get database major version. More...
|
|
static MoFEMErrorCode | setFileVersion (moab::Interface &moab, Version version=Version(MoFEM_VERSION_MAJOR, MoFEM_VERSION_MINOR, MoFEM_VERSION_BUILD)) |
| Get database major version. More...
|
|
static MoFEMErrorCode | getInterfaceVersion (Version &version) |
| Get database major version. More...
|
|
Calculating Lobatto base functions.
Definition at line 35 of file LobattoPolynomial.hpp.
◆ LobattoPolynomial()
MoFEM::LobattoPolynomial::LobattoPolynomial |
( |
| ) |
|
|
inline |
◆ ~LobattoPolynomial()
MoFEM::LobattoPolynomial::~LobattoPolynomial |
( |
| ) |
|
|
inline |
◆ getValue()
Reimplemented from MoFEM::LegendrePolynomial.
Definition at line 24 of file LobattoPolynomial.cpp.
28 auto ctx = ctx_ptr->getInterface<LobattoPolynomialCtx>();
30 ctx->baseFunPtr->resize(pts.size2(), ctx->P + 1,
false);
31 ctx->baseDiffFunPtr->resize(pts.size2(), ctx->dIm * (ctx->P + 1),
false);
33 double *diff_l = NULL;
34 for (
unsigned int gg = 0; gg < pts.size2(); gg++) {
36 l = &((*ctx->baseFunPtr)(gg, 0));
37 if (ctx->baseDiffFunPtr)
38 diff_l = &((*ctx->baseDiffFunPtr)(gg, 0));
39 ierr = (ctx->basePolynomialsType0)(ctx->P, pts(0, gg), ctx->diffS,
l,
◆ query_interface()
The documentation for this struct was generated from the following files: