Eigen Command: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
No edit summary
(Fixed command for eigen, context assumed correct.)
Line 4: Line 4:


{|  
{|  
| style="background:yellow; color:black; width:800px" | '''analyze <$type> <$solver> $numEigenvalues'''
| style="background:yellow; color:black; width:800px" | '''eigen <$type> <$solver> $numEigenvalues'''
|}
|}



Revision as of 20:08, 6 October 2010




This command is used to perform the analysis.

eigen <$type> <$solver> $numEigenvalues

$numEigenvalues number of eigenvalues required
$type optional string detailing type of eigen analysis: -standard or -generalized (default: -generalized)
$solver optional string detailing type of solver: -genBandArpack, -symmSparseArpack, -symmBandLapack, -fullGenLapack, -UmfPack, -SuperLU (default: -genBandArpack)


RETURNS:

a tcl string containg eigenvalues.


NOTES:

  1. The eigenvectors are stored at the nodes and can be printed out using a Node Recorder, the nodeEigenvector command, or the Print command.
  2. The default eigensolver is able to solve only for N-1 eigenvalues, where N is the number of inertial DOFs. When running into this limitation the -fullGenLapack solver can be used instead of the default Arpack solver.

THEORY:

Standard Problem:

<math> \left (K - \lambda I \right ) \Phi = 0 </math>

Generalized Problem:

<math> \left (K - \lambda M \right ) \Phi = 0 </math>



EXAMPLE:

set eigenvalues [eigenvalue 10];



Code Developed by: fmk