![]() |
Reference documentation for deal.II version 8.4.2
|
#include <deal.II/fe/mapping_fe_field.h>
Public Member Functions | |
| InternalData (const FiniteElement< dim, spacedim > &fe, const ComponentMask mask) | |
| const double & | shape (const unsigned int qpoint, const unsigned int shape_nr) const |
| double & | shape (const unsigned int qpoint, const unsigned int shape_nr) |
| const Tensor< 1, dim > & | derivative (const unsigned int qpoint, const unsigned int shape_nr) const |
| Tensor< 1, dim > & | derivative (const unsigned int qpoint, const unsigned int shape_nr) |
| const Tensor< 2, dim > & | second_derivative (const unsigned int qpoint, const unsigned int shape_nr) const |
| Tensor< 2, dim > & | second_derivative (const unsigned int qpoint, const unsigned int shape_nr) |
| const Tensor< 3, dim > & | third_derivative (const unsigned int qpoint, const unsigned int shape_nr) const |
| Tensor< 3, dim > & | third_derivative (const unsigned int qpoint, const unsigned int shape_nr) |
| const Tensor< 4, dim > & | fourth_derivative (const unsigned int qpoint, const unsigned int shape_nr) const |
| Tensor< 4, dim > & | fourth_derivative (const unsigned int qpoint, const unsigned int shape_nr) |
| virtual std::size_t | memory_consumption () const |
Public Member Functions inherited from Mapping< dim, spacedim >::InternalDataBase | |
| InternalDataBase () | |
| virtual | ~InternalDataBase () |
Public Attributes | |
| std::vector< double > | shape_values |
| std::vector< Tensor< 1, dim > > | shape_derivatives |
| std::vector< Tensor< 2, dim > > | shape_second_derivatives |
| std::vector< Tensor< 3, dim > > | shape_third_derivatives |
| std::vector< Tensor< 4, dim > > | shape_fourth_derivatives |
| std::vector< std::vector< Tensor< 1, dim > > > | unit_tangentials |
| unsigned int | n_shape_functions |
| ComponentMask | mask |
| std::vector< DerivativeForm< 1, dim, spacedim > > | covariant |
| std::vector< DerivativeForm< 1, dim, spacedim > > | contravariant |
| std::vector< double > | volume_elements |
| std::vector< std::vector< Tensor< 1, spacedim > > > | aux |
| std::vector< types::global_dof_index > | local_dof_indices |
| std::vector< double > | local_dof_values |
Public Attributes inherited from Mapping< dim, spacedim >::InternalDataBase | |
| UpdateFlags | update_each |
Storage for internal data of this mapping. See Mapping::InternalDataBase for an extensive description.
This includes data that is computed once when the object is created (in get_data()) as well as data the class wants to store from between the call to fill_fe_values(), fill_fe_face_values(), or fill_fe_subface_values() until possible later calls from the finite element to functions such as transform(). The latter class of member variables are marked as 'mutable', along with scratch arrays.
Definition at line 246 of file mapping_fe_field.h.
| MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::InternalData | ( | const FiniteElement< dim, spacedim > & | fe, |
| const ComponentMask | mask | ||
| ) |
Constructor.
Definition at line 49 of file mapping_fe_field.cc.
|
inline |
Shape function at quadrature point. Shape functions are in tensor product order, so vertices must be reordered to obtain transformation.
Definition at line 232 of file mapping_fe_field.cc.
| double & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::shape | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) |
Shape function at quadrature point. See above.
Definition at line 73 of file mapping_fe_field.cc.
| const Tensor< 1, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) | const |
Gradient of shape function in quadrature point. See above.
Definition at line 86 of file mapping_fe_field.cc.
| Tensor< 1, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) |
Gradient of shape function in quadrature point. See above.
Definition at line 100 of file mapping_fe_field.cc.
| const Tensor< 2, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::second_derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) | const |
Second derivative of shape function in quadrature point. See above.
Definition at line 113 of file mapping_fe_field.cc.
| Tensor< 2, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::second_derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) |
Second derivative of shape function in quadrature point. See above.
Definition at line 127 of file mapping_fe_field.cc.
| const Tensor< 3, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::third_derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) | const |
Third derivative of shape function in quadrature point. See above.
Definition at line 140 of file mapping_fe_field.cc.
| Tensor< 3, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::third_derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) |
Fourth derivative of shape function in quadrature point. See above.
Definition at line 154 of file mapping_fe_field.cc.
| const Tensor< 4, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::fourth_derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) | const |
Fourth derivative of shape function in quadrature point. See above.
Definition at line 167 of file mapping_fe_field.cc.
| Tensor< 4, dim > & MappingFEField< dim, spacedim, DoFHandlerType, VectorType >::InternalData::fourth_derivative | ( | const unsigned int | qpoint, |
| const unsigned int | shape_nr | ||
| ) |
Third derivative of shape function in quadrature point. See above.
Definition at line 181 of file mapping_fe_field.cc.
|
virtual |
Return an estimate (in bytes) or the memory consumption of this object.
Reimplemented from Mapping< dim, spacedim >::InternalDataBase.
Definition at line 62 of file mapping_fe_field.cc.
| std::vector<double> MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::shape_values |
Values of shape functions. Access by function shape.
Computed once.
Definition at line 326 of file mapping_fe_field.h.
| std::vector<Tensor<1,dim> > MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::shape_derivatives |
Values of shape function derivatives. Access by function derivative.
Computed once.
Definition at line 333 of file mapping_fe_field.h.
| std::vector<Tensor<2,dim> > MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::shape_second_derivatives |
Values of shape function second derivatives. Access by function second_derivative.
Computed once.
Definition at line 341 of file mapping_fe_field.h.
| std::vector<Tensor<3,dim> > MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::shape_third_derivatives |
Values of shape function third derivatives. Access by function third_derivative.
Computed once.
Definition at line 349 of file mapping_fe_field.h.
| std::vector<Tensor<4,dim> > MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::shape_fourth_derivatives |
Values of shape function fourth derivatives. Access by function fourth_derivative.
Computed once.
Definition at line 357 of file mapping_fe_field.h.
| std::vector<std::vector<Tensor<1,dim> > > MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::unit_tangentials |
Unit tangential vectors. Used for the computation of boundary forms and normal vectors.
This vector has (dim-1)GeometryInfo::faces_per_cell entries. The first GeometryInfo::faces_per_cell contain the vectors in the first tangential direction for each face; the second set of GeometryInfo::faces_per_cell entries contain the vectors in the second tangential direction (only in 3d, since there we have 2 tangential directions per face), etc.
Filled once.
Definition at line 372 of file mapping_fe_field.h.
| unsigned int MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::n_shape_functions |
Number of shape functions. If this is a Q1 mapping, then it is simply the number of vertices per cell. However, since also derived classes use this class (e.g. the Mapping_Q() class), the number of shape functions may also be different.
Definition at line 380 of file mapping_fe_field.h.
| ComponentMask MappingFEField< dim, spacedim, VectorType, DoFHandlerType >::InternalData::mask |
Stores the mask given at construction time. If no mask was specified at construction time, then a default one is used, which makes this class works in the same way of MappingQEulerian(), i.e., the first spacedim components of the FiniteElement are used for the euler_vector and the euler_dh.
If a mask is specified, then it has to match the underlying FiniteElement, and it has to have exactly spacedim non-zero elements, indicating the components (in order) of the FiniteElement which will be used for the euler vector and the euler dof handler.
Definition at line 394 of file mapping_fe_field.h.
|
mutable |
Tensors of covariant transformation at each of the quadrature points. The matrix stored is the Jacobian * G^{-1}, where G = Jacobian^{t} * Jacobian, is the first fundamental form of the map; if dim=spacedim then it reduces to the transpose of the inverse of the Jacobian matrix, which itself is stored in the contravariant field of this structure.
Computed on each cell.
Definition at line 405 of file mapping_fe_field.h.
|
mutable |
Tensors of contravariant transformation at each of the quadrature points. The contravariant matrix is the Jacobian of the transformation, i.e.
.
Computed on each cell.
Definition at line 414 of file mapping_fe_field.h.
|
mutable |
The determinant of the Jacobian in each quadrature point. Filled if update_volume_elements.
Definition at line 420 of file mapping_fe_field.h.
|
mutable |
Auxiliary vectors for internal use.
Definition at line 425 of file mapping_fe_field.h.
|
mutable |
Storage for the indices of the local degrees of freedom.
Definition at line 430 of file mapping_fe_field.h.
|
mutable |
Storage for local degrees of freedom.
Definition at line 435 of file mapping_fe_field.h.
1.8.12