Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations GregLocock on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to create a groupe of couple of values in Ansys 1

Status
Not open for further replies.

biblo

Mechanical
Apr 23, 2006
40
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


 
Replies continue below

Recommended for you

Hi,

try this:

Code:
*dim,Stemp,array,,M*N,2 ! temporary array
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
 
Very beautiful!!!!!!!!!!!!
Thank u man!!!!
Barha
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor