Ice Sheet System Model  4.18
Code documentation
TetraRef.h
Go to the documentation of this file.
1 
7 #ifndef _TETRAREF_H_
8 #define _TETRAREF_H_
9 
10 class GaussTetra;
11 
12 class TetraRef{
13 
14  public:
15  TetraRef();
16  ~TetraRef();
17 
18  void GetInputDerivativeValue(IssmDouble* p, IssmDouble* plist,IssmDouble* xyz_list, GaussTetra* gauss,int finiteelement);
19  void GetInputValue(IssmDouble* p, IssmDouble* plist, Gauss* gauss,int finiteelement);
20  void GetJacobian(IssmDouble* J, IssmDouble* xyz_list,GaussTetra* gauss);
21  void GetJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,GaussTetra* gauss);
22  void GetJacobianDeterminantFace(IssmDouble* Jdet, IssmDouble* xyz_list,GaussTetra* gauss);
23  void GetJacobianInvert(IssmDouble* Jinv, IssmDouble* xyz_list,GaussTetra* gauss);
24  void GetNodalFunctions(IssmDouble* basis,Gauss* gauss_in,int finiteelement);
25  void GetNodalFunctionsDerivatives(IssmDouble* dbasis,IssmDouble* xyz_list, GaussTetra* gauss,int finiteelement);
26  void GetNodalFunctionsDerivativesReference(IssmDouble* dbasis,GaussTetra* gauss,int finiteelement);
27  void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*do nothing */};
28  int NumberofNodes(int finiteelement);
29  int PressureInterpolation(int fe_stokes);
30  int TensorInterpolation(int fe_stokes);
31  int VelocityInterpolation(int fe_stokes);
32 };
33 #endif
GaussTetra
Definition: GaussTetra.h:12
IssmDouble
double IssmDouble
Definition: types.h:37
TetraRef::GetInputValue
void GetInputValue(IssmDouble *p, IssmDouble *plist, Gauss *gauss, int finiteelement)
Definition: TetraRef.cpp:71
TetraRef::VelocityInterpolation
int VelocityInterpolation(int fe_stokes)
Definition: TetraRef.cpp:391
TetraRef::GetJacobianDeterminant
void GetJacobianDeterminant(IssmDouble *Jdet, IssmDouble *xyz_list, GaussTetra *gauss)
Definition: TetraRef.cpp:125
TetraRef::TensorInterpolation
int TensorInterpolation(int fe_stokes)
Definition: TetraRef.cpp:382
TetraRef
Definition: TetraRef.h:12
TetraRef::GetJacobianDeterminantFace
void GetJacobianDeterminantFace(IssmDouble *Jdet, IssmDouble *xyz_list, GaussTetra *gauss)
Definition: TetraRef.cpp:139
TetraRef::GetNodalFunctionsDerivativesReference
void GetNodalFunctionsDerivativesReference(IssmDouble *dbasis, GaussTetra *gauss, int finiteelement)
Definition: TetraRef.cpp:247
TetraRef::NumberofNodes
int NumberofNodes(int finiteelement)
Definition: TetraRef.cpp:345
TetraRef::GetInputDerivativeValue
void GetInputDerivativeValue(IssmDouble *p, IssmDouble *plist, IssmDouble *xyz_list, GaussTetra *gauss, int finiteelement)
Definition: TetraRef.cpp:33
TetraRef::TetraRef
TetraRef()
Definition: TetraRef.cpp:25
TetraRef::GetJacobianInvert
void GetJacobianInvert(IssmDouble *Jinv, IssmDouble *xyz_list, GaussTetra *gauss)
Definition: TetraRef.cpp:158
TetraRef::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: TetraRef.h:27
TetraRef::GetNodalFunctionsDerivatives
void GetNodalFunctionsDerivatives(IssmDouble *dbasis, IssmDouble *xyz_list, GaussTetra *gauss, int finiteelement)
Definition: TetraRef.cpp:217
TetraRef::PressureInterpolation
int PressureInterpolation(int fe_stokes)
Definition: TetraRef.cpp:367
TetraRef::GetNodalFunctions
void GetNodalFunctions(IssmDouble *basis, Gauss *gauss_in, int finiteelement)
Definition: TetraRef.cpp:170
TetraRef::~TetraRef
~TetraRef()
Definition: TetraRef.cpp:28
Gauss
Definition: Gauss.h:8
TetraRef::GetJacobian
void GetJacobian(IssmDouble *J, IssmDouble *xyz_list, GaussTetra *gauss)
Definition: TetraRef.cpp:93