Reference documentation for deal.II version 8.5.1
fe_q_iso_q1.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2000 - 2016 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 
106 template <int dim, int spacedim=dim>
107 class FE_Q_iso_Q1 : public FE_Q_Base<TensorProductPolynomials<dim, Polynomials::PiecewisePolynomial<double> >,dim,spacedim>
108 {
109 public:
115  FE_Q_iso_Q1(const unsigned int n_subdivisions);
116 
122  virtual std::string get_name () const;
123 
138  virtual
142 
143 protected:
144 
150  virtual FiniteElement<dim,spacedim> *clone() const;
151 };
152 
153 
154 
157 DEAL_II_NAMESPACE_CLOSE
158 
159 #endif
virtual FiniteElement< dim, spacedim > * clone() const
Definition: fe_q_iso_q1.cc:72
FE_Q_iso_Q1(const unsigned int n_subdivisions)
Definition: fe_q_iso_q1.cc:31
virtual std::string get_name() const
Definition: fe_q_iso_q1.cc:55
virtual FiniteElementDomination::Domination compare_for_face_domination(const FiniteElement< dim, spacedim > &fe_other) const
Definition: fe_q_iso_q1.cc:82