Getting Started with OpenSees -- Elements

From OpenSeesWiki
Jump to navigationJump to search




The elastic columns and beams are defined using the OpenSees Elastic Beam Column Element. The characteristics of a 2-D elastic element depend on the material modulus and the section area and moment of inertia. Because the elements in this frame represent reinforced-concrete elements, the value of 4227 ksi for the elastic modulus of concrete will be used.

The following values represent the area and moment of inertia of the columns and beams:

  • Columns
Area=(5*12)*(5*12)=3600
Iz = 1/12*(5*12)*(5*12)^3=1080000
  • Beams
Area=(5*12)*(8*12)=5760
Iz = 1/12*(5*12)*(8*12)^3=4423680



The OpenSees Geometric Transformation Command defines how the element coordinates correlate to the global model coordinates.
In a 2D problem, element orientation does not need to be considered, and can be the same for all elements. The linear transformation will be used in this demonstration:

geomTransf Linear $transfTag <-jntOffset $dXi $dYi $dXj $dYj>


geomTransf Linear 1


The following commands define the two columns (element 1 and 2) and the beam (element 3):

element elasticBeamColumn $eleTag $iNode $jNode $A $E $Iz $transfTag


element elasticBeamColumn 1 1 3 3600 4227 1080000 1
element elasticBeamColumn 2 2 4 3600 4227 1080000 1
element elasticBeamColumn 3 3 4 5760 4227 4423680 1


The element connectivity is shown in the following figure:

GettingStartedNodes.JPG


Return to Getting Started with OpenSees