ug4
|
Lagrange shape functions of first order. More...
#include <lagrangep1.h>
Public Types | |
typedef base_type::grad_type | grad_type |
Gradient type. More... | |
typedef TRefElem | reference_element_type |
Reference Element type. More... | |
typedef base_type::shape_type | shape_type |
Shape type. More... | |
Public Types inherited from ug::BaseLSFS< LagrangeP1< TRefElem >, TRefElem::dim > | |
typedef MathVector< TDim > | grad_type |
Gradient type. More... | |
typedef LagrangeP1< TRefElem > | ImplType |
type of implementation More... | |
typedef number | shape_type |
Shape type. More... | |
Public Member Functions | |
bool | continuous () const |
returns if space constructs continuous functions More... | |
void | grad (grad_type &value, size_t i, const MathVector< dim > &x) const |
evaluates the gradient of the shape function More... | |
LagrangeP1 () | |
constructor More... | |
size_t | num_sh () const |
bool | position (size_t i, MathVector< dim > &pos) const |
local position of DoF i More... | |
shape_type | shape (size_t i, const MathVector< dim > &x) const |
evaluates the shape function More... | |
Public Member Functions inherited from ug::LagrangeLDS< TRefElem > | |
bool | exact_position_available () const |
returns if the local dof position are exact More... | |
LagrangeLDS (size_t order=1) | |
constructor More... | |
const LocalDoF & | local_dof (size_t dof) const |
returns the dof storage More... | |
size_t | num_dof () const |
returns the total number of DoFs on the finite element More... | |
size_t | num_dof (ReferenceObjectID roid) const |
returns the number of DoFs on a sub-geometric object type More... | |
ReferenceObjectID | roid () const |
returns the type of reference element More... | |
void | set_order (size_t order) |
sets the order More... | |
Public Member Functions inherited from ug::LocalDoFSet | |
int | dim () const |
returns the reference dimension More... | |
size_t | num_dof (int d, size_t id) const |
returns the number of DoFs on a sub-geometric object of dim and id More... | |
bool | operator!= (const LocalDoFSet &v) const |
inequality check More... | |
bool | operator== (const LocalDoFSet &v) const |
equality check More... | |
virtual | ~LocalDoFSet () |
virtual destructor More... | |
size_t | num_dof () const |
Public Member Functions inherited from ug::BaseLSFS< LagrangeP1< TRefElem >, TRefElem::dim > | |
void | grad (grad_type &g, size_t i, const MathVector< dim > &x) const |
evaluates the gradient of the shape function More... | |
void | grads (grad_type *vGrad, const MathVector< dim > &x) const |
returns all gradients evaluated at a point More... | |
void | grads (std::vector< grad_type > &vGrad, const MathVector< dim > &x) const |
returns all gradients evaluated at a point More... | |
void | grads (std::vector< std::vector< grad_type > > &vvGrad, const std::vector< MathVector< dim > > &vLocPos) const |
returns all gradients evaluated at a point More... | |
void | shape (shape_type &sh, size_t i, const MathVector< dim > &x) const |
evaluates the shape function More... | |
shape_type | shape (size_t i, const MathVector< dim > &x) const |
evaluates the shape function More... | |
void | shapes (shape_type *vShape, const MathVector< dim > &x) const |
returns all shape functions evaluated at a point More... | |
void | shapes (std::vector< shape_type > &vShape, const MathVector< dim > &x) const |
returns all shape functions evaluated at a point More... | |
void | shapes (std::vector< std::vector< shape_type > > &vvShape, const std::vector< MathVector< dim > > &vLocPos) const |
returns all shape functions evaluated at a point More... | |
Static Public Attributes | |
static const int | dim = TRefElem::dim |
Dimension, where shape functions are defined. More... | |
static const size_t | nsh = TRefElem::numCorners |
Number of shape functions. More... | |
static const size_t | order = 1 |
Order of Shape functions. More... | |
Static Public Attributes inherited from ug::BaseLSFS< LagrangeP1< TRefElem >, TRefElem::dim > | |
static const int | dim |
dimension of reference element More... | |
Private Types | |
typedef BaseLSFS< LagrangeP1< TRefElem >, TRefElem::dim > | base_type |
base class More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ug::BaseLSFS< LagrangeP1< TRefElem >, TRefElem::dim > | |
ImplType & | getImpl () |
access to implementation More... | |
const ImplType & | getImpl () const |
const access to implementation More... | |
Protected Attributes inherited from ug::LagrangeLDS< TRefElem > | |
std::vector< LocalDoF > | m_vLocalDoF |
association to geom obj More... | |
size_t | p |
order More... | |
Lagrange shape functions of first order.
This class provides Lagrangian Shape Functions of order 1 for a Reference Element.
TRefElem | Reference Element Type |
|
private |
base class
typedef base_type::grad_type ug::LagrangeP1< TRefElem >::grad_type |
Gradient type.
typedef TRefElem ug::LagrangeP1< TRefElem >::reference_element_type |
Reference Element type.
typedef base_type::shape_type ug::LagrangeP1< TRefElem >::shape_type |
Shape type.
|
inline |
constructor
|
inline |
returns if space constructs continuous functions
void ug::LagrangeP1< TRefElem >::grad | ( | grad_type & | value, |
size_t | i, | ||
const MathVector< dim > & | x | ||
) | const |
evaluates the gradient of the shape function
This function returns the gradient of Shape Function i at an element-local evaluation point.
[in] | i | number of DoF |
[in] | x | Position on reference element (evaluation point) |
|
inlinevirtual |
returns the total number of dofs on the finite element
Reimplemented from ug::LocalDoFSet.
References ug::LagrangeP1< TRefElem >::nsh.
Referenced by ug::FV1InnerBoundaryElemDisc< TImpl, TDomain >::prep_err_est_elem(), and ug::FV1InnerBoundaryElemDisc< TImpl, TDomain >::prep_err_est_elem_loop().
bool ug::LagrangeP1< TRefElem >::position | ( | size_t | i, |
MathVector< dim > & | pos | ||
) | const |
local position of DoF i
This function returns the local position of a DoF if possible.
[in] | i | number of DoF |
[out] | pos | Position of DoF |
true | if position exists |
false | if no meaningful position available |
shape_type ug::LagrangeP1< TRefElem >::shape | ( | size_t | i, |
const MathVector< dim > & | x | ||
) | const |
evaluates the shape function
This function returns the value of Shape Function i at an element-local evaluation point.
[in] | i | number of DoF |
[in] | x | Position on reference element (evaluation point) |
|
static |
Dimension, where shape functions are defined.
|
static |
Number of shape functions.
Referenced by ug::LagrangeP1< TRefElem >::num_sh().
|
static |
Order of Shape functions.