Eigen Command: Difference between revisions
Jump to navigation
Jump to search
(Created page with '{{CommandManualMenu}}') |
No edit summary |
||
Line 1: | Line 1: | ||
{{CommandManualMenu}} | {{CommandManualMenu}} | ||
This command is used to perform the analysis. | |||
{| | |||
| style="background:yellow; color:black; width:800px" | '''analyze <$type> <$solver> $numEigenvalues''' | |||
|} | |||
---- | |||
{| | |||
| style="width:150px" | '''$numEigenvalues''' || number of eigenvalues required | |||
|- | |||
| '''$type''' || optional string detailing type of eigen analysis, -standard of -generalized (default generalized) | |||
|- | |||
| '''$solver'''|| optional string detailing type of solver, -UmfPack, -genBandArpack, -symmBandLapack, -SuperLU (default genBandArpack) | |||
|} | |||
RETURNS: | |||
a tcl string containg eigenvalues. | |||
NOTES: | |||
# The eigenvectors are stored at the nodes and can be printed out using Node Recorder or the Print command. | |||
---- | |||
EXAMPLE: | |||
set eigenvalues [eigenvalue 10]; # perform 10 static analysis steps | |||
---- | |||
Code Developed by: <span style="color:blue"> fmk </span> |
Revision as of 18:56, 12 May 2010
- Command_Manual
- Tcl Commands
- Modeling_Commands
- model
- uniaxialMaterial
- ndMaterial
- frictionModel
- section
- geometricTransf
- element
- node
- sp commands
- mp commands
- timeSeries
- pattern
- mass
- block commands
- region
- rayleigh
- Analysis Commands
- Output Commands
- Misc Commands
- DataBase Commands
This command is used to perform the analysis.
analyze <$type> <$solver> $numEigenvalues |
$numEigenvalues | number of eigenvalues required |
$type | optional string detailing type of eigen analysis, -standard of -generalized (default generalized) |
$solver | optional string detailing type of solver, -UmfPack, -genBandArpack, -symmBandLapack, -SuperLU (default genBandArpack) |
RETURNS:
a tcl string containg eigenvalues.
NOTES:
- The eigenvectors are stored at the nodes and can be printed out using Node Recorder or the Print command.
EXAMPLE:
set eigenvalues [eigenvalue 10]; # perform 10 static analysis steps
Code Developed by: fmk