00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef _AM_H
00014 #define _AM_H
00015
00016 #include "sam.h"
00017
00018
00019
00020 class cAnMethod : public cSemiAnMethod
00021 {
00022 public:
00023 cAnMethod (void);
00024 ~cAnMethod (void);
00025 double DsaVolume (cElement *, int, cNode **, sNodeCoord *);
00026 void DsaEqvForce(cLoadElement *, int, cNode **, sNodeCoord *,
00027 double, double *);
00028 void DsaIntForce(cElement *, int, cNode **, sNodeCoord *, double *);
00029 void DsaStiffMat(cElement *, int, cNode **, sNodeCoord *, double *,
00030 double *);
00031 void DsaGeoStiff(cElement *, int, int, cNode **, sNodeCoord *,
00032 double *, double *, double *);
00033 void DsaStress (cElement *, int, int, cNode **, sNodeCoord *,
00034 double *, double **);
00035 };
00036
00037 #endif