deadwght.hxx
来自「不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.」· HXX 代码 · 共 34 行
HXX
34 行
// *************************
// *** CLASS DEAD WEIGHT ***
// *************************
#include "bodyload.hxx"
class DeadWeight : public BodyLoad
/*
This class implements a gravity-like load.
DESCRIPTION
The attribute 'componentArray' contains the components of an acceleration
'a', expected (but not required) to be downwards vertical.
TASK
returning the body force rho*a acting on a given element.
*/
{
public :
DeadWeight (int i,Domain* d) : BodyLoad(i,d) {} // constructor
FloatArray* ComputeForceOn (Element*,TimeStep*) ;
void saveAttributesIn (FILE*) ;
} ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?