recorder

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

Moderators: silvia, selimgunay, Moderators

fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: recorder

Post by fmk »

there is no command to get it .. you must do so yourself:

set maxDisp 0.0
while {$ok == 0 && $tCurrent < $tFinal} {
set ok [analyze 1 $dt]
..
set disp [expr abs([nodeDisp 2 1])]
if {$disp > $maxDisp}
set maxDisp $disp
}
}
Post Reply