|
template<int dim, typename TYPE > |
void | fill_data (const FEValuesBase< dim > &fe_values, const FEVector &fe_vector, const std::vector< unsigned int > &local_dof_indices, unsigned int first_index, unsigned int n_indices, std::vector< std::vector< TYPE > > &result) |
| Helper functions computing the desired data in each quadrature point of a mesh entity by calling FEValuesBase::get_function_values(), FEValuesBase::get_function_grads(), and FEValuesBase::get_function_hessians().
|
|
template<int dim> |
void | fill_data (const FEValuesBase< dim > &fe_values, const FEVector &fe_vector, const std::vector< unsigned int > &local_dof_indices, unsigned int first_index, unsigned int n_indices, std::vector< std::vector< double > > &result) |
|
template<int dim> |
void | fill_data (const FEValuesBase< dim > &fe_values, const FEVector &fe_vector, const std::vector< unsigned int > &local_dof_indices, unsigned int first_index, unsigned int n_indices, std::vector< std::vector< Tensor< 1, dim > > > &result) |
|
template<int dim> |
void | fill_data (const FEValuesBase< dim > &fe_values, const FEVector &fe_vector, const std::vector< unsigned int > &local_dof_indices, unsigned int first_index, unsigned int n_indices, std::vector< std::vector< Tensor< 2, dim > > > &result) |
|
template<int dim, typename TYPE >
void MeshWorker::InfoObjects::fill_data |
( |
const FEValuesBase< dim > & |
fe_values, |
|
|
const FEVector & |
fe_vector, |
|
|
const std::vector< unsigned int > & |
local_dof_indices, |
|
|
unsigned int |
first_index, |
|
|
unsigned int |
n_indices, |
|
|
std::vector< std::vector< TYPE > > & |
result |
|
) |
| |
|
inline |
Helper functions computing the desired data in each quadrature point of a mesh entity by calling FEValuesBase::get_function_values(), FEValuesBase::get_function_grads(), and FEValuesBase::get_function_hessians().
- Parameters
-
fe_values,: | The FEValues object. |
fe_vector,: | The global finite element function in the form of a global node FEVector. |
local_dof_indices,: | The local DoF indices associated with the current mesh entity. |
first_index,: | The first index in local_dof_indices to be used. |
n_indices,: | The number of indices in local_dof_indices to be used. |
result,: | The result. The access to ith component in qth quadrature point is result[i][q]. |
Referenced by MeshWorker::InfoObjects::IntegrationInfo< dim, FEVALUESBASE >::fill_local_data().