Reference documentation for deal.II version 8.5.1
fe_q.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_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 
551 template <int dim, int spacedim=dim>
552 class FE_Q : public FE_Q_Base<TensorProductPolynomials<dim>,dim,spacedim>
553 {
554 public:
560  FE_Q (const unsigned int p);
561 
572  FE_Q (const Quadrature<1> &points);
573 
579  FE_Q(const unsigned int subdivisions_per_dimension,
580  const unsigned int base_degree);
581 
587  virtual std::string get_name () const;
588 
589 protected:
590 
596  virtual FiniteElement<dim,spacedim> *clone() const;
597 };
598 
599 
600 
603 DEAL_II_NAMESPACE_CLOSE
604 
605 #endif
FE_Q(const unsigned int p)
Definition: fe_q.cc:45
virtual FiniteElement< dim, spacedim > * clone() const
Definition: fe_q.cc:137
Definition: fe_q.h:552
virtual std::string get_name() const
Definition: fe_q.cc:76