Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to obtain the mass matrix ,stiffness matrix and damping matrix after model analysis in ANSYS?

Status
Not open for further replies.
Replies continue below

Recommended for you

Use the *DMAT-command or *SMAT-command in a command snippet in the Solution branch. Make sure that you turn off distributed solution or you won't be able to do this since the full-file containing these matrices will be split into pieces.

[pre]!Stiffness
*SMAT,MK,D,IMPORT,FULL,file.full,STIFF
*PRINT,MK,Ksparse.matr

!Mass
*SMAT,MM,D,IMPORT,FULL,file.full,MASS
*PRINT,MM,Msparse.matr

!... and so on... use *DMAT for full matrix printout instead

[/pre]
 
Status
Not open for further replies.
Back
Top