LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
|
Archetype for the EntityVectorProvider concept. More...
#include <lf/assemble/assemble_concepts.h>
Public Member Functions | |
EntityVectorProviderAT (const EntityVectorProviderAT &) noexcept=delete | |
Copy constructor deleted because not part of the concept. | |
EntityVectorProviderAT (EntityVectorProviderAT &&) noexcept=delete | |
Move constructor deleted because not part of the concept. | |
auto | operator= (const EntityVectorProviderAT &) noexcept -> EntityVectorProviderAT &=delete |
Copy assignment operator deleted because not part of the concept. | |
auto | operator= (EntityVectorProviderAT &&) noexcept -> EntityVectorProviderAT &=delete |
Move assignment operator deleted because not part of the concept. | |
~EntityVectorProviderAT () noexcept=default | |
Destructor. | |
bool | isActive (const mesh::Entity &e) |
Defines whether the entity e is taken into account by the assembly routine. | |
Eigen::Vector< SCALAR, Eigen::Dynamic > | Eval (const mesh::Entity &e) |
Returns the local element vector for mesh entity e . Is only called if evp.isActive(e)==true. | |
Archetype for the EntityVectorProvider concept.
SCALAR | The scalar type of the vector entries. |
Definition at line 223 of file assemble_concepts.h.
|
deletenoexcept |
Copy constructor deleted because not part of the concept.
|
deletenoexcept |
Move constructor deleted because not part of the concept.
|
defaultnoexcept |
Destructor.
|
inline |
Returns the local element vector for mesh entity e
. Is only called if evp.isActive(e)==true.
e | The entity for which the local element vector should be returned. |
e
. Definition at line 259 of file assemble_concepts.h.
|
inline |
Defines whether the entity e is taken into account by the assembly routine.
e | The entity which should be queried. |
Definition at line 248 of file assemble_concepts.h.
|
deletenoexcept |
Copy assignment operator deleted because not part of the concept.
|
deletenoexcept |
Move assignment operator deleted because not part of the concept.