iLogic Rule to suppress feature based on sketch dimension

iLogic Rule to suppress feature based on sketch dimension

Anonymous
Not applicable
1,005 Views
2 Replies
Message 1 of 3

iLogic Rule to suppress feature based on sketch dimension

Anonymous
Not applicable

Hello,

I'm new to iLogic and making rules in Inventor and I have a question.  I was wondering if it is possible to suppress an extruded feature in a part file based on a dimension in the sketch it was extruded from.  If the dimension value is less than say 96" it is suppressed, if its greater than 96" then its visible.? 

 

Thanks for the hep,

Bob

0 Likes
Accepted solutions (1)
1,006 Views
2 Replies
Replies (2)
Message 2 of 3

mcgyvr
Consultant
Consultant
Accepted solution

Sure..

Here is an example.. My dimension is "Cap_Height" (could be d7 or whatever the dimension is)

If its less than .750" then Fillet1 is suppressed.. if not its active..

 

If Cap_Height < ".750" Then 
	Feature.IsActive("Fillet1") = False
Else Feature.IsActive("Fillet1") = True
End If

 

 



-------------------------------------------------------------------------------------------
Inventor 2023 - Dell Precision 5570

Did you find this reply helpful ? If so please use the Accept Solution button below.
Maybe buy me a beer through Venmo @mcgyvr1269
Message 3 of 3

Anonymous
Not applicable

McGyvr,

 

Perfect!  Thanks for the help, I appreciate it.

 

Bob

0 Likes