Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor improvement to the documentation of FE_PolyTensor. #13889

Merged
merged 1 commit into from
Jun 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions include/deal.II/fe/fe_poly_tensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -519,15 +519,17 @@ class FE_PolyTensor : public FiniteElement<dim, spacedim>
const std::unique_ptr<const TensorPolynomialsBase<dim>> poly_space;

/**
* The inverse of the matrix <i>a<sub>ij</sub></i> of node values
* The inverse of the matrix <i>a<sub>ij</sub></i> of node functionals
* <i>N<sub>i</sub></i> applied to polynomial <i>p<sub>j</sub></i>. This
* matrix is used to convert polynomials in the "raw" basis provided in
* #poly_space to the basis dual to the node functionals on the reference
* cell.
*
* This object is not filled by FE_PolyTensor, but is a chance for a derived
* class to allow for reorganization of the basis functions. If it is left
* empty, the basis in #poly_space is used.
* empty, the basis in #poly_space is used, i.e., it is assumed that
* #poly_space already satisfies the Kronecker delta property with
* regard to the node functionals.
*/
FullMatrix<double> inverse_node_matrix;

Expand Down