nodload.hxx
来自「不错的国外的有限元程序代码,附带详细的manual,可以节省很多的底层工作.」· HXX 代码 · 共 37 行
HXX
37 行
// ************************
// *** CLASS NODAL LOAD ***
// ************************
#include "load.hxx"
class TimeStep ;
class NodalLoad : public Load
/*
This class implements a concentrated load (force, moment,...) that acts
directly on a node (not on an element). A nodal load is usually attribute
of one or more nodes.
DESCRIPTION
The attribute 'componentArray' contains, for example for the case of a
plane beam structure, 2 forces and 1 moment.
REMARK
class Node is not restricted to structural problems. For example, in ther-
mal analysis, a nodal load would be a concentrated heat source.
*/
{
public :
NodalLoad (int i,Domain* d) : Load(i,d) {} // constructor
FloatArray* ComputeValueAt (TimeStep*) ;
} ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?