Ice Sheet System Model  4.18
Code documentation
SegRef.h
Go to the documentation of this file.
1 
7 #ifndef _SEGREF_H_
8 #define _SEGREF_H_
9 
10 class GaussSeg;
11 
12 class SegRef{
13 
14  public:
15  SegRef();
16  ~SegRef();
17 
18  void GetInputDerivativeValue(IssmDouble* p, IssmDouble* plist,IssmDouble* xyz_list, GaussSeg* gauss,int finiteelement);
19  void GetInputValue(IssmDouble* p, IssmDouble* plist, GaussSeg* gauss,int finiteelement);
20  void GetJacobian(IssmDouble* J, IssmDouble* xyz_list,GaussSeg* gauss);
21  void GetJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,GaussSeg* gauss);
22  void GetJacobianInvert(IssmDouble* Jinv, IssmDouble* xyz_list,GaussSeg* gauss);
23  void GetNodalFunctions(IssmDouble* basis,GaussSeg* gauss,int finiteelement);
24  void GetNodalFunctionsDerivatives(IssmDouble* dbasis,IssmDouble* xyz_list, GaussSeg* gauss,int finiteelement);
25  void GetNodalFunctionsDerivativesReference(IssmDouble* dbasis,GaussSeg* gauss,int finiteelement);
26  void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*do nothing */};
27  int NumberofNodes(int finiteelement);
28 };
29 #endif
IssmDouble
double IssmDouble
Definition: types.h:37
SegRef
Definition: SegRef.h:12
SegRef::GetInputValue
void GetInputValue(IssmDouble *p, IssmDouble *plist, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:61
SegRef::GetNodalFunctionsDerivatives
void GetNodalFunctionsDerivatives(IssmDouble *dbasis, IssmDouble *xyz_list, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:138
SegRef::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: SegRef.h:26
SegRef::SegRef
SegRef()
Definition: SegRef.cpp:23
SegRef::~SegRef
~SegRef()
Definition: SegRef.cpp:26
SegRef::GetNodalFunctionsDerivativesReference
void GetNodalFunctionsDerivativesReference(IssmDouble *dbasis, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:162
SegRef::GetJacobianDeterminant
void GetJacobianDeterminant(IssmDouble *Jdet, IssmDouble *xyz_list, GaussSeg *gauss)
Definition: SegRef.cpp:93
SegRef::GetInputDerivativeValue
void GetInputDerivativeValue(IssmDouble *p, IssmDouble *plist, IssmDouble *xyz_list, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:31
SegRef::NumberofNodes
int NumberofNodes(int finiteelement)
Definition: SegRef.cpp:191
SegRef::GetJacobian
void GetJacobian(IssmDouble *J, IssmDouble *xyz_list, GaussSeg *gauss)
Definition: SegRef.cpp:83
SegRef::GetJacobianInvert
void GetJacobianInvert(IssmDouble *Jinv, IssmDouble *xyz_list, GaussSeg *gauss)
Definition: SegRef.cpp:103
SegRef::GetNodalFunctions
void GetNodalFunctions(IssmDouble *basis, GaussSeg *gauss, int finiteelement)
Definition: SegRef.cpp:115
GaussSeg
Definition: GaussSeg.h:12