Autodesk Inventor
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
how to create a rule which limits pipe length in iLogic?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
80 Views, 2 Replies
04-24-2012 02:16 AM
How would I go about creating a rule in iLogic which would limit the minimum length of a pipe (parameter = Pipe_Length) to be half the outer diameter of the pipe (Pipe_OD), in other words "Pipe_Length ≥ Pipe_OD/2"
I know you can use the limits wizard in iLogic, but is that not only for numerical values as opposed to parameters?
Thanks in Advance for your answers.
Re: how to create a rule which limits pipe length in iLogic?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-24-2012 05:34 AM in reply to:
Infallable
I would create create a rule like this:
If Pipe_Length < Pipe_OD / 2 Then MessageBox.Show("Pipe length must be no less than half pipe OD!", "Length Warning") Pipe_Length = Pipe_OD / 2 End If
I like to use a message box to communicate to the user why a dimension keeps changing back to something. The first argument in the message box is the actual warning, the second is the title of the message box itself.
Then just force the change to your minimum.
Re: how to create a rule which limits pipe length in iLogic?
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
04-24-2012 05:41 AM in reply to:
Infallable

