Hi all!
Is it possible to output the eigenvalues of a structure in a file?
Thanks!!
output eigenvalues
Moderators: silvia, selimgunay, Moderators
-
- Posts: 39
- Joined: Thu Feb 21, 2008 6:44 am
- Location: Politecnico di Torino
Eigen Analysis
sure, it is possible...
You can set the variable containing eigen values, then write it to text file.
-eg.
The Eigen vectors can also be saved to text file using node recorder command...
"For loop" can be used for convenience...
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
Code: Select all
# Recorders for modes
recorder Node -file Mode_$modeNumber.out -node 1 2 3 ... -dof 1 2 3 "eigen $modeNumber"
analyze 1
Zlatko Vidrih
Institute of Structural Engineering, earthquake Engineering and Construction IT
Faculty of Civil and Geodetic Engineering
University of Ljubljana, Slovenia
Institute of Structural Engineering, earthquake Engineering and Construction IT
Faculty of Civil and Geodetic Engineering
University of Ljubljana, Slovenia
-
- Posts: 39
- Joined: Thu Feb 21, 2008 6:44 am
- Location: Politecnico di Torino