eigen values and eigen vectors

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

Moderators: silvia, selimgunay, Moderators

Post Reply
blackard
Posts: 35
Joined: Mon Sep 05, 2005 9:26 am

eigen values and eigen vectors

Post by blackard »

I really am not understanding how to record the eigen values or eigen vectors when using a quad element (or any continuum element).

Can you supply me with instructions?
fmk
Site Admin
Posts: 5884
Joined: Fri Jun 11, 2004 2:33 pm
Location: UC Berkeley
Contact:

Post by fmk »

the eigenvectors are recorded using nodal recorders (one eigenvector per recorder) .. the eigenvalues cannot be obtained using a recorder; instead you use plain tcl to o/p them once you have obtained them (the eigen command returns them in a string):

set outfile [open eigenvalues.txt w]
set eigenvalues [eigen 4]
puts $outfile $eigenvalues
close $outfile


recorder Node -file eigenvectors1.out -node 2 3 -dof 1 2 3 "eigen 1"
recorder Node -file eigenvectors2.out -node 2 3 -dof 1 2 3 "eigen 2"
recorder Node -file eigenvectors3.out -node 2 3 -dof 1 2 3 "eigen 3"
...

analyze 1; // you need at least 1 analyze to get them! to be recorded



if still confused, have a look at this script i have posted:

http://opensees.berkeley.edu/community/ ... .php?t=426
blackard
Posts: 35
Joined: Mon Sep 05, 2005 9:26 am

Post by blackard »

I've gotten the series of four commands to give me an output file.
I seem to get the same eigen values for the standard or the generalized eigen command. And I do have mass defined at each node. What's
up with this?
Post Reply