FEI Package Browser (Single Doxygen Collection)  Version of the Day
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 
ElemBlock::numElemDOF_
int numElemDOF_
Definition: ElemBlock.hpp:28
ElemBlock::elemStiff_
double *** elemStiff_
Definition: ElemBlock.hpp:26
ElemBlock::elemFormat_
int elemFormat_
Definition: ElemBlock.hpp:25
ElemBlock::interleaveStrategy_
int interleaveStrategy_
Definition: ElemBlock.hpp:30
ElemBlock::numElements_
int numElements_
Definition: ElemBlock.hpp:18
ElemBlock::numStiffRows_
int numStiffRows_
Definition: ElemBlock.hpp:24
ElemBlock::nodalFieldIDs_
int ** nodalFieldIDs_
Definition: ElemBlock.hpp:21
ElemBlock::elemDOFFieldIDs_
int * elemDOFFieldIDs_
Definition: ElemBlock.hpp:29
ElemBlock::~ElemBlock
~ElemBlock()
Definition: ElemBlock.cpp:35
ElemBlock::ElemBlock
ElemBlock()
Definition: ElemBlock.cpp:15
ElemBlock::blockID_
GlobalID blockID_
Definition: ElemBlock.hpp:17
ElemBlock::deleteMemory
void deleteMemory()
Definition: ElemBlock.cpp:40
ElemBlock
Definition: ElemBlock.hpp:12
GlobalID
int GlobalID
Definition: fei_defs.h:60
ElemBlock::elemIDs_
GlobalID * elemIDs_
Definition: ElemBlock.hpp:22
ElemBlock::lumpingStrategy_
int lumpingStrategy_
Definition: ElemBlock.hpp:31
ElemBlock::elemConn_
GlobalID ** elemConn_
Definition: ElemBlock.hpp:23
ElemBlock::numNodesPerElement_
int numNodesPerElement_
Definition: ElemBlock.hpp:19
ElemBlock::numFieldsPerNode_
int * numFieldsPerNode_
Definition: ElemBlock.hpp:20
ElemBlock::elemLoad_
double ** elemLoad_
Definition: ElemBlock.hpp:27