Fiber Section: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(documenting -GJ option) |
||
(13 intermediate revisions by 3 users not shown) | |||
Line 3: | Line 3: | ||
This commnand allows the user to construct a FiberSection object. Each FiberSection object is composed of Fibers, with each fiber containing a UniaxialMaterial, an area and a location (y,z). The command to generate FiberSection object contains in '''{ }''' the commands to generate all the fibers in the object. To construct a FiberSection and populate it, the following command is used: | This commnand allows the user to construct a FiberSection object. Each FiberSection object is composed of Fibers, with each fiber containing a UniaxialMaterial, an area and a location (y,z). The command to generate FiberSection object contains in '''{ }''' the commands to generate all the fibers in the object. To construct a FiberSection and populate it, the following command is used: | ||
{| style="background: | {| style="background:lime; color:black; width:800px" | ||
| ''' section Fiber $secTag {''' | | ''' section Fiber $secTag <-GJ $GJ> {''' | ||
|- | |- | ||
| '''[[fiber Command | fiber]]...''' | | '''[[fiber Command | fiber]]...''' | ||
Line 17: | Line 17: | ||
|} | |} | ||
---- | |||
{| | {| | ||
| style="width:150px" | '''$ | | style="width:150px" | '''$secTag ''' || unique tag among sections | ||
|- | |- | ||
| '''$ | | '''$GJ''' || linear-elastic torsional stiffness assigned to the section (optional, default = no torsional stiffness) | ||
|- | |- | ||
| | | '''[[fiber Command | fiber]]...''' || command to generate a single fiber | ||
|- | |- | ||
| '''[[ | | '''[[patch Command | patch]]...''' || command to generate a number of fibers over a geometric cross-section | ||
|- | |- | ||
| '''[[ | | '''[[layer Command | layer]]...''' || command to generate a row of fibers along a geometric-arc | ||
|- | |||
|} | |} | ||
NOTES: | |||
# The command to generate a FiberSection contains in '''{ }''' the commands to generate all the fibers in the section. | |||
# The patch and layer commands can be used to generate multiple fibers in a single command. | |||
# In an element recorder you can ask a FiberSection for its 'deformations', 'forces', 'forceAndDeformation', 'fiber $fiberNum $matArg1 ..', 'fiber $yLoc $zLoc $matTag $matArg1 ' | |||
---- | ---- | ||
<uml> | <uml> | ||
FiberSection | FiberSection o- Fiber | ||
</uml> | </uml> | ||
---- | ---- | ||
Code Developed by: <span style="color:blue"> | Code Developed by: <span style="color:blue"> Michael H. Scott, Oregon State University </span> |
Latest revision as of 21:04, 23 January 2014
- 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 commnand allows the user to construct a FiberSection object. Each FiberSection object is composed of Fibers, with each fiber containing a UniaxialMaterial, an area and a location (y,z). The command to generate FiberSection object contains in { } the commands to generate all the fibers in the object. To construct a FiberSection and populate it, the following command is used:
section Fiber $secTag <-GJ $GJ> { |
fiber... |
patch... |
layer... |
... |
} |
$secTag | unique tag among sections |
$GJ | linear-elastic torsional stiffness assigned to the section (optional, default = no torsional stiffness) |
fiber... | command to generate a single fiber |
patch... | command to generate a number of fibers over a geometric cross-section |
layer... | command to generate a row of fibers along a geometric-arc |
NOTES:
- The command to generate a FiberSection contains in { } the commands to generate all the fibers in the section.
- The patch and layer commands can be used to generate multiple fibers in a single command.
- In an element recorder you can ask a FiberSection for its 'deformations', 'forces', 'forceAndDeformation', 'fiber $fiberNum $matArg1 ..', 'fiber $yLoc $zLoc $matTag $matArg1 '
<uml> FiberSection o- Fiber </uml>
Code Developed by: Michael H. Scott, Oregon State University