Reference documentation for deal.II version 8.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Public Member Functions | Protected Member Functions | Protected Attributes | Private Attributes | List of all members
internal::hp::FEValuesBase< dim, q_dim, FEValues > Class Template Reference

#include <fe_values.h>

Inheritance diagram for internal::hp::FEValuesBase< dim, q_dim, FEValues >:
[legend]

Public Member Functions

 FEValuesBase (const ::hp::MappingCollection< dim, FEValues::space_dimension > &mapping_collection, const ::hp::FECollection< dim, FEValues::space_dimension > &fe_collection, const ::hp::QCollection< q_dim > &q_collection, const UpdateFlags update_flags)
 
 FEValuesBase (const ::hp::FECollection< dim, FEValues::space_dimension > &fe_collection, const ::hp::QCollection< q_dim > &q_collection, const UpdateFlags update_flags)
 
const ::hp::FECollection< dim,
FEValues::space_dimension > & 
get_fe_collection () const
 
const ::hp::MappingCollection
< dim,
FEValues::space_dimension > & 
get_mapping_collection () const
 
const ::hp::QCollection< q_dim > & get_quadrature_collection () const
 
UpdateFlags get_update_flags () const
 
const FEValuesget_present_fe_values () const
 

Protected Member Functions

FEValuesselect_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,
FEValues::space_dimension >
, FEValuesBase< dim, q_dim,
FEValues > > 
fe_collection
 
const SmartPointer< const
::hp::MappingCollection< dim,
FEValues::space_dimension >
, FEValuesBase< dim, q_dim,
FEValues > > 
mapping_collection
 
const ::hp::QCollection< q_dim > q_collection
 

Private Attributes

Table
< 3, std_cxx1x::shared_ptr
< FEValues > > 
fe_values_table
 
TableIndices< 3 > present_fe_values_index
 
const UpdateFlags update_flags
 

Detailed Description

template<int dim, int q_dim, class FEValues>
class internal::hp::FEValuesBase< dim, q_dim, FEValues >

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.

Author
Wolfgang Bangerth, 2003

Definition at line 63 of file fe_values.h.

Constructor & Destructor Documentation

template<int dim, int q_dim, class FEValues>
internal::hp::FEValuesBase< dim, q_dim, FEValues >::FEValuesBase ( const ::hp::MappingCollection< dim, FEValues::space_dimension > &  mapping_collection,
const ::hp::FECollection< dim, FEValues::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.

template<int dim, int q_dim, class FEValues>
internal::hp::FEValuesBase< dim, q_dim, FEValues >::FEValuesBase ( const ::hp::FECollection< dim, FEValues::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, and choose a MappingQ1 object for the mapping object.

Member Function Documentation

template<int dim, int q_dim, class FEValues >
const ::hp::FECollection< dim, FEValues::space_dimension > & FEValuesBase< dim, q_dim, FEValues >::get_fe_collection ( ) const
inline

Get a reference to the collection of finite element objects used here.

Definition at line 610 of file fe_values.h.

template<int dim, int q_dim, class FEValues >
const ::hp::MappingCollection< dim, FEValues::space_dimension > & FEValuesBase< dim, q_dim, FEValues >::get_mapping_collection ( ) const
inline

Get a reference to the collection of mapping objects used here.

Definition at line 620 of file fe_values.h.

template<int dim, int q_dim, class FEValues >
const ::hp::QCollection< q_dim > & FEValuesBase< dim, q_dim, FEValues >::get_quadrature_collection ( ) const
inline

Get a reference to the collection of quadrature objects used here.

Definition at line 630 of file fe_values.h.

template<int dim, int q_dim, class FEValues >
UpdateFlags FEValuesBase< dim, q_dim, FEValues >::get_update_flags ( ) const
inline

Get the underlying update flags.

Definition at line 640 of file fe_values.h.

template<int dim, int q_dim, class FEValues >
const FEValues & FEValuesBase< dim, q_dim, FEValues >::get_present_fe_values ( ) const
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 600 of file fe_values.h.

template<int dim, int q_dim, class FEValues>
FEValues& internal::hp::FEValuesBase< dim, q_dim, FEValues >::select_fe_values ( const unsigned int  fe_index,
const unsigned int  mapping_index,
const unsigned int  q_index 
)
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.

Member Data Documentation

template<int dim, int q_dim, class FEValues>
const SmartPointer<const ::hp::FECollection<dim,FEValues::space_dimension>, FEValuesBase<dim,q_dim,FEValues> > internal::hp::FEValuesBase< dim, q_dim, FEValues >::fe_collection
protected

A pointer to the collection of finite elements to be used.

Definition at line 136 of file fe_values.h.

template<int dim, int q_dim, class FEValues>
const SmartPointer<const ::hp::MappingCollection<dim, FEValues::space_dimension>, FEValuesBase<dim,q_dim,FEValues> > internal::hp::FEValuesBase< dim, q_dim, FEValues >::mapping_collection
protected

A pointer to the collection of mappings to be used.

Definition at line 142 of file fe_values.h.

template<int dim, int q_dim, class FEValues>
const ::hp::QCollection<q_dim> internal::hp::FEValuesBase< dim, q_dim, FEValues >::q_collection
protected

Copy of the quadrature collection object provided to the constructor.

Definition at line 147 of file fe_values.h.

template<int dim, int q_dim, class FEValues>
Table<3,std_cxx1x::shared_ptr<FEValues> > internal::hp::FEValuesBase< dim, q_dim, FEValues >::fe_values_table
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 161 of file fe_values.h.

template<int dim, int q_dim, class FEValues>
TableIndices<3> internal::hp::FEValuesBase< dim, q_dim, FEValues >::present_fe_values_index
private

Set of indices pointing at the fe_values object selected last time the select_fe_value() function was called.

Definition at line 167 of file fe_values.h.

template<int dim, int q_dim, class FEValues>
const UpdateFlags internal::hp::FEValuesBase< dim, q_dim, FEValues >::update_flags
private

Values of the update flags as given to the constructor.

Definition at line 172 of file fe_values.h.


The documentation for this class was generated from the following file: