Skip to main content

Ansys APDL - Some Neat Commands

For those starting out, here's a few commands I find pretty neat. If you're not familiar with them, it's worth checking out.

NDNEXT & ELNEXT
When looping through a bunch of nodes or elements, this provide some convenience.
  /post1
  cmsel, s, NodesOfInterest
  *get, ncount, node, 0, count
  *dim, uxsave,, ncount, 2
  nnow = 0
  *do,ct,1,ncount
     nnow = ndnext(nnow)
     uxsave(ct, 1) = nnow
     *get, uxsave(ct, 2), node, nnow, u, x
     *enddo
  *stat, uxsave

Alternately, one could instead use fancier commands: *VGET with *VMASK
  cmsel, s, NodesOfInterest
  *get, nmx, node,, num, max
  *get, ncount, node,, count
  
  *dim, ndata,, nmx, 3
  *dim, nkeep,, ncount, 2
  
  *vget, ndata(1,1), node, 1, nsel
  *vfill,ndata(1,2),ramp,1,1
  *vmask, ndata(1,1)
  *vget, ndata(1,3), node, 1, u, x
  
  *vmask, ndata(1,1)
  *vfun, nkeep(1,1), comp, ndata(1,2)
  *vmask, ndata(1,1)
  *vfun, nkeep(1,2), comp, ndata(1,3)
  *stat, nkeep

q=UX(N)
This is equivalent to the above *get, q, node, N, u, x
Other succinct functions can be found here.

/PLOPTS, DATE, 0
This turns off the time and date display. It makes the screen more neat. 

*VWRITE
When needing to export data for nicer plots in another software, it took me a while to figure out I can't run the following in the GUI. It has to be in a separate ASCII file called via \INPUT or as a macro. There should also not be any spaces in front of the *vwrite and formatting commands.

*cfopen, rboltf1.txt
*vwrite, rbolt1(1,1), rbolt1(1,2), rbolt1(1,3)
(E,' ',E,' ',E)

*cfclos

%aVar%
The percentage symbol enclosing a variable will create a forced substitution. This is advantageous in loops, file names etc.

Comments

  1. Dear all,

    1) When one models a porous structure in "ANSYS APDL" using Gurson model, some GTN parameters including the volumetric porosity fraction (i.e. initial porosity) are entered using the TBDATA command.
    In these models, are we still supposed to draw the voids physically through the solid matrix after entering the initial porosity? or Does ANSYS automatically assume "virtual microvoids" through a solid matrix after entering the initial porosity?

    2) If we must incorporate the voids into the matrix physically, how can we impose spherical voids in a "2D axisymmetric" model?

    Many Thanks

    ReplyDelete
    Replies
    1. Hi Runo,

      Unfortunately this website is quite old and not well trafficked. I would suggest posting your questions to the Ansys forums for better exposure to get the answers you seek.

      Delete

Post a Comment

Popular posts from this blog

ANSYS User Defined Results

There is an abundant of options in ANSYS classic when one wishes to post process results. ANSYS workbench default pull down menu post processing options are more limited but they can still be accessed via the User Defined Results. One way not commonly used but can come in handy is as follows: Zeroth: Under Analysis Settings, there is "Output Controls" where you can toggle to "Yes" what you would like to save before the solution starts. This is like OUTRES in APDL. Output Controls First: After solving the model, click on Solution in the tree to highlight it. Solution Second: Click on Worksheet in the toolbar. Worksheet Third: In the worksheet, you will see list of results that are saved. Right click on it to create the User Defined Results. Create User Defined Results So here we have it. You could of look up the different expressions in the help document but I find this method of accessing the results convenient.  Example: Aspec

Export Stiffness Matrix from Ansys

It is sometimes useful to extract the mass and stiffness matrix from Ansys.     *SMAT, MatK, D, IMPORT, FULL, file.full, STIFF       *PRINT, matk, matk, txt Exporting mass matrix would be similar:       *SMAT, MatM, D, import, full, file.full, MASS The above script uses APDL Math to get the job done. (Please see previous post for another example). The ordering of the matrix is unfortunately not concurrently exported. To verify the sequencing is as expected, we will work to replicate a truss example in the  Finite Element Trusses course notes by Bob Greenlee. Figure 1: Truss Problem Setup Model Creation Script to create model: /prep7 !! Creates Model to reflect course notes ! Properties et ,1,1  mp , ex, 1, 29.5e6 r , 1, 1 ! Geometry n ,1 $  n ,2, 40 $  n ,3, 40, 30 $  n ,4, 0, 30 e ,1,2 $  e ,2,3 $  e ,1,3 $  e ,3,4 ! Boundary Conditions d ,1,ux,0 $  d ,1,uy,0 d ,2,uy,0 d ,4,ux,0 $  d ,4,uy,0 f ,2,fx,20e3 f ,3,fy,-25e3 ! solves /solu eqslv , sparse

ANSYS APDL Syntax Highlighting editor

Notepad++ with APDL User Defined Language The editor of my choice is Notepad++  with the available User Defined Language Files for APDL . You can install it without administrative privileges via the zip file. The best part of it is, it's FREE! After installing Notepad++, go to "Language>Define Your Language..." then "Import" the XML file downloaded from the above link. Remember to restart Notepad++ so that the language changes will take into effect. Opening up any *.inp or *.ans files should automatically switch highlighting to APDL. I made some minor edits. Here's my XML file: LINK . I also heard Sublime Text and  Ultraedit  has more advance features but they aren't (totally) free.