FullGeneral: Difference between revisions
Jump to navigation
Jump to search
(Created page with '{{CommandManualMenu}} This command is used to construct a Full General linear system of equation object. As the name implies, the class utilizes NO space saving techniques to cu...') |
No edit summary |
||
Line 4: | Line 4: | ||
{| | {| | ||
| style="background:limegreen; color:black; width:800px" | '''system FullGeneral | | style="background:limegreen; color:black; width:800px" | '''system FullGeneral''' | ||
|} | |} | ||
Latest revision as of 00:52, 19 November 2013
- 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 construct a Full General linear system of equation object. As the name implies, the class utilizes NO space saving techniques to cut down on the amount of memory used. If the matrix is of size, nxn, then storage for an nxn array is sought from memory when the program runs. When a solution is required, the Lapack routines DGESV and DGETRS are used. The following command is used to construct such a system:
system FullGeneral |
NOTES:
This type of system should almost never be used! This is because it requires a lot more memory than every other solver and takes more time in the actal solving operation than any other solver. It is required if the user is interested in looking at the global system matrix.
Code Developed by: fmk