*get
*get
(OP)
Hello everyone
Is it possible to select a number of nodes, and then use *get, to obtain the respective node numbers? I have trouble finding this in the Help for *get. I then want to use another *get to get the UY disp of each node.
Thanks
maxibonne
Is it possible to select a number of nodes, and then use *get, to obtain the respective node numbers? I have trouble finding this in the Help for *get. I then want to use another *get to get the UY disp of each node.
Thanks
maxibonne





RE: *get
RE: *get
*dowhile,nnn
*get,uydisp,node,nnn,u,y
*get,nnn,node,0,nxth
[...] ! do whatever you need to do with nnn and uydisp
*enddo
or without the gets:
nnn=ndnext(0)
*dowhile,nnn
uydisp=uy(nnn)
nnn=ndnext(nnn)
[...] ! do whatever you need to do with nnn and uydisp
*enddo