libMesh
Loading...
Searching...
No Matches
number_lookups.h
Go to the documentation of this file.
1// The libMesh Finite Element Library.
2// Copyright (C) 2002-2026 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#ifndef LIBMESH_NUMBER_LOOKUPS_H
20#define LIBMESH_NUMBER_LOOKUPS_H
21
22namespace libMesh
23{
24
25// Lookup tables for hierarchic numbering of basis functions
26extern const unsigned char triangular_number_row[];
27extern const unsigned char triangular_number_column[];
28extern const unsigned char square_number_row[];
29extern const unsigned char square_number_column[];
30extern const unsigned char cube_number_row[];
31extern const unsigned char cube_number_column[];
32extern const unsigned char cube_number_page[];
33extern const unsigned char tetrahedral_number_row[];
34extern const unsigned char tetrahedral_number_column[];
35extern const unsigned char tetrahedral_number_page[];
36extern const unsigned char prism_number_triangle[];
37extern const unsigned char prism_number_page[];
38
39} // namespace libMesh
40
41#endif // LIBMESH_NUMBER_LOOKUPS_H
The libMesh namespace provides an interface to certain functionality in the library.
const unsigned char tetrahedral_number_column[]
const unsigned char tetrahedral_number_row[]
const unsigned char prism_number_triangle[]
const unsigned char prism_number_page[]
const unsigned char triangular_number_row[]
const unsigned char cube_number_row[]
const unsigned char cube_number_page[]
const unsigned char cube_number_column[]
const unsigned char square_number_row[]
const unsigned char square_number_column[]
const unsigned char triangular_number_column[]
const unsigned char tetrahedral_number_page[]