Ice Sheet System Model  4.18
Code documentation
GaussPoints.h
Go to the documentation of this file.
1 
5 #include "../../shared/Numerics/types.h"
6 #ifndef _GAUSSPOINTS_H
7 #define _GAUSSPOINTS_H
8 
9 #define MAX_LINE_GAUS_PTS 7
10 void GaussLegendreLinear(IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus);
11 #define MAX_TRIA_SYM_ORD 20
12 void GaussLegendreTria(int* pngaus, IssmDouble** pl1, IssmDouble** pl2, IssmDouble** pl3, IssmDouble** pwgt, int iord);
13 #define MAX_TETRA_SYM_ORD 6
14 void GaussLegendreTetra(int* pngaus, IssmDouble** pl1, IssmDouble** pl2, IssmDouble** pl3, IssmDouble** pl4, IssmDouble** pwgt, int iord);
15 #define MAX_LINE_GLOB_PTS 5
16 void GaussLobatto(IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus);
17 #define MAX_GAUS_ITER 30
18 void GaussRecur(IssmPDouble* zero, IssmPDouble* weight, int n, IssmPDouble* alpha, IssmPDouble* beta);
19 
20 #endif
IssmDouble
double IssmDouble
Definition: types.h:37
GaussRecur
void GaussRecur(IssmPDouble *zero, IssmPDouble *weight, int n, IssmPDouble *alpha, IssmPDouble *beta)
Definition: GaussPoints.cpp:1577
GaussLegendreLinear
void GaussLegendreLinear(IssmPDouble **pxgaus, IssmPDouble **pxwgt, int ngaus)
Definition: GaussPoints.cpp:11
GaussLegendreTetra
void GaussLegendreTetra(int *pngaus, IssmDouble **pl1, IssmDouble **pl2, IssmDouble **pl3, IssmDouble **pl4, IssmDouble **pwgt, int iord)
Definition: GaussPoints.cpp:1212
alpha
IssmDouble alpha(IssmDouble x, IssmDouble y, IssmDouble z, int testid)
Definition: fsanalyticals.cpp:221
IssmPDouble
IssmDouble IssmPDouble
Definition: types.h:38
GaussLobatto
void GaussLobatto(IssmPDouble **pxgaus, IssmPDouble **pxwgt, int ngaus)
Definition: GaussPoints.cpp:1475
GaussLegendreTria
void GaussLegendreTria(int *pngaus, IssmDouble **pl1, IssmDouble **pl2, IssmDouble **pl3, IssmDouble **pwgt, int iord)
Definition: GaussPoints.cpp:95