Reference documentation for deal.II version 9.0.0
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 at
12 // the top level of the deal.II distribution.
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 #include <deal.II/base/tensor_product_polynomials.h>
21 #include <deal.II/base/polynomials_piecewise.h>
22 #include <deal.II/fe/fe_q_base.h>
23 
24 DEAL_II_NAMESPACE_OPEN
25 
26 
29 
110 template <int dim, int spacedim=dim>
111 class FE_Q_iso_Q1 : public FE_Q_Base<TensorProductPolynomials<dim, Polynomials::PiecewisePolynomial<double> >,dim,spacedim>
112 {
113 public:
119  FE_Q_iso_Q1(const unsigned int n_subdivisions);
120 
126  virtual std::string get_name () const;
127 
128  virtual
129  std::unique_ptr<FiniteElement<dim,spacedim> >
130  clone() const;
131 
139  virtual
140  void
141  convert_generalized_support_point_values_to_dof_values (const std::vector<Vector<double> > &support_point_values,
142  std::vector<double> &nodal_values) const;
143 
158  virtual
162 };
163 
164 
165 
168 DEAL_II_NAMESPACE_CLOSE
169 
170 #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
Definition: fe_q_iso_q1.cc:75
virtual std::unique_ptr< FiniteElement< dim, spacedim > > clone() const
Definition: fe_q_iso_q1.cc:97
FE_Q_iso_Q1(const unsigned int n_subdivisions)
Definition: fe_q_iso_q1.cc:33
virtual std::string get_name() const
Definition: fe_q_iso_q1.cc:57
virtual FiniteElementDomination::Domination compare_for_face_domination(const FiniteElement< dim, spacedim > &fe_other) const
Definition: fe_q_iso_q1.cc:107