I'm traying to perform a successive modal analysis using APDL, at the end of every analysis i need to save modal frequencies in a table by APDL commands. Please, is there anyone who can help?
Actually, I want to save values of a a square table using vwrite command. I need to save them one by one in a sparated lines (same thing like in SET, LIST command). my code was:
*CFOPEN,'myfile','txt'
*do,i,1,length
*do,j,1,nmodes
*VLEN,1
*vwrite,freq_tab(i,j)
(F15.8)
*enddo
*enddo
unfortunatly, i didn' get the expected results in myfile. Since i'm not very familliar with APDL command lines, I'm asking if there is someone who can help.