3D Beam Finite Element Code
1.0
|
A nodal force to enforce. More...
#include <containers.h>
Public Member Functions | |
Force () | |
Default Constructor. More... | |
Force (unsigned int _node, unsigned int _dof, double _value) | |
Constructor. More... | |
Public Attributes | |
unsigned int | node |
unsigned int | dof |
double | value |
A nodal force to enforce.
Set by specifying the node where the force will be applied, which degree of freedom will be affected, and the value to apply.
|
inline |
Default Constructor.
All values are set to zero.
|
inline |
Constructor.
[in] | node | unsigned int . The index of the node. |
[in] | dof | unsigned int . Degree of freedom to constrain (See fea::DOF). |
[in] | value | double . The prescribed value for the force. |
unsigned int fea::Force::dof |
The index of the dof to constrain. The fea::DOF enum can be used for specification or the integer values can be used directly 0==d_x
, 1==d_y
, ...
unsigned int fea::Force::node |
The index of the node to apply the force
double fea::Force::value |
The value of the force to apply.