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),ram...