CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 9324

CAD tip CAD tip # 9659:

   
Question CAD 
 %  platform  category 
Q - question

iLogic: adjusting model parameters to match model volume or mass

A - answer 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    7642×  
Prices - CAD eShop:
applies to: Inventor ·

See also:
Tip 13965:Total length of sweeps in Inventor - wires, pipes, trusses, tubes, hoses (iLogic)
Tip 13963:Sum of pipe element lengths in Inventor (iLogic).
Tip 13920:Saving your Inventor model in the presentation color scheme (iLogic).
Tip 13911:How to print all sheets at once from Inventor?
Tip 13884:How to send e-mails with an iLogic macro?


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 glossary   



Featuring:
Extend your AutoCAD LT productivity with our popular add-on
CADstudio LT Extension More info


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