output eigenvalues

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

Moderators: silvia, selimgunay, Moderators

Post Reply
giacomovincenzo
Posts: 39
Joined: Thu Feb 21, 2008 6:44 am
Location: Politecnico di Torino

output eigenvalues

Post by giacomovincenzo »

Hi all!

Is it possible to output the eigenvalues of a structure in a file?

Thanks!!
zvidrih
Posts: 39
Joined: Wed Apr 30, 2008 1:55 am
Location: Ljubljana, Slovenia

Eigen Analysis

Post by zvidrih »

sure, it is possible...

You can set the variable containing eigen values, then write it to text file.

-eg.

Code: Select all

# Eigen analysis. 
set lambda2 [eigen $no] 
set file [open "eigen.out" w] 
puts $file $lambda2 
close $file
The Eigen vectors can also be saved to text file using node recorder command...

Code: Select all

# Recorders for modes 
recorder Node -file Mode_$modeNumber.out -node  1 2 3 ... -dof 1 2 3 "eigen $modeNumber" 
analyze 1 
"For loop" can be used for convenience...

:wink:
Zlatko Vidrih
Institute of Structural Engineering, earthquake Engineering and Construction IT
Faculty of Civil and Geodetic Engineering
University of Ljubljana, Slovenia
giacomovincenzo
Posts: 39
Joined: Thu Feb 21, 2008 6:44 am
Location: Politecnico di Torino

Post by giacomovincenzo »

Thanks zvidrih!!!!

:D
Post Reply