NiHu  2.0
lib_element.cpp
Go to the documentation of this file.
1 // This file is a part of NiHu, a C++ BEM template library.
2 //
3 // Copyright (C) 2012-2014 Peter Fiala <fiala@hit.bme.hu>
4 // Copyright (C) 2012-2014 Peter Rucz <rucz@hit.bme.hu>
5 //
6 // This program is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 
24 #include "lib_element.hpp"
25 
26 namespace NiHu
27 {
28 
29 namespace element_traits
30 {
31  template <>
32  const std::string name<line_1_elem>::value = "Line 1 elem";
33  template <>
34  const std::string name<line_2_elem>::value = "Line 2 elem";
35  template <>
36  const std::string name<tria_1_elem>::value = "Tria 1 elem";
37  template <>
38  const std::string name<tria_1_volume_elem>::value = "Tria 1 volume elem";
39  template <>
40  const std::string name<tria_2_elem>::value = "Tria 2 elem";
41  template <>
42  const std::string name<quad_1_elem>::value = "Quad 1 elem";
43  template <>
44  const std::string name<quad_1_volume_elem>::value = "Quad 1 volume elem";
45  template <>
46  const std::string name<quad_2_elem>::value = "Quad 2 elem";
47  template <>
48  const std::string name<quad_28_elem>::value = "Quad 28 elem";
49 }
50 
51 }
52 
53 
lib_element.hpp