Recorder

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

Moderators: silvia, selimgunay, Moderators

Post Reply
KonstantinosSita
Posts: 2
Joined: Sun Dec 06, 2015 6:23 am
Location: NTUA

Recorder

Post by KonstantinosSita »

Hello!

I have a steel 3-storey frame with braces. Each brace has 10 elements.
My code is complex and big in size,so I give you parts of it.

set noEle 10; # number of elements per brace
set NIP 3

# storey 1 - left brace
set shift 3100
for { set i 1 } { $i <= [expr $noEle] } { incr i} {
element forceBeamColumn [expr $shift+$i] [expr $shift+$i] [expr $shift+$i+1] $NIP $secTagBr1 $transfTag_Brace -iter $maxIter $tol
}

I want to find the axial deformation (deformation in the Local X axis) of this brace using a recorder command.

I tried :

recorder Element -file "Deformations_leftbrace_storey1.out" -ele 3101 section $secTagBr1 deformation

and also :

recorder Element -file "Deformations_leftbrace_storey1.out" -ele 3101 deformation

,but none of them worked..

I also to do this with some truss Elements that I have in my model.

Any ideas?.. :)
mapak
Posts: 3
Joined: Tue Jun 28, 2016 5:59 am
Location: AUTH

Re: Recorder

Post by mapak »

Did you try basicDeformation or plasticDeformation according to this: http://opensees.berkeley.edu/wiki/index ... mn_Element??
Also maybe you should post at least the part of your code where you define the section
KonstantinosSita
Posts: 2
Joined: Sun Dec 06, 2015 6:23 am
Location: NTUA

Re: Recorder

Post by KonstantinosSita »

Here is the section definition :

# command: HSSsection secID matID d t nfdy nfty nfdz nftz
HSSsection $secTagBr1 $matID_fatBrace_1 [expr 140.*$mm] [expr 16.0*$mm] 5 4 5 2

(nf : number of fibers)
You are right! Both basicDeformation and plasticDeformation work.
Can you please explain the difference between basic and plastic deformation?
Basic is "elastic" deformation? So, in order to find the total deformation, I have to add basic and plastic deformation? (basic + plastic = total)?
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Re: Recorder

Post by fmk »

basicDeformation is total deformations in the basic system, plasticDeformation is basic - elastic.
Post Reply