Plastic Rotation

Plastic rotations are a common damage measure for frame members and frequently define limit states of structural performance under seismic loading. The calculation of plastic rotations for frame elements in OpenSees is based on a decomposition of deformations in to elastic and plastic components.

The elastic deformations are obtained by elastic unloading of the basic forces, as shown below. Then the plastic deformations can be expressed entirely in terms of the current deformations and forces of an element, i.e., {\bf v}^p={\bf v}-{\bf f}^e{\bf q}, where {\bf f}^e is the elastic flexibility of the element. You can find more details in this paper.

In OpenSees, you can obtain the plastic rotation using the 'plasticDeformation' argument to an element recorder or the eleResponse command.

ops.recorder('Element','-file','plastic.out', \
   '-ele',1,'plasticDeformation')
# or
ops.eleResponse(1,'plasticDeformation')

Note that the recorded response gives three values, one for each basic DOF: axial, rotation at I, and rotation at J. For 3D frame elements, there are six plastic deformations recorded: axial, z-rotation at I, z-rotation at J, y-rotation at I, y-rotation at J, and torsion.

Below is a W14x90 steel column loaded in double curvature about its strong axis. Fiber discretizations define the cross-section response for a single force-based element with four Lobatto integration points.

Using load-control, here are the load-rotation and load-plastic rotation relationships from the analysis. Although not shown here, the plastic deformation recorder works for cyclic loading as well.

With reinforced concrete, gravity loads reduce the initial stiffness. Because the plastic rotation calculation is done at the element level, the elastic unloading is based on whatever the material reports as its initial stiffness, i.e., at zero strain. This difference in initial stiffness will lead to early onset and slight over-estimation of plastic rotations. But it’s reinforced concrete–you likely have bigger problems to worry about.

6 thoughts on “Plastic Rotation

  1. What is the difference between rotations obtained at nodes vs. the element rotation (obtained using basicDeformation or plasticDeformation)? I have found that for basic problems (cantilever with a udl etc.), the nodal values of rotation gave me answers that matched the exact solution but I didn’t get the results using basicDeformation. What is the significance of using element deformation?

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.