Corotational Truss Element
- Command_Manual
- Tcl Commands
- Modeling_Commands
- model
- uniaxialMaterial
- ndMaterial
- frictionModel
- section
- geometricTransf
- element
- node
- sp commands
- mp commands
- timeSeries
- pattern
- mass
- block commands
- region
- rayleigh
- Analysis Commands
- Output Commands
- Misc Commands
- DataBase Commands
This command is used to construct a corotational truss element object. There are two ways to construct a corotational truss element object:
One way is to specify an area and a UniaxialMaterial identifier:
element corotTruss $eleTag $iNode $jNode $A $matTag <-rho $rho> |
the other is to specify a Section identifier:
element corotTrussSection $eleTag $iNode $jNode $secTag <-rho $rho> |
$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 |
$rho | optional, mass per unit length, default = 0.0
}
NOTE:
EXAMPLE: element truss 1 2 4 5.5 9; # truss element with tag 1 added between nodes 2 and 4 with area 5.5 that uses material 9 Code Developed by: fmk |