global node info of a element from BLOCK3D with "record

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

Moderators: silvia, selimgunay, Moderators

Post Reply
ouyang
Posts: 10
Joined: Thu Feb 10, 2005 8:58 pm

global node info of a element from BLOCK3D with "record

Post by ouyang »

Hi there,
I am using the command "BLOCK3D" to generate a lot of elements(see the tcl script attached below). How can I get the global node numbering info for a specific element with "recorder"?

Thanks for your help in advance.

Ouyang

##########################

set eleArgs "1" ;
set element bbarBrick ;
set nz 6 ;
set nx 6 ;
set ny 6 ;

Block3D $nx $ny $nz 1 1 $element $eleArgs {
1 0 0 0
2 1 0 0
3 1 1 0
4 0 1 0
5 0 0 1
6 1 0 1
7 1 1 1
8 0 1 1
}
##################################
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk »

you can use the currently undocumented (silvia please note) command:

eleNodes eleTag?

to obtain an elements nodal information.
youyicun2008
Posts: 5
Joined: Fri Apr 03, 2009 2:28 am
Location: wuhan

Post by youyicun2008 »

[quote="fmk"]you can use the currently undocumented (silvia please note) command:

eleNodes eleTag?

to obtain an elements nodal information.[/quote]
Can you give me an example about eleNodes eleTag?
thanks . :D
silvia
Posts: 3909
Joined: Tue Jan 11, 2005 7:44 am
Location: Degenkolb Engineers
Contact:

Post by silvia »

set thesenodes [eleNodes 3344]
puts $thesenodes
Silvia Mazzoni, PhD
Structural Consultant
Degenkolb Engineers
235 Montgomery Street, Suite 500
San Francisco, CA. 94104
Post Reply