how to create a groupe of couple of values in Ansys
how to create a groupe of couple of values in Ansys
(OP)
Hi!!
help please
I want to create a groupe S={...,(5,6),...,(2,8),...(,),...} of couple of value witch satisfate a certain condition. of course maximal number of element (couple) of S is : M*N. but it can be less than that.
*do,i,1,M
*do,j,1,N
*if,A,EQ,B,then
add this two values of i and j as a couple of
values in S
*endif
*enddo
*enddo
How can i do that please!!
thank's
Barha
help please
I want to create a groupe S={...,(5,6),...,(2,8),...(,),...} of couple of value witch satisfate a certain condition. of course maximal number of element (couple) of S is : M*N. but it can be less than that.
*do,i,1,M
*do,j,1,N
*if,A,EQ,B,then
add this two values of i and j as a couple of
values in S
*endif
*enddo
*enddo
How can i do that please!!
thank's
Barha





RE: how to create a groupe of couple of values in Ansys
try this:
CODE
pos=0
*do,i,1,M
*do,j,1,N
*if,A,EQ,B,then
pos=pos+1
Stemp(pos,1)=M
Stemp(pos,2)=N
*endif
*enddo
*enddo
*dim,S,array,,pos,2 ! double array
*mfun,S(1,1),copy,Stemp(1,1) ! copy temporary array to the double array
*del,Stemp ! delete temporary array
RE: how to create a groupe of couple of values in Ansys
Thank u man!!!!
Barha