Reference documentation for deal.II version 9.1.0-pre
fe_q_iso_q1.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2000 - 2017 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_fe_q_iso_q1_h
17 #define dealii_fe_q_iso_q1_h
18 
19 #include <deal.II/base/config.h>
20 
21 #include <deal.II/base/polynomials_piecewise.h>
22 #include <deal.II/base/tensor_product_polynomials.h>
23 
24 #include <deal.II/fe/fe_q_base.h>
25 
26 DEAL_II_NAMESPACE_OPEN
27 
28 
31 
112 template <int dim, int spacedim = dim>
114  : public FE_Q_Base<
115  TensorProductPolynomials<dim, Polynomials::PiecewisePolynomial<double>>,
116  dim,
117  spacedim>
118 {
119 public:
125  FE_Q_iso_Q1(const unsigned int n_subdivisions);
126 
132  virtual std::string
133  get_name() const override;
134 
135  virtual std::unique_ptr<FiniteElement<dim, spacedim>>
136  clone() const override;
137 
145  virtual void
147  const std::vector<Vector<double>> &support_point_values,
148  std::vector<double> & nodal_values) const override;
149 
166  const FiniteElement<dim, spacedim> &fe_other) const override;
168 };
169 
170 
171 
174 DEAL_II_NAMESPACE_CLOSE
175 
176 #endif
virtual void convert_generalized_support_point_values_to_dof_values(const std::vector< Vector< double >> &support_point_values, std::vector< double > &nodal_values) const override
Definition: fe_q_iso_q1.cc:79
virtual FiniteElementDomination::Domination compare_for_face_domination(const FiniteElement< dim, spacedim > &fe_other) const override
Definition: fe_q_iso_q1.cc:109
virtual std::string get_name() const override
Definition: fe_q_iso_q1.cc:62
virtual std::unique_ptr< FiniteElement< dim, spacedim > > clone() const override
Definition: fe_q_iso_q1.cc:100
FE_Q_iso_Q1(const unsigned int n_subdivisions)
Definition: fe_q_iso_q1.cc:33