libMesh
fe_szabab_shape_3D.C
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2019 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 // Local includes
21 #include "libmesh/libmesh_config.h"
22 
23 #ifdef LIBMESH_ENABLE_HIGHER_ORDER_SHAPES
24 
25 #include "libmesh/fe.h"
26 
27 namespace libMesh
28 {
29 
30 
31 template <>
33  const Order,
34  const unsigned int,
35  const Point &)
36 {
37  libmesh_error_msg("Szabo-Babuska polynomials are not defined in 3D");
38  return 0.;
39 }
40 
41 
42 
43 template <>
45  const Order,
46  const unsigned int,
47  const Point &,
48  const bool)
49 {
50  libmesh_error_msg("Szabo-Babuska polynomials are not defined in 3D");
51  return 0.;
52 }
53 
54 
55 template <>
57  const Order,
58  const unsigned int,
59  const unsigned int,
60  const Point &)
61 {
62  libmesh_error_msg("Szabo-Babuska polynomials are not defined in 3D");
63  return 0.;
64 }
65 
66 
67 
68 template <>
70  const Order,
71  const unsigned int,
72  const unsigned int,
73  const Point &,
74  const bool)
75 {
76  libmesh_error_msg("Szabo-Babuska polynomials are not defined in 3D");
77  return 0.;
78 }
79 
80 
81 #ifdef LIBMESH_ENABLE_SECOND_DERIVATIVES
82 
83 template <>
85  const Order,
86  const unsigned int,
87  const unsigned int,
88  const Point &)
89 {
90  libmesh_error_msg("Szabo-Babuska polynomials are not defined in 3D");
91  return 0.;
92 }
93 
94 
95 
96 template <>
98  const Order,
99  const unsigned int,
100  const unsigned int,
101  const Point &,
102  const bool)
103 {
104  libmesh_error_msg("Szabo-Babuska polynomials are not defined in 3D");
105  return 0.;
106 }
107 
108 #endif
109 
110 } // namespace libMesh
111 
112 #endif //LIBMESH_ENABLE_HIGHER_ORDER_SHAPES
libMesh::FE::shape_second_deriv
static OutputShape shape_second_deriv(const ElemType t, const Order o, const unsigned int i, const unsigned int j, const Point &p)
libMesh
The libMesh namespace provides an interface to certain functionality in the library.
Definition: factoryfunction.C:55
libMesh::Order
Order
Definition: enum_order.h:40
libMesh::FE::shape
static OutputShape shape(const ElemType t, const Order o, const unsigned int i, const Point &p)
libMesh::FE::shape_deriv
static OutputShape shape_deriv(const ElemType t, const Order o, const unsigned int i, const unsigned int j, const Point &p)
libMesh::Point
A Point defines a location in LIBMESH_DIM dimensional Real space.
Definition: point.h:38
libMesh::Elem
This is the base class from which all geometric element types are derived.
Definition: elem.h:100
libMesh::Real
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Definition: libmesh_common.h:121
libMesh::ElemType
ElemType
Defines an enum for geometric element types.
Definition: enum_elem_type.h:33