Truss Element: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
(New page: This command is used to construct a truss element object. There are two ways to construct a truss element object: One way is to specify an area and a UniaxialMaterial identifier: {| | s...)
 
No edit summary
Line 13: Line 13:
| style="background:yellow; color:black; width:800px" | ''element truss $eleTag $iNode $jNode $secTag'''
| style="background:yellow; color:black; width:800px" | ''element truss $eleTag $iNode $jNode $secTag'''
|}
|}


----
----


{|
{|
Line 27: Line 30:
| '''$secTag''' || tag associated with previously-defined Section
| '''$secTag''' || tag associated with previously-defined Section
|}
|}


NOTE:
NOTE:


When constructed with a UniaxialMaterial object, the truss element considers strain-rate effects, and is thus suitable for use as a damping element.
When constructed with a UniaxialMaterial object, the truss element considers strain-rate effects, and is thus suitable for use as a damping element.


The valid queries to a truss element when creating an ElementRecorder object are 'axialForce,' 'stiff,' deformations,' 'material matArg1 matArg2...,' 'section sectArg1 sectArg2...' There will be more queries after the interface for the methods involved have been developed further.
The valid queries to a truss element when creating an ElementRecorder object are 'axialForce,' 'stiff,' deformations,' 'material matArg1 matArg2...,' 'section sectArg1 sectArg2...' There will be more queries after the interface for the methods involved have been developed further.


EXAMPLE:
EXAMPLE:

Revision as of 23:17, 1 October 2009

This command is used to construct a truss element object. There are two ways to construct a truss element object:

One way is to specify an area and a UniaxialMaterial identifier:

element truss $eleTag $iNode $jNode $A $matTag '


the other is to specify a Section identifier:

element truss $eleTag $iNode $jNode $secTag'




$eleTag unique element object tag
$iNode $jNode end nodes
$A cross-sectional area of element
$matTag tag associated with previously-defined UniaxialMaterial
$secTag tag associated with previously-defined Section


NOTE:

When constructed with a UniaxialMaterial object, the truss element considers strain-rate effects, and is thus suitable for use as a damping element.


The valid queries to a truss element when creating an ElementRecorder object are 'axialForce,' 'stiff,' deformations,' 'material matArg1 matArg2...,' 'section sectArg1 sectArg2...' There will be more queries after the interface for the methods involved have been developed further.


EXAMPLE:

element truss 1 2 4 5.5 9; # truss tag 1 between nodes 2 and 4 with area 5.5 and uses material 9


Code Developed by: fmk