Elastic Timoshenko Beam Column Element: Difference between revisions
No edit summary |
No edit summary |
||
Line 21: | Line 21: | ||
| style="width:150px" | '''$eleTag''' || unique element object tag | | style="width:150px" | '''$eleTag''' || unique element object tag | ||
|- | |- | ||
|'''$iNode $jNode''' ||end nodes | | '''$iNode $jNode''' ||end nodes | ||
|- | |- | ||
| '''$E''' || Young's Modulus | | '''$E''' || Young's Modulus | ||
Line 27: | Line 27: | ||
| '''$G''' || Shear Modulus | | '''$G''' || Shear Modulus | ||
|- | |- | ||
|'''$A''' || cross-sectional area of element | | '''$A''' || cross-sectional area of element | ||
|- | |- | ||
| '''$Jx''' || torsional moment of inertia of cross section | | '''$Jx''' || torsional moment of inertia of cross section | ||
Line 40: | Line 40: | ||
|- | |- | ||
| '''$transfTag''' || identifier for previously-defined coordinate-transformation (CrdTransf) object | | '''$transfTag''' || identifier for previously-defined coordinate-transformation (CrdTransf) object | ||
|- | |||
| '''$m''' || element mass per unit length (optional, default = 0.0) | |||
|- | |||
| '''-cMass''' || to form consistent mass matrix (optional, default = lumped mass matrix) | |||
|} | |} | ||
Revision as of 20:45, 22 March 2016
- 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 an ElasticTimoshenkoBeam element object. A Timoshenko beam is a frame member that accounts for shear deformations. The arguments for the construction of an elastic Timoshenko beam element depend on the dimension of the problem, ndm:
For a two-dimensional problem:
element ElasticTimoshenkoBeam $eleTag $iNode $jNode $E $G $A $Iz $Avy $transfTag <-mass $m> <-cMass> |
For a three-dimensional problem:
element ElasticTimoshenkoBeam $eleTag $iNode $jNode $E $G $A $Jx $Iy $Iz $Avy $Avz $transfTag <-mass $m> <-cMass> |
$eleTag | unique element object tag |
$iNode $jNode | end nodes |
$E | Young's Modulus |
$G | Shear Modulus |
$A | cross-sectional area of element |
$Jx | torsional moment of inertia of cross section |
$Iy | second moment of area about the local y-axis |
$Iz | second moment of area about the local z-axis |
$Avy | Shear area for the local y-axis |
$Avz | Shear area for the local z-axis |
$transfTag | identifier for previously-defined coordinate-transformation (CrdTransf) object |
$m | element mass per unit length (optional, default = 0.0) |
-cMass | to form consistent mass matrix (optional, default = lumped mass matrix) |
NOTES:
The valid queries to an elastic Timoshenko beam element when creating an ElementRecorder object are 'force'.
For solid rectangular sections, shear area is often assumed to be 5/6 of the gross area. For I-shapes, the shear area can be approximated as Aweb.
EXAMPLE:
element ElasticTimoshenkoBeam 1 2 4 100.0 45.0 6.0 4.5 5.0 9; # elastic Timoshenko element with tag 1 between nodes 2 and 4 with E=100, G=45, A=6.0, I=4.5 and Av=5.0 which uses transformation 9
Code Developed by: Andreas Schellenberg