www.pudn.com > roll.rar > RIGIDITY.H
// CRigidity.h : interface of the CPostDoc class
//
/////////////////////////////////////////////////////////////////////////////
class CFPoint;
class CRigidity
{
BOOL bError;
CString FileName;
CString nFileName;
protected:
struct PE {
int nodal[11];
};
int cont[2];
public:
int numnode,numelem;
int segment;
PE *codepe;
double *xc,*yc,*zc;
double *dx,*dy,*dz;
CFPoint *curve;
double loads[2];
double n1[2],n2[2],n3[2];
CRigidity(CString FileName1,CString FileName2="");
BOOL CalcRigidity_Deform();
int Allocate( void );
int DeleteAll( void );
public:
virtual ~CRigidity();
};
/////////////////////////////////////////////////////////////////////////////