integrator DisplacementControl

Forum for OpenSees users to post questions, comments, etc. on the use of the OpenSees interpreter, OpenSees.exe

Moderators: silvia, selimgunay, Moderators

Post Reply
Allaaldeen
Posts: 13
Joined: Mon May 09, 2016 2:39 pm

integrator DisplacementControl

Post by Allaaldeen » Sat Dec 02, 2017 5:40 am

Hi all
Is it possible in Opensees to apply DisplacementControl on two points (or more) at the same time?

Jhno
Posts: 214
Joined: Sat May 05, 2012 2:55 pm
Location: Laval

Re: integrator DisplacementControl

Post by Jhno » Sat Dec 02, 2017 3:35 pm

If the displacements are the same you can add a equalDOF between the two (or more) nodes you want to see displaced?

ismailqeshta
Posts: 115
Joined: Mon Feb 20, 2017 1:19 am
Location: RMIT University, Melbourne, Australia

Re: integrator DisplacementControl

Post by ismailqeshta » Sat Dec 02, 2017 3:38 pm

Yes, equal DOF can do it as they share the same degrees of freedom

EricsonEncinaZ
Posts: 108
Joined: Mon Sep 16, 2013 1:14 pm
Location: University of Auckland

Re: integrator DisplacementControl

Post by EricsonEncinaZ » Sat Dec 02, 2017 11:25 pm

The integrator DisplacementControl receives just one node and one DOF, so you can not pass 2 nodes to the command. As previously stated one option is to constrain the node displacements with equalDOF command and pass just one node to the integrator, but that might be a limitation for your model in the case you want to have the two nodes moving free from one another.
What you could do, could be run the [analyze 1] command within a while loop and define the braking statement of the while loop as specific displacements for the two nodes. You can get the displacements of the nodes with the command [nodeDisp $node $DOF]. Example below

while {[nodeDisp $N1 $dir1] < $d1 && [nodeDisp $N2 $dir2] < $d2} {
...
analyze 1
....
}

Allaaldeen
Posts: 13
Joined: Mon May 09, 2016 2:39 pm

Re: integrator DisplacementControl

Post by Allaaldeen » Sun Dec 03, 2017 7:29 am

Thank you all.

Post Reply