#include <boost/numeric/ublas/triangular.hpp>
#include <boost/numeric/ublas/lu.hpp>
using namespace boost;
/**
*@class ELEMENT
*@brief 单元类
*@author quhaoLi
*@note
*基于主要生成单元刚度阵以及单元质量阵。
*/
class ELEMENT
{
protected:
/**@brief 单元ID*/
int elementId;
/**@brief 单元Index*/
int elementIndex;
/**@brief 单元类型*/
ElementType eleType;
/**@brief 网格类型*/
MESHTYPE meshType;
/**@brief 单元维数*/
int dim;
|