I would like to store Z displacement of node 30
each time in results2.dat only FINISH line is stored (amount correspond to steps value)
---------
steps=2
*dim,result,array,steps - two steps
*dim,volts,array,3 - array with different load values
volts(1)=10
volts(2)=100
volts(3)=1000
*do,i,1,steps
/PREP7
NSEL,S,LOC,Z,dif+h
D,ALL,VOLT,volts(2)
NSEL,ALL
/SOLU
ANTYPE,STATIC
SOLVE
/POST1
*get,result(i),node,30,u,z
*enddo
*mwrite,result,result2,dat
------------------