view all iterations of loop in output file
view all iterations of loop in output file
(OP)
I was wondering whether it is possible to output all the iterations of a *do loop in the output file? Currently my Ansys is set to only output the first iteration.. Is it possible to change?
thanks
thanks





RE: view all iterations of loop in output file
exp.
/output,test,out,,append
*do,i,1,100,1
/nopr
x%i%=i
*enddo
would output
x1=1
x2=2
...
x100=100
RE: view all iterations of loop in output file
RE: view all iterations of loop in output file
What is the use of the '%' sign? Why doesn't xi=i work?
RE: view all iterations of loop in output file