iLogic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I am stuck using inventor iLogic, I understand the action I want iLogic to perform but I am unsure of how to make it do what I want.
I am designing a headbox for one of our products, the headbox has a standard size of 210mmH x 210mmW. However, the headbox changes in size depending on the size of other components (the guides).
The rule i have created so far looks like this:
If structural_opening_width = < 2500 Then
headbox_depth = 125
headbox_length - 150
End If
The issue seems to be with the < sign. Can anyone advise on how to make this work so that if the structural opening is less than 2500 then the part will change to the sizes detailed above?
The next issue to tackle will be that the next size of the headbox is between two sizes, the code might look like this:
If structural_opening_width = 2501>x<5000 Then
headbox_depth = 150
headbox_length - 150
End If