Changeset 5744
- Timestamp:
- 09/10/10 10:21:17 (15 years ago)
- Location:
- issm/trunk/src/c/shared/Numerics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/shared/Numerics/GaussPoints.cpp
r5624 r5744 1729 1729 1730 1730 }/*}}}1*/ 1731 /*FUNCTION gaussSegment{{{1*/1732 void gaussSegment(double** psegment_coord,double** pgauss_weights,int num_gauss){1733 /* gaussSegment*/1734 1735 GaussLegendreLinear(psegment_coord,pgauss_weights,num_gauss);1736 }/*}}}1*/ -
issm/trunk/src/c/shared/Numerics/GaussPoints.h
r5624 r5744 6 6 #define _GAUSSPOINTS_H 7 7 8 #define 8 #define MAX_LINE_GAUS_PTS 4 9 9 void GaussLegendreLinear( double** pxgaus, double** pxwgt, int ngaus ); 10 #define 10 #define MAX_TRIA_SYM_ORD 20 11 11 void GaussLegendreTria( int* pngaus, double** pl1, double** pl2, double** pl3, double** pwgt, int iord ); 12 #define 12 #define MAX_TETRA_SYM_ORD 6 13 13 void GaussLegendreTetra( int* pngaus, double** pl1, double** pl2, double** pl3, double** pl4, double** pwgt, int iord ); 14 #define 14 #define MAX_LINE_GLOB_PTS 5 15 15 void GaussLobatto( double** pxgaus, double** pxwgt, int ngaus ); 16 16 #define MAX_GAUS_ITER 30 … … 20 20 void gaussHexa( double** pxgaus, double** pxwgt, double** pegaus, double** pewgt, double** pzgaus, double** pzwgt, int nigaus, int njgaus, int nkgaus ); 21 21 void gaussPenta( int* pngaus, double** pl1, double** pl2, double** pl3, double** pwgt, double** pzgaus, double** pzwgt, int iord, int nkgaus ); 22 void gaussSegment(double** psegment_coord,double** pgauss_weights,int num_gauss);23 22 24 23 #endif
Note:
See TracChangeset
for help on using the changeset viewer.