Reference documentation for deal.II version 9.0.0
fe_q.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_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  virtual std::string get_name () const;
580 
581  virtual
582  std::unique_ptr<FiniteElement<dim,spacedim> >
583  clone() const;
584 
592  virtual
593  void
594  convert_generalized_support_point_values_to_dof_values (const std::vector<Vector<double> > &support_point_values,
595  std::vector<double> &nodal_values) const;
596 };
597 
598 
599 
602 DEAL_II_NAMESPACE_CLOSE
603 
604 #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.cc:146
FE_Q(const unsigned int p)
Definition: fe_q.cc:53
Definition: fe_q.h:552
virtual std::unique_ptr< FiniteElement< dim, spacedim > > clone() const
Definition: fe_q.cc:168
virtual std::string get_name() const
Definition: fe_q.cc:84