00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef THICKNESSINTG_H
00014 #define THICKNESSINTG_H
00015
00016
00017 #ifdef __cplusplus
00018 namespace shells {
00019 #define DECLARE_EXTERN extern "C"
00020 #else
00021 #define DECLARE_EXTERN extern
00022 #endif
00023
00024 struct SurfacePropS;
00025 struct SElementS;
00026
00027 DECLARE_EXTERN void thicknessIntg (struct SurfacePropS *ar,
00028 struct SurfacePropS *ac,
00029 double memforce[3][3],
00030 double coupleforce[3][3],
00031 struct SElementS *element,
00032 int *lquad,
00033 double thick,
00034 double dtime);
00035
00036 #ifdef __cplusplus
00037 }
00038 #endif
00039 #undef DECLARE_EXTERN
00040
00041 #endif