-
Hi all, I am trying to obtain the mass and stiffness matrix from a modal analysis along with the mapping of nodes and DOF in order to rearrange the matrices to a specific pattern. Obtaining the matrices works perfectly fine using:
I have though not been able to obtain the mapping. I have tried using the
I get an error message "FileNotFoundError: Unable to locate file.full" As far as I understand the same file is used to find the matrices in the math functions which works perfectly fine. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @shs18, Could you upload a minimum working example I can have a loot at? Kind regards! |
Beta Was this translation helpful? Give feedback.
-
Hi @shs18 & @germa89 mapdl.aux2()
mapdl.fileaux2(fname='file', ident='full')
mapdl.hbmat('k_plate', matrx="stiff", mapping='yes') What happens then? |
Beta Was this translation helpful? Give feedback.
Hi @shs18 & @germa89
The /AUX2 processor does not use the FILE command, it has its own command to set the binary file FILEAUX2. So try:
What happens then?
Mike