Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations JAE on being selected by the Eng-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.

flyiinghorse21

Structural
Joined
Jun 13, 2020
Messages
3
Location
CN
how to obtain the mass matrix ,stiffness matrix and damping matrix after model analysis in ANSYS?
 
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.

Part and Inventory Search

Sponsor

Back
Top