FEI Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ElemBlock.hpp
Go to the documentation of this file.
1 #ifndef _ElemBlock_h_
2 #define _ElemBlock_h_
3 
4 /*--------------------------------------------------------------------*/
5 /* Copyright 2005 Sandia Corporation. */
6 /* Under the terms of Contract DE-AC04-94AL85000, there is a */
7 /* non-exclusive license for use of this work by or on behalf */
8 /* of the U.S. Government. Export of this program may require */
9 /* a license from the United States Government. */
10 /*--------------------------------------------------------------------*/
11 
12 class ElemBlock {
13  public:
14  ElemBlock();
15  ~ElemBlock();
16 
26  double*** elemStiff_;
27  double** elemLoad_;
32 
33  private:
34  void deleteMemory();
35 };
36 
37 #endif
38 
int numStiffRows_
Definition: ElemBlock.hpp:24
GlobalID ** elemConn_
Definition: ElemBlock.hpp:23
int elemFormat_
Definition: ElemBlock.hpp:25
int GlobalID
Definition: fei_defs.h:60
int numElements_
Definition: ElemBlock.hpp:18
int ** nodalFieldIDs_
Definition: ElemBlock.hpp:21
void deleteMemory()
Definition: ElemBlock.cpp:40
int numNodesPerElement_
Definition: ElemBlock.hpp:19
GlobalID blockID_
Definition: ElemBlock.hpp:17
int * elemDOFFieldIDs_
Definition: ElemBlock.hpp:29
double *** elemStiff_
Definition: ElemBlock.hpp:26
int numElemDOF_
Definition: ElemBlock.hpp:28
int lumpingStrategy_
Definition: ElemBlock.hpp:31
GlobalID * elemIDs_
Definition: ElemBlock.hpp:22
int * numFieldsPerNode_
Definition: ElemBlock.hpp:20
int interleaveStrategy_
Definition: ElemBlock.hpp:30
double ** elemLoad_
Definition: ElemBlock.hpp:27