#include <buildInnerDofs.hh>
Public Member Functions | |
BuildInnerDofsLinTrunk () | |
Default constructor. | |
BuildInnerDofsLinTrunk (Space &spc) | |
virtual BuildInnerDofsLinTrunk * | clone (Space *spc=0) const |
virtual bool | trunk (uint p, uint q, uint r, const ushort P[3]) |
virtual void | operator() (concepts::Hexahedron &cntr, concepts::TColumn< Real > *&T1) |
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 . | |
concepts::AdaptiveControlP< 3 > & | ctrl3_ (uint idx) |
Returns cell tag of cell 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. | |
std::map< uint, concepts::FaceData >::const_iterator | faceListFind (uint idx) const |
Returns the iterator to the face data of the face with key idx . | |
std::map< uint, concepts::FaceData >::const_iterator | faceListEnd () const |
Returns the end of the list with face data. | |
uint & | dim_ () |
Returns a reference to the dimension of the space. | |
void | deactivate_ (const concepts::Connector0 &vtx) |
Deactivates the children of the vertex vtx . | |
void | deactivate_ (const concepts::Connector1 &edg) |
void | deactivate_ (const concepts::Connector2 &face) |
void | computePmax_ (const concepts::Hexahedron &cntr, ushort Pmax[3]) const |
void | getPmax_ (const concepts::Hexahedron &cntr, ushort Pmax[3]) const |
Protected Attributes | |
Space * | spc_ |
Space to build the vertex degrees of freedom from. | |
Responsible to build the inner degrees of freedom in a (trunk) space.
Using this class, only a trunk of the degrees of freedom in the interior are built: if (p + q + r) <= (PintMax + 1),
the degree of freedom with polynomial degrees p
, q
and r
in each direction is built (PintMax
is the maximal polynomial degree of all directions).
This class is registered as the default strategy in a Space to build the inner degrees of freedom. Giving Space a different class through the use of Space::buildInnerDofs, you can change that behaviour.
Definition at line 87 of file buildInnerDofs.hh.
|
inline |
Default constructor.
Definition at line 90 of file buildInnerDofs.hh.
|
inline |
Constructor.
spc | Space to build the inner degrees of freedom from |
Definition at line 94 of file buildInnerDofs.hh.
|
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 als 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. |
Reimplemented from hp3D::BuildInnerDofs.
|
inlineprotectedinherited |
Computes maximal polynomial Pmax
degree on topological objects adjacent to cntr
that contributes directly to a global degree of freedom (returned in tensor form)
Definition at line 178 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns vertex tag of vertex with key idx
.
Definition at line 107 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns edge tag of edge with key idx
.
Definition at line 112 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns face tag of face with key idx
.
Definition at line 117 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns cell tag of cell with key idx
.
Definition at line 122 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Deactivates the children of the vertex vtx
.
Definition at line 163 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Deactivates the children of the edge edg
(including the middle vertex).
Definition at line 168 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Deactivates the children of face
(including the new edges and vertices).
Definition at line 173 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns a reference to the dimension of the space.
Definition at line 85 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns the end of the list with edge data.
Definition at line 146 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns the iterator to the edge data of the edge with key idx
.
Definition at line 140 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns the end of the list with face data.
Definition at line 158 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns the iterator to the face data of the face with key idx
.
Definition at line 152 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Gets the polynomial degrees Pmax
of the shape function on cntr
(returned in tensor form)
Definition at line 184 of file buildDofsBase.hh.
|
virtualinherited |
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 |
Implements hp3D::BuildDofsBase.
|
inlineinherited |
Returns the space.
Definition at line 56 of file buildDofsBase.hh.
|
virtual |
Trunk space indicator function. For each degree of freedom, this function is called to find out if it should be built or not. If the return value is true
, the degree of freedom is built, otherwise it is not.
The default behaviour of this function is to return true
. Overwrite it if you want to have a trunk space (e.g. as in BuildInnerDofsLinTrunk).
p | Polynomial degree in first direction of current degree of freedom |
q | Polynomial degree in second direction of current degree of freedom |
r | Polynomial degree in second direction of current degree of freedom |
P | Maximal polynomial degree in the interior |
Reimplemented from hp3D::BuildInnerDofs.
|
inlineprotectedinherited |
Returns the end of the list with vertex data.
Definition at line 134 of file buildDofsBase.hh.
|
inlineprotectedinherited |
Returns the iterator to the vertex data of the vertex with key idx
.
Definition at line 128 of file buildDofsBase.hh.
|
protectedinherited |
Space to build the vertex degrees of freedom from.
Definition at line 104 of file buildDofsBase.hh.