Ice Sheet System Model  4.18
Code documentation
ElementVector.h
Go to the documentation of this file.
1 
8 #ifndef _ELEMENT_VECTOR_H_
9 #define _ELEMENT_VECTOR_H_
10 
11 /*Headers:*/
12 #include "../../datastructures/datastructures.h"
13 #include "../../toolkits/toolkits.h"
14 #include "../../shared/shared.h"
15 class Node;
16 template <class doubletype> class Vector;
17 class Parameters;
18 class ElementMatrix;
19 
21 
22  public:
23  int nrows;
25 
26  //gset
28 
29  //fset
30  int fsize;
33 
34  /*ElementVector constructors, destructors*/
35  ElementVector();
38  ElementVector(Node** nodes,int numnodes,Parameters* parameters,int approximation=NoneApproximationEnum);
40 
41  /*ElementVector specific routines*/
43  void CheckConsistency(void);
44  void Echo(void);
45  void Init(ElementVector* pe);
47  void SetValue(IssmDouble scalar);
48  void StaticCondensation(ElementMatrix* Ke,int numindices,int* indices);
49 };
50 #endif //#ifndef _ELEMENT_VECTOR_H_
ElementVector::StaticCondensation
void StaticCondensation(ElementMatrix *Ke, int numindices, int *indices)
Definition: ElementVector.cpp:266
IssmDouble
double IssmDouble
Definition: types.h:37
ElementVector::Echo
void Echo(void)
Definition: ElementVector.cpp:189
Parameters
Declaration of Parameters class.
Definition: Parameters.h:18
ElementVector::~ElementVector
~ElementVector()
Definition: ElementVector.cpp:145
ElementVector::nrows
int nrows
Definition: ElementVector.h:23
ElementVector::values
IssmDouble * values
Definition: ElementVector.h:24
ElementVector::fglobaldoflist
int * fglobaldoflist
Definition: ElementVector.h:32
ElementVector::InsertIntoGlobal
void InsertIntoGlobal(Vector< IssmDouble > *pf)
Definition: ElementVector.cpp:238
NoneApproximationEnum
@ NoneApproximationEnum
Definition: EnumDefinitions.h:1201
ElementVector::gglobaldoflist
int * gglobaldoflist
Definition: ElementVector.h:27
ElementVector::flocaldoflist
int * flocaldoflist
Definition: ElementVector.h:31
ElementVector::Init
void Init(ElementVector *pe)
Definition: ElementVector.cpp:213
ElementVector::fsize
int fsize
Definition: ElementVector.h:30
ElementVector::CheckConsistency
void CheckConsistency(void)
Definition: ElementVector.cpp:178
Node
Definition: Node.h:23
ElementVector::AddToGlobal
void AddToGlobal(Vector< IssmDouble > *pf)
Definition: ElementVector.cpp:155
ElementVector
Definition: ElementVector.h:20
ElementVector::ElementVector
ElementVector()
Definition: ElementVector.cpp:20
ElementVector::SetValue
void SetValue(IssmDouble scalar)
Definition: ElementVector.cpp:258
ElementMatrix
Definition: ElementMatrix.h:19
Vector
Definition: Vector.h:25