![]() |
Reference documentation for deal.II version 8.1.0
|
#include <fe_collection.h>
Public Member Functions | |
FECollection () | |
FECollection (const FiniteElement< dim, spacedim > &fe) | |
FECollection (const FECollection< dim, spacedim > &fe_collection) | |
void | push_back (const FiniteElement< dim, spacedim > &new_fe) |
const FiniteElement< dim, spacedim > & | operator[] (const unsigned int index) const |
unsigned int | size () const |
unsigned int | n_components () const |
unsigned int | n_blocks () const |
unsigned int | max_dofs_per_vertex () const |
unsigned int | max_dofs_per_line () const |
unsigned int | max_dofs_per_quad () const |
unsigned int | max_dofs_per_hex () const |
unsigned int | max_dofs_per_face () const |
unsigned int | max_dofs_per_cell () const |
std::size_t | memory_consumption () const |
bool | hp_constraints_are_implemented () const |
ComponentMask | component_mask (const FEValuesExtractors::Scalar &scalar) const |
ComponentMask | component_mask (const FEValuesExtractors::Vector &vector) const |
ComponentMask | component_mask (const FEValuesExtractors::SymmetricTensor< 2 > &sym_tensor) const |
ComponentMask | component_mask (const BlockMask &block_mask) const |
BlockMask | block_mask (const FEValuesExtractors::Scalar &scalar) const |
BlockMask | block_mask (const FEValuesExtractors::Vector &vector) const |
BlockMask | block_mask (const FEValuesExtractors::SymmetricTensor< 2 > &sym_tensor) const |
BlockMask | block_mask (const ComponentMask &component_mask) const |
DeclException0 (ExcNoFiniteElements) | |
![]() | |
Subscriptor () | |
Subscriptor (const Subscriptor &) | |
virtual | ~Subscriptor () |
Subscriptor & | operator= (const Subscriptor &) |
void | subscribe (const char *identifier=0) const |
void | unsubscribe (const char *identifier=0) const |
unsigned int | n_subscriptions () const |
void | list_subscribers () const |
DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects.\n"<< "(Additional information: "<< arg3<< ")\n"<< "Note the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "more information on what this error means.") | |
DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier \""<< arg2<< "\" did subscribe to this object of class "<< arg1) | |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Private Attributes | |
std::vector < std_cxx1x::shared_ptr< const FiniteElement< dim, spacedim > > > | finite_elements |
This class acts as a collection of finite element objects used in the hp::DoFHandler. It is thus to a hp::DoFHandler what a FiniteElement is to a DoFHandler.
It implements the concepts stated in the hp Collections module described in the doxygen documentation.
In addition to offering access to the elements of the collection, this class provides access to the maximal number of degrees of freedom per vertex, line, etc, to allow allocation of as much memory as is necessary in the worst case when using the finite elements associated with the cells of a triangulation.
This class has not yet been implemented for the use in the codimension one case (spacedim != dim
).
Definition at line 31 of file dof_faces.h.
hp::FECollection< dim, spacedim >::FECollection | ( | ) |
Default constructor. Leads to an empty collection that can later be filled using push_back().
|
explicit |
Conversion constructor. This constructor creates a FECollection from a single finite element. More finite element objects can be added with push_back(), if desired, though it would probably be clearer to add all mappings the same way.
hp::FECollection< dim, spacedim >::FECollection | ( | const FECollection< dim, spacedim > & | fe_collection | ) |
Copy constructor.
void hp::FECollection< dim, spacedim >::push_back | ( | const FiniteElement< dim, spacedim > & | new_fe | ) |
Add a finite element. This function generates a copy of the given element, i.e. you can do things like push_back(FE_Q<dim>(1));
. The internal copy is later destroyed by this object upon destruction of the entire collection.
When a new element is added, it needs to have the same number of vector components as all other elements already in the collection.
|
inline |
Get a reference to the given element in this collection.
index
must be between zero and the number of elements of the collection. Definition at line 479 of file fe_collection.h.
|
inline |
Return the number of finite element objects stored in this collection.
Definition at line 451 of file fe_collection.h.
|
inline |
Return the number of vector components of the finite elements in this collection. This number must be the same for all elements in the collection.
This function calls FiniteElement::n_components. See the glossary for more information.
Definition at line 460 of file fe_collection.h.
unsigned int hp::FECollection< dim, spacedim >::n_blocks | ( | ) | const |
Return the number of vector blocks of the finite elements in this collection. While this class ensures that all elements stored in it have the same number of vector components, there is no such guarantees for the number of blocks each element is made up of (an element may have fewer blocks than vector components; see the glossary for more information). For example, you may have an FECollection object that stores one copy of an FESystem with dim
FE_Q objects and one copy of an FE_RaviartThomas element. Both have dim
vector components but while the former has dim
blocks the latter has only one. Consequently, this function will throw an assertion if the number of blocks is not the same for all elements. If they are the same, this function returns the result of FiniteElement::n_blocks().
unsigned int hp::FECollection< dim, spacedim >::max_dofs_per_vertex | ( | ) | const |
Return the maximal number of degrees of freedom per vertex over all elements of this collection.
Definition at line 490 of file fe_collection.h.
unsigned int hp::FECollection< dim, spacedim >::max_dofs_per_line | ( | ) | const |
Return the maximal number of degrees of freedom per line over all elements of this collection.
Definition at line 506 of file fe_collection.h.
unsigned int hp::FECollection< dim, spacedim >::max_dofs_per_quad | ( | ) | const |
Return the maximal number of degrees of freedom per quad over all elements of this collection.
Definition at line 522 of file fe_collection.h.
unsigned int hp::FECollection< dim, spacedim >::max_dofs_per_hex | ( | ) | const |
Return the maximal number of degrees of freedom per hex over all elements of this collection.
Definition at line 538 of file fe_collection.h.
unsigned int hp::FECollection< dim, spacedim >::max_dofs_per_face | ( | ) | const |
Return the maximal number of degrees of freedom per face over all elements of this collection.
Definition at line 554 of file fe_collection.h.
unsigned int hp::FECollection< dim, spacedim >::max_dofs_per_cell | ( | ) | const |
Return the maximal number of degrees of freedom per cell over all elements of this collection.
Definition at line 570 of file fe_collection.h.
std::size_t hp::FECollection< dim, spacedim >::memory_consumption | ( | ) | const |
Return an estimate for the memory allocated for this object.
bool hp::FECollection< dim, spacedim >::hp_constraints_are_implemented | ( | ) | const |
Return whether all elements in this collection implement the hanging node constraints in the new way, which has to be used to make elements "hp compatible". If this is not the case, the function returns false, which implies, that at least one element in the FECollection does not support the new face interface constraints. On the other hand, if this method does return true, this does not imply that the hp method will work!
This behaviour is related to the fact, that FiniteElement classes, which provide the new style hanging node constraints might still not provide them for all possible cases. If FE_Q and FE_RaviartThomas elements are included in the FECollection and both properly implement the get_face_interpolation_matrix method, this method will return true. But the get_face_interpolation_matrix might still fail to find an interpolation matrix between these two elements.
Definition at line 585 of file fe_collection.h.
ComponentMask hp::FECollection< dim, spacedim >::component_mask | ( | const FEValuesExtractors::Scalar & | scalar | ) | const |
Return a component mask with as many elements as this object has vector components and of which exactly the one component is true that corresponds to the given argument.
scalar | An object that represents a single scalar vector component of this finite element. |
ComponentMask hp::FECollection< dim, spacedim >::component_mask | ( | const FEValuesExtractors::Vector & | vector | ) | const |
Return a component mask with as many elements as this object has vector components and of which exactly the dim
components are true that correspond to the given argument.
vector | An object that represents dim vector components of this finite element. |
ComponentMask hp::FECollection< dim, spacedim >::component_mask | ( | const FEValuesExtractors::SymmetricTensor< 2 > & | sym_tensor | ) | const |
Return a component mask with as many elements as this object has vector components and of which exactly the dim*(dim+1)/2
components are true that correspond to the given argument.
sym_tensor | An object that represents dim*(dim+1)/2 components of this finite element that are jointly to be interpreted as forming a symmetric tensor. |
ComponentMask hp::FECollection< dim, spacedim >::component_mask | ( | const BlockMask & | block_mask | ) | const |
Given a block mask (see this glossary entry), produce a component mask (see this glossary entry) that represents the components that correspond to the blocks selected in the input argument. This is essentially a conversion operator from BlockMask to ComponentMask.
block_mask | The mask that selects individual blocks of the finite element |
BlockMask hp::FECollection< dim, spacedim >::block_mask | ( | const FEValuesExtractors::Scalar & | scalar | ) | const |
Return a block mask with as many elements as this object has blocks and of which exactly the one component is true that corresponds to the given argument. See the glossary for more information.
scalar | An object that represents a single scalar vector component of this finite element. |
BlockMask hp::FECollection< dim, spacedim >::block_mask | ( | const FEValuesExtractors::Vector & | vector | ) | const |
Return a component mask with as many elements as this object has vector components and of which exactly the dim
components are true that correspond to the given argument. See the glossary for more information.
vector | An object that represents dim vector components of this finite element. |
BlockMask hp::FECollection< dim, spacedim >::block_mask | ( | const FEValuesExtractors::SymmetricTensor< 2 > & | sym_tensor | ) | const |
Return a component mask with as many elements as this object has vector components and of which exactly the dim*(dim+1)/2
components are true that correspond to the given argument. See the glossary for more information.
sym_tensor | An object that represents dim*(dim+1)/2 components of this finite element that are jointly to be interpreted as forming a symmetric tensor. |
BlockMask hp::FECollection< dim, spacedim >::block_mask | ( | const ComponentMask & | component_mask | ) | const |
Given a component mask (see this glossary entry), produce a block mask (see this glossary entry) that represents the blocks that correspond to the components selected in the input argument. This is essentially a conversion operator from ComponentMask to BlockMask.
component_mask | The mask that selects individual components of the finite element |
hp::FECollection< dim, spacedim >::DeclException0 | ( | ExcNoFiniteElements | ) |
Exception
|
private |
Array of pointers to the finite elements stored by this collection.
Definition at line 441 of file fe_collection.h.