MFEM  v3.3.2
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
hexahedron.cpp
Go to the documentation of this file.
1 // Copyright (c) 2010, Lawrence Livermore National Security, LLC. Produced at
2 // the Lawrence Livermore National Laboratory. LLNL-CODE-443211. All Rights
3 // reserved. See file COPYRIGHT for details.
4 //
5 // This file is part of the MFEM library. For more information and source code
6 // availability see http://mfem.org.
7 //
8 // MFEM is free software; you can redistribute it and/or modify it under the
9 // terms of the GNU Lesser General Public License (as published by the Free
10 // Software Foundation) version 2.1 dated February 1999.
11 
12 
13 #include "mesh_headers.hpp"
14 
15 namespace mfem
16 {
17 
18 Hexahedron::Hexahedron(const int *ind, int attr)
19  : Element(Geometry::CUBE)
20 {
21  attribute = attr;
22  for (int i = 0; i < 8; i++)
23  {
24  indices[i] = ind[i];
25  }
26 }
27 
28 Hexahedron::Hexahedron(int ind1, int ind2, int ind3, int ind4,
29  int ind5, int ind6, int ind7, int ind8,
30  int attr) : Element(Geometry::CUBE)
31 {
32  attribute = attr;
33  indices[0] = ind1;
34  indices[1] = ind2;
35  indices[2] = ind3;
36  indices[3] = ind4;
37  indices[4] = ind5;
38  indices[5] = ind6;
39  indices[6] = ind7;
40  indices[7] = ind8;
41 }
42 
44 {
45  v.SetSize(8);
46  for (int i = 0; i < 8; i++)
47  {
48  v[i] = indices[i];
49  }
50 }
51 
53 
54 }
TriLinear3DFiniteElement HexahedronFE
Definition: hexahedron.cpp:52
virtual int * GetVertices()
Definition: hexahedron.hpp:45
int attribute
Element&#39;s attribute (specifying material property, etc).
Definition: element.hpp:32
Class for tri-linear FE on cube.
Definition: fe.hpp:838
void SetSize(int nsize)
Change logical size of the array, keep existing entries.
Definition: array.hpp:503
Abstract data type element.
Definition: element.hpp:27