#include <buildDofsBase.hh>
Public Member Functions | |
BuildDofsBase () | |
Default constructor. | |
BuildDofsBase (Space &spc) | |
virtual void | operator() (concepts::Quad &cntr, concepts::TColumn< Real > *&T1, const uint nn[2])=0 |
virtual BuildDofsBase * | clone (Space *spc=0) const =0 |
Space * | space () |
Returns the space. | |
Protected Member Functions | |
concepts::AdaptiveControl & | ctrl0_ (uint idx) |
Returns vertex tag of vertex with key idx . | |
concepts::AdaptiveControlP< 1 > & | ctrl1_ (uint idx) |
Returns edge tag of edge with key idx . | |
concepts::AdaptiveControlP< 2 > & | ctrl2_ (uint idx) |
Returns face tag of face with key idx . | |
std::map< uint, concepts::VertexData >::const_iterator | vertexListFind (uint idx) const |
Returns the iterator to the vertex data of the vertex with key idx . | |
std::map< uint, concepts::VertexData >::const_iterator | vertexListEnd () const |
Returns the end of the list with vertex data. | |
std::map< uint, concepts::EdgeData >::const_iterator | edgeListFind (uint idx) const |
Returns the iterator to the edge data of the edge with key idx . | |
std::map< uint, concepts::EdgeData >::const_iterator | edgeListEnd () const |
Returns the end of the list with edge data. | |
uint & | dim_ () |
Returns a reference to the dimension of the space. | |
void | deactivate_ (const concepts::Vertex &vtx) |
Deactivates the children of the vertex vtx . | |
void | deactivate_ (const concepts::Edge &edg) |
void | computePmax_ (const concepts::Quad &cntr, ushort Pmax[2]) const |
Computes maximal polynomial Pmax degree in cntr in tensor form. | |
Protected Attributes | |
Space * | spc_ |
Space to build the vertex degrees of freedom from. | |
Responsible to build the degrees of freedom in a space. A call to the application operator builds the T columns for a given quad.
This is the base class for the specialzations for vertices, edges and the interior. The access to the internal data of the space (which is needed) is provided through the protected member functions of this class (and this class is a friend of Space).
Definition at line 31 of file buildDofsBase.hh.
|
inline |
Default constructor.
Definition at line 34 of file buildDofsBase.hh.
|
inlinevirtual |
Definition at line 36 of file buildDofsBase.hh.
|
inline |
Constructor.
spc | Space to build the degrees of freedom from |
Definition at line 41 of file buildDofsBase.hh.
|
pure virtual |
Virtual copy constructor with a twist. If a copy of a space is created, the strategies to build the degrees of freedom of the copy should also reference the copy and not the initial space. This is done by giving the argument spc
to clone.
spc | Space to work on for the return value. If set to 0, spc_ is used. |
Implemented in hp2D::BuildEdgeDofs, hp2D::BuildInnerDofs, hp2D::BuildInnerDofsLinTrunk, hp2D::BuildInnerDofsHypTrunk, and hp2D::BuildVertexDofs.
|
inlineprotected |
Computes maximal polynomial Pmax
degree in cntr
in tensor form.
Definition at line 142 of file buildDofsBase.hh.
|
inlineprotected |
Returns vertex tag of vertex with key idx
.
Definition at line 93 of file buildDofsBase.hh.
|
inlineprotected |
Returns edge tag of edge with key idx
.
Definition at line 98 of file buildDofsBase.hh.
|
inlineprotected |
Returns face tag of face with key idx
.
Definition at line 103 of file buildDofsBase.hh.
|
inlineprotected |
Deactivates the children of the edge edg
(including the middle vertex).
Definition at line 137 of file buildDofsBase.hh.
|
inlineprotected |
Deactivates the children of the vertex vtx
.
Definition at line 132 of file buildDofsBase.hh.
|
inlineprotected |
Returns a reference to the dimension of the space.
Definition at line 81 of file buildDofsBase.hh.
|
inlineprotected |
Returns the end of the list with edge data.
Definition at line 127 of file buildDofsBase.hh.
|
inlineprotected |
Returns the iterator to the edge data of the edge with key idx
.
Definition at line 121 of file buildDofsBase.hh.
|
pure virtual |
Builds the degrees of freedom.
cntr | Hex which vertices should be considered |
T1 | New T columns created for the degrees of freedom in the vertices |
Implemented in hp2D::BuildEdgeDofs, hp2D::BuildInnerDofs, and hp2D::BuildVertexDofs.
|
inline |
Returns the space.
Definition at line 60 of file buildDofsBase.hh.
|
inlineprotected |
Returns the end of the list with vertex data.
Definition at line 115 of file buildDofsBase.hh.
|
inlineprotected |
Returns the iterator to the vertex data of the vertex with key idx
.
Definition at line 109 of file buildDofsBase.hh.
|
protected |
Space to build the vertex degrees of freedom from.
Definition at line 90 of file buildDofsBase.hh.