Autodesk inventor library automatically create part

Autodesk inventor library automatically create part

k.grigoriou
Enthusiast Enthusiast
471 Views
5 Replies
Message 1 of 6

Autodesk inventor library automatically create part

k.grigoriou
Enthusiast
Enthusiast

Hi!

 

I'm trying a lot of days now to find an easy way to create a lot parts from the library

for example i want to create pipe in every available diameter inside the library for a specific length .

how i can do it with to doing it manually.

0 Likes
Accepted solutions (1)
472 Views
5 Replies
Replies (5)
Message 2 of 6

Gabriel_Watson
Mentor
Mentor

The quick way is making iParts:

 

 

But the right way, for a proper library, is using the Content Center with a custom family:

https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-ECDD0F38-2706-4165-937D-D4E2A8750C4C

Message 3 of 6

CGBenner
Community Manager
Community Manager

@k.grigoriou 

Are you trying to quickly generate every component from a specific Content Center family?  I'm not aware of any quick way to do this with standard tools, but perhaps there could be a custom solution made with iLogic?

Did you find a post helpful? Then feel free to give likes to these posts!
Did your question get successfully answered? Then just click on the 'Accept solution' button.  Thanks and Enjoy!


Chris Benner
Community Manager

Message 4 of 6

k.grigoriou
Enthusiast
Enthusiast

@CGBenner 

 

yes this is exactly what I want to do i trying to find a solution with ilogic but its to complicated for me.

0 Likes
Message 5 of 6

k.grigoriou
Enthusiast
Enthusiast
Accepted solution

i found one solution with ilogic is not so sophisticate it but is working

 

i create one new list inside the library with the name "NUMBER"

 

For i As Integer = 1 To 400
    Dim partNumber As String = i.ToString()
    Dim ASTM_A106_Pipe_Seaml = Components.AddContentCenterPart("occName",
                                                               "Tube & Pipe:Conduits:Pipes",
                                                               "the Family name",
                                                               {"NUMBER", partNumber})
Next

 

0 Likes
Message 6 of 6

CGBenner
Community Manager
Community Manager

@k.grigoriou 

Thanks for clarifying.  I am going to move this thread over to the iLogic forum where someone might be able to help you with this rule.  Good luck!

Did you find a post helpful? Then feel free to give likes to these posts!
Did your question get successfully answered? Then just click on the 'Accept solution' button.  Thanks and Enjoy!


Chris Benner
Community Manager