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