Reference documentation for deal.II version 9.1.1
|
#include <deal.II/hp/fe_values.h>
Public Member Functions | |
FEValuesBase (const ::hp::MappingCollection< dim, FEValuesType::space_dimension > &mapping_collection, const ::hp::FECollection< dim, FEValuesType::space_dimension > &fe_collection, const ::hp::QCollection< q_dim > &q_collection, const ::UpdateFlags update_flags) | |
FEValuesBase (const ::hp::FECollection< dim, FEValuesType::space_dimension > &fe_collection, const ::hp::QCollection< q_dim > &q_collection, const UpdateFlags update_flags) | |
const ::hp::FECollection< dim, FEValuesType::space_dimension > & | get_fe_collection () const |
const ::hp::MappingCollection< dim, FEValuesType::space_dimension > & | get_mapping_collection () const |
const ::hp::QCollection< q_dim > & | get_quadrature_collection () const |
UpdateFlags | get_update_flags () const |
const FEValuesType & | get_present_fe_values () const |
Protected Member Functions | |
FEValuesType & | select_fe_values (const unsigned int fe_index, const unsigned int mapping_index, const unsigned int q_index) |
Protected Attributes | |
const SmartPointer< const ::hp::FECollection< dim, FEValuesType::space_dimension >, FEValuesBase< dim, q_dim, FEValuesType > > | fe_collection |
const SmartPointer< const ::hp::MappingCollection< dim, FEValuesType::space_dimension >, FEValuesBase< dim, q_dim, FEValuesType > > | mapping_collection |
const ::hp::QCollection< q_dim > | q_collection |
Private Attributes | |
::Table< 3, std::shared_ptr< FEValuesType > > | fe_values_table |
TableIndices< 3 > | present_fe_values_index |
const UpdateFlags | update_flags |
Base class for the hp::FE*Values
classes, storing the data that is common to them. The main task of this class is to provide a table where for every combination of finite element, mapping, and quadrature object from their corresponding collection objects there is a matching FEValues, FEFaceValues, or FESubfaceValues object. To make things more efficient, however, these FE*Values objects are only created once requested (lazy allocation).
The first template parameter denotes the space dimension we are in, the second the dimensionality of the object that we integrate on, i.e. for usual hp::FEValues
it is equal to the first one, while for face integration it is one less. The third template parameter indicates the type of underlying non-hp FE*Values base type, i.e. it could either be FEValues, FEFaceValues, or FESubfaceValues.
Definition at line 63 of file fe_values.h.
internal::hp::FEValuesBase< dim, q_dim, FEValuesType >::FEValuesBase | ( | const ::hp::MappingCollection< dim, FEValuesType::space_dimension > & | mapping_collection, |
const ::hp::FECollection< dim, FEValuesType::space_dimension > & | fe_collection, | ||
const ::hp::QCollection< q_dim > & | q_collection, | ||
const ::UpdateFlags | update_flags | ||
) |
Constructor. Set the fields of this class to the values indicated by the parameters to the constructor.
FEValuesBase< dim, q_dim, FEValuesType >::FEValuesBase | ( | const ::hp::FECollection< dim, FEValuesType::space_dimension > & | fe_collection, |
const ::hp::QCollection< q_dim > & | q_collection, | ||
const UpdateFlags | update_flags | ||
) |
Constructor. This constructor is equivalent to the other one except that it makes the object use a \(Q_1\) mapping (i.e., an object of type MappingQGeneric(1)) implicitly.
Definition at line 50 of file fe_values.cc.
|
inline |
Get a reference to the collection of finite element objects used here.
Definition at line 622 of file fe_values.h.
|
inline |
Get a reference to the collection of mapping objects used here.
Definition at line 632 of file fe_values.h.
|
inline |
Get a reference to the collection of quadrature objects used here.
Definition at line 641 of file fe_values.h.
|
inline |
Get the underlying update flags.
Definition at line 650 of file fe_values.h.
|
inline |
Return a reference to the FEValues
object selected by the last call to select_fe_values(). select_fe_values() in turn is called when you called the reinit
function of the hp::FE*Values
class the last time.
Definition at line 613 of file fe_values.h.
|
protected |
Select a FEValues object suitable for the given FE, quadrature, and mapping indices. If such an object doesn't yet exist, create one.
The function returns a writable reference so that derived classes can also reinit() the selected FEValues object.
Definition at line 71 of file fe_values.cc.
|
protected |
A pointer to the collection of finite elements to be used.
Definition at line 142 of file fe_values.h.
|
protected |
A pointer to the collection of mappings to be used.
Definition at line 150 of file fe_values.h.
|
protected |
Copy of the quadrature collection object provided to the constructor.
Definition at line 155 of file fe_values.h.
|
private |
A table in which we store pointers to fe_values objects for different finite element, mapping, and quadrature objects from our collection. The first index indicates the index of the finite element within the fe_collection, the second the index of the mapping within the mapping collection, and the last one the index of the quadrature formula within the q_collection.
Initially, all entries have zero pointers, and we will allocate them lazily as needed in select_fe_values().
Definition at line 169 of file fe_values.h.
|
private |
Set of indices pointing at the fe_values object selected last time the select_fe_value() function was called.
Definition at line 175 of file fe_values.h.
|
private |
Values of the update flags as given to the constructor.
Definition at line 180 of file fe_values.h.