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    8793×  
applies to: Inventor ·

See also:
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).
Tip 14527:Search/Replace texts in Inventor drawings - iLogic.
Tip 14489:Multiline header of a parts list in an Inventor drawing.


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
  



Featuring:
Take advantage of orthophotos, point clouds, and design files. Get better quality design changes faster with Pointscene More info


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