source: issm/branches/trunk-larour-NatGeoScience2016/src/c/classes/Elements/PentaRef.h

Last change on this file was 21759, checked in by Eric.Larour, 8 years ago

CHG: merged branch back to trunk-jpl 21754.

File size: 1.9 KB
RevLine 
[4882]1/*!\file: PentaRef.h
2 * \brief abstract class for handling Penta oriented routines, like nodal functions,
3 * strain rate generation, etc ...
4 */
5
6#ifndef _PENTAREF_H_
7#define _PENTAREF_H_
8
[16818]9class Gauss;
[4882]10class PentaRef{
11
12 public:
13 PentaRef();
14 ~PentaRef();
15
16 /*Numerics*/
[18925]17 void BasalNodeIndices(int* pnumindices,int** pindices,int finiteelement);
18 void GetInputDerivativeValue(IssmDouble* pvalues, IssmDouble* plist,IssmDouble* xyz_list, Gauss* gauss,int finiteelement);
19 void GetInputValue(IssmDouble* pvalue,IssmDouble* plist, Gauss* gauss,int finiteelement);
20 void GetJacobian(IssmDouble* J, IssmDouble* xyz_list,Gauss* gauss);
21 void GetJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss);
22 void GetJacobianInvert(IssmDouble* Jinv, IssmDouble* xyz_list,Gauss* gauss);
23 void GetLprimeFSSSA(IssmDouble* LprimeFSSSA, IssmDouble* xyz_list, Gauss* gauss);
[17225]24 void GetNodalFunctions(IssmDouble* basis, Gauss* gauss,int finiteelement);
[17874]25 void GetNodalFunctionsDerivatives(IssmDouble* dbasis,IssmDouble* xyz_list,Gauss* gauss,int finiteelement);
26 void GetNodalFunctionsDerivativesReference(IssmDouble* dbasis,Gauss* gauss,int finiteelement);
[16838]27 void GetQuadJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss);
[18925]28 void GetSegmentJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss);
[16818]29 void GetTriaJacobianDeterminant(IssmDouble* Jdet, IssmDouble* xyz_list,Gauss* gauss);
[21759]30 void VerticalSegmentIndicesBase(int** pindices,int* pnumseg,int finiteelement);
[20810]31 void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*do nothing */};
[17225]32 int NumberofNodes(int finiteelement);
[18078]33 int PressureInterpolation(int fe_stokes);
[18925]34 void SurfaceNodeIndices(int* pnumindices,int** pindices,int finiteelement);
[18078]35 int TensorInterpolation(int fe_stokes);
[18925]36 int VelocityInterpolation(int fe_stokes);
[4882]37};
38#endif
Note: See TracBrowser for help on using the repository browser.