Collection of iLogic Models For Beginners

Collection of iLogic Models For Beginners

S_May
Mentor Mentor
31,254 Views
54 Replies
Message 1 of 55

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)
Message 21 of 55

S_May
Mentor
Mentor
Accepted solution
Message 22 of 55

S_May
Mentor
Mentor
Accepted solution
Message 23 of 55

S_May
Mentor
Mentor
Accepted solution
Message 24 of 55

S_May
Mentor
Mentor
Accepted solution
Message 25 of 55

S_May
Mentor
Mentor
Accepted solution
Message 26 of 55

S_May
Mentor
Mentor
Accepted solution
Message 27 of 55

S_May
Mentor
Mentor
Accepted solution
Message 28 of 55

S_May
Mentor
Mentor
Accepted solution
Message 29 of 55

S_May
Mentor
Mentor
Accepted solution
Message 30 of 55

S_May
Mentor
Mentor
Accepted solution
Message 31 of 55

S_May
Mentor
Mentor
Accepted solution
Message 32 of 55

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

 

Message 33 of 55

Anonymous
Not applicable

Hi S_May,

 

Nice collection, thanks for sharing Smiley Happy

Message 34 of 55

JMGunnar
Collaborator
Collaborator

Thank that you like it......

The Stair

 

Johan

Message 35 of 55

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


   

Message 36 of 55

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

Message 37 of 55

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
Message 38 of 55

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
Message 39 of 55

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
Message 40 of 55

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