Ilogic Part Array

Ilogic Part Array

jam_bhatti
Enthusiast Enthusiast
1,435 Views
4 Replies
Message 1 of 5

Ilogic Part Array

jam_bhatti
Enthusiast
Enthusiast

I am working on Vessel Shell assembly with variable shell height and wall thickness using ilogic, and i am trying this using array tool. can any one help me how i define perameter in array using ilogic to allow me different height and wall thickness in array. 

 

Component key names are

 

Shell Diameter = ID

Shell Height = HT

Shell wall Thickness = THK

 

Array tool using column number of shell n=4 or 5 or 6 etc.

 

 

Does anyone know to do this with ilogic?

 

 

0 Likes
1,436 Views
4 Replies
Replies (4)
Message 2 of 5

mdavis22569
Mentor
Mentor

There are a few on this board.   However you'll find far more help on the Inventor customization forum

 

http://forums.autodesk.com/t5/inventor-customization/bd-p/120

 

 

and yes it can be done ..with some true and false and if this is that ..it equals. I'm not great at Ilogic so I won't pretend to try and give you an answer.


Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.

---------
Mike Davis

EESignature

0 Likes
Message 3 of 5

Curtis_Waguespack
Consultant
Consultant

Hi jam_bhatti,

 

In addition to the previous reply, attached is a quick example file that might help.

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

 

 

Example code:

 

'define the array list
IDlist = new integer(){3,4,5,6}
'or you could use this:
'IDlist  = new string(){3.5,4.5,5.5,6.5}

'get the user input
ID = InputListBox("Select an Inside Diameter.",IDlist, ID, "iLogic", "ID Values")
'update all
iLogicVb.UpdateWhenDone = True
'zoom all
ThisApplication.ActiveView.Fit

 

 

 

 

 

EESignature

0 Likes
Message 4 of 5

mdavis22569
Mentor
Mentor

@Curtis_Waguespack  is one of the ones on there that does know Ilogic that I was referring to


Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.

---------
Mike Davis

EESignature

0 Likes
Message 5 of 5

jam_bhatti
Enthusiast
Enthusiast

@ Curtis_Waguespack/mdavis22569

 

i appreciate your quick feedback and please accept my apology to i cannot convey correctly the problem what i want 

find the attached image to express that problem in light of my first post.

 

The diameter remain same, only height and thickness of shall value need to be change in component pattern stages.

 

i hope it can be possible through ilogic/vb.

 

 

 

 

0 Likes