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!

Exporting MASS STIFFNESS DAMPING MATRIX in EXPLICIT DYNAMICS

Status
Not open for further replies.

adas_11

Electrical
May 21, 2019
5
0
0
IN
Hi,

Is there any technique to export mass stiffness and damping matrix when using Explicit dynamics Solver as I see that the input Command tab is inactive.
 
Replies continue below

Recommended for you

Try this code:

- stiffness matrix:

*DMAT,MatKD,D,IMPORT,FULL,file.full,STIFF
*PRINT,MatKD,Kdense.matrix

- mass matrix:

*DMAT,MatMD,D,IMPORT,FULL,file.full,MASS
*PRINT,MatMD,Mdense.matrix

- damping matrix:

*DMAT,MatCD,D,IMPORT,FULL,file.full,DAMP
*PRINT,MatCD,Cdense.matrix

If you can't do it in explicit dynamics try different type of analysis. Matrices should be the same regardless of the time integration method.
 
Status
Not open for further replies.
Back
Top