Reply To: Chord Rotation and Plastic Rotation

HOME FORUM User Discussions Chord Rotation and Plastic Rotation Reply To: Chord Rotation and Plastic Rotation

#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!