Chord Rotation and Plastic Rotation

HOME FORUM User Discussions Chord Rotation and Plastic Rotation

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #26976
    mahesh
    Participant

    I am new to Opensees and working on 3D model of RC structures, chord rotation and plastic rotation recorder opinion for Beamcolumn element giving me 6 output values for each element. What this six quantities represents and which Dof shall be considered as a plastic rotation of the section

    #26986
    walkerm
    Participant

    hi! I also have this question. I have however found this:

    // chord rotation –

    } else if (strcmp(argv[0],”chordRotation”) == 0 || strcmp(argv[0],”chordDeformation”) == 0

    || strcmp(argv[0],”basicDeformation”) == 0) {

    output.tag(“ResponseType”,”eps”);

    output.tag(“ResponseType”,”theta1″);

    output.tag(“ResponseType”,”theta2″);

    theResponse = new ElementResponse(this, 3, Vector(3));

    // plastic rotation –

    } else if (strcmp(argv[0],”plasticRotation”) == 0 || strcmp(argv[0],”plasticDeformation”) == 0) {

    output.tag(“ResponseType”,”epsP”);

    output.tag(“ResponseType”,”theta1P”);

    output.tag(“ResponseType”,”theta2P”);

    theResponse = new ElementResponse(this, 4, Vector(3));

    Hope that helps a little!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.