Announcements

Starting in December, we will archive content from the community that is 10 years and older. This FAQ provides more information.

Collection of iLogic Models For Beginners

S_May
Mentor
Mentor

Collection of iLogic Models For Beginners

S_May
Mentor
Mentor

Hello together,

 

Collection of ilogic models for beginner.
Without liability, and the models are not all of me (collection of AUTODESK and internet).
Please expand......

 

So that all can learn in everyday life Smiley Happy

So that everyone can see what you can do with inventor.

 

2017-08-09 09_42_51-Autodesk Inventor 2016 - [LP2 Disc Pack Coupling.iam].png

 

 

Replies (54)

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

S_May
Mentor
Mentor
Accepted solution

from @GÖÖÖ, thx...Smiley Happy

 

' set a reference to the assembly component definintion.
Dim oAsmCompDef As AssemblyComponentDefinition
oAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition

'Iterate through all of the occurrences
Dim oOccurrence As ComponentOccurrence
For Each oOccurrence In oAsmCompDef.Occurrences
	'check occurence BOM Structure and component definition BOM Structure
	If oOccurrence.BOMStructure = BOMStructureEnum.kReferenceBOMStructure Or _
	oOccurrence.Definition.BOMStructure = BOMStructureEnum.kReferenceBOMStructure Then
		'set color 
		Component.Color(oOccurrence.Name) = "Red"		
	End If
Next

 

Anonymous
Not applicable

Hi S_May,

 

Nice collection, thanks for sharing Smiley Happy

JMGunnar
Advocate
Advocate

Thank that you like it......

The Stair

 

Johan

gavbath
Collaborator
Collaborator
Accepted solution

Here's one I created for a blog post a few years ago. The model is attached, and the information about it is here:

https://designandmotion.net/autodesk/inventor-excel/

 

iLogic-Engineering.png

 

Hope you find it interesting.

Gavin Bath
MFG / CAM Technical Specialist
Design and Motion Blog
Facebook | Twitter | LinkedIn | YouTube


   

admaiora
Mentor
Mentor

Amazing work Gavin!

Admaiora
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

_____________________________________________________________________________
Facebook | Twitter | Youtube

admaiora
Mentor
Mentor

just a question       @gavbath

 

You are assuming in this study that the tank and the fluid and the have the same density (ipt) , and so you can calculate the COG.

 

Is it correct?

 

 

Admaiora
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

_____________________________________________________________________________
Facebook | Twitter | Youtube

0 Likes

Anonymous
Not applicable

Hi,

 

This is a really powerful example, however, I can't get it to work due to the missing DLL reference. Would it be possible to get a copy of this please? 🙂

0 Likes

gavbath
Collaborator
Collaborator
Hi Paul. That’s odd. I don’t remember including any external dlls. There shouldn’t have been a need as it was all core iLogic. Can you post a screenshot or the name of the dll it’s looking for?
Gavin

Gavin Bath
MFG / CAM Technical Specialist
Design and Motion Blog
Facebook | Twitter | LinkedIn | YouTube


   

0 Likes

gavbath
Collaborator
Collaborator
Hi admaiora, this is just a really simple example, so the model is only the fluid volume. To make it more accurate, you’d need to do it as an assembly I guess.

Gavin Bath
MFG / CAM Technical Specialist
Design and Motion Blog
Facebook | Twitter | LinkedIn | YouTube


   

0 Likes