CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE

CAD tip CAD tip # 9659:

Question

CAD 
 %  platform  category 
A
You can use iLogic code to automatically adjust parameters of your Inventor model to yield a specific volume or mass of the model. You can use it in iteration loops without calculating the volume mathematically.

This is a concept - a sample code accessing and increasing the d1 parameter by 10% while checking the resulting Volume of the model (you can replace it with Mass):

ThisApplication.CommandManager.ControlDefinitions.Item("AppUpdateMassPropertiesCmd").Execute
myVolume = iProperties.Volume ' or Mass
MessageBox.Show("Volume before = " & myVolume, "iLogic")
d1 = Parameter("d1")
MessageBox.Show("d1 before = " & d1, "iLogic")
Parameter("d1")=d1 * 1.10
ThisDoc.Document.Rebuild()
d1 = Parameter("d1")
MessageBox.Show("d1 after = " & d1, "iLogic")
ThisApplication.CommandManager.ControlDefinitions.Item("AppUpdateMassPropertiesCmd").Execute
myVolume = iProperties.Volume ' or Mass
MessageBox.Show("Volume after = " & myVolume, "iLogic")
Inventor
100% *CAD
22.1.2014   9470×  
   
this tip shared by ARKANCE experts applies to: Inventor ·

See also:
Tip 15073:How to run an iLogic rule from the ribbon or with a keyboard shortcut?
Tip 14975:iLogic Codeblocks - visual programming in Inventor 2027
Tip 14641:Automatic naming of Inventor drawing sheets according to the first model (iLogic).
Tip 14634:Physical units conversion tool in an Inventor palette.
Tip 14611:Contribution of individual features to the total mass of an Inventor part (iLogic).


Back    All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD: 
OS: 
Categ: 
Text:
 FAQ
  





Please use these tips at your own risk.
ARKANCE is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist