Automatically inserting parts

Automatically inserting parts

EmreYucel34
Advocate Advocate
352 Views
2 Replies
Message 1 of 3

Automatically inserting parts

EmreYucel34
Advocate
Advocate

Hello, we will select the motor according to the part loads in the inverter nastran or in the inverter itself, can we make the motor selection in the animation about this, why am I asking this because there is such a thing, is the same thing valid in the invertor? So if I need to summarize, according to the changing parameters, the motors will naturally change, so how should we work in Inventor

0 Likes
353 Views
2 Replies
Replies (2)
Message 2 of 3

blandb
Mentor
Mentor

Have you looked into ilogic? Have a series of pick options and have it either place parts based on criteria, or have a base model that will then go and update certain parameters or swap certain parts as needed?

Autodesk Certified Professional
0 Likes
Message 3 of 3

Curtis_Waguespack
Consultant
Consultant

@EmreYucel34 


Yes, you can swap modeld per a parameter change. See the attached simple Inventor 2024 example. It will swap out the blue component with a different model file based on the parameter selected.

 

Curtis_Waguespack_1-1723671810787.png

Curtis_Waguespack_2-1723671820265.png

 

 

 

If Rating = "2 HP" Then
	MY_Motor = Components.Add("MY Motor", "Part 2.ipt")
Else
	MY_Motor = Components.Add("MY Motor", "Part 1.ipt")
End If

Constraints.AddInsert("MyInsert", "MY Motor", "Front Edge", "Part 1:1", "Front Edge", axesOpposed := True)

 

EESignature

0 Likes