Reference documentation for deal.II version 8.4.2
fe_q.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2000 - 2015 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_h
17 #define dealii__fe_q_h
18 
19 #include <deal.II/base/config.h>
20 #include <deal.II/base/tensor_product_polynomials.h>
21 #include <deal.II/fe/fe_q_base.h>
22 
23 DEAL_II_NAMESPACE_OPEN
24 
25 
28 
521 template <int dim, int spacedim=dim>
522 class FE_Q : public FE_Q_Base<TensorProductPolynomials<dim>,dim,spacedim>
523 {
524 public:
528  FE_Q (const unsigned int p);
529 
540  FE_Q (const Quadrature<1> &points);
541 
547  FE_Q(const unsigned int subdivisions_per_dimension,
548  const unsigned int base_degree);
549 
555  virtual std::string get_name () const;
556 
557 protected:
558 
564  virtual FiniteElement<dim,spacedim> *clone() const;
565 };
566 
567 
568 
571 DEAL_II_NAMESPACE_CLOSE
572 
573 #endif
FE_Q(const unsigned int p)
Definition: fe_q.cc:28
virtual FiniteElement< dim, spacedim > * clone() const
Definition: fe_q.cc:128
Definition: fe_q.h:522
virtual std::string get_name() const
Definition: fe_q.cc:74