AutoCAD Inventor :: Accessing Inertial Properties Using ILogic?

Feb 3, 2011

iLogic has the capabilities to access the physical properties of part files such as mass / area / volume etc. ilogic syntax to read the inertial properties of the part file such as Global Ixx / Iyy / Izz??

I can find it in the API help, but i don't really want to write it as separate code, just want to simply access it through iLogic interface.

Dell Precision M6400 - C2D 2.66 / 8gb / Quadro FX3700M / Win 7 Pro x64

View 4 Replies


ADVERTISEMENT

AutoCAD Inventor :: Export Properties Such As Moment Of Inertial To Partlist?

Feb 1, 2006

Is there a way to export properties such as Moment of inertial to Partlist or use it as a customer property?

IV10 Pro. SP2
Window XP Pro sp2
Pentium 3.2 Ghz, 3.0 GB of RAM
NVIDIA FX 3400 7.1.8.4

View 1 Replies View Related

AutoCAD Inventor :: Accessing Bolted Connections Through ILogic?

Nov 27, 2012

I'm currently creating a program to replace all fasteners in an assembly with there Metric / Imperial opposites. My program works and I've created a log file for any issues that do come up.

My question now is: 

Is there any way to manipulate bolted connections through the API? Or is this not supported yet?

I cannot seem to find anything to do with them. It's strange though as my program creates an error log for the Lock Washers in the Bolted Connection (which it was struggling with previously anyways), but shows the other fasteners as being successful.

View 4 Replies View Related

AutoCAD VB :: Accessing Viewport Properties

Jul 24, 2012

I am trying to have access to the property Custom scale of the Viewport object and trigger a piece of code as soon as I pick the Viewport and change the  zoom / Custom scale property.

View 2 Replies View Related

AutoCAD Inventor :: ILogic Mass Properties Update?

Aug 9, 2012

Is there any way to force an update of mass property values of a component from within an iLogic routine?

I am trying to produce a calibration chart showing the volumes of an irregular shaped object by taking incremental slices off the component and accessing the "volume" of the remaining portion, then writing the the results to an external file - All from within a "For - Next" loop.

The main routine works O.K. but the resultant chart only shows the original starting volume for each slice instead of the required reducing volumes.

I am a novice with iLogic and can only assume that I must somehow "update" the mass properties of the sliced object before reading its new volume on each pass.

View 7 Replies View Related

AutoCAD Inventor :: ILogic To Change Properties On Top Level ASM Components Only

Oct 18, 2013

After changing colors at assembly level only ,below is a rule that changes all parts that have material "Plywood" to poplar works great.

However I want a rule that does the same kind of change but on only temporally at assembly level only then we can change back to default colors by removing color override.

It would be good if we can do the following

Search assembly for .ipt files that have material that contains PlywoodChange to color using temporary override of "Clear - Light" Possibility of searching more materials within same rule ie : "Timber" to be black in color"Pvcu"to be white in color

Dim oCurrentDoc As Inventor.Document
Dim oDoc As Inventor.Document Dim oPartDoc As PartDocument
Dim oRefDoc As DocumentsEnumeratorDim oTargetColor As RenderStyleDim oNewColor As RenderStyleoCurrentDoc =

[Code].....

View 1 Replies View Related

AutoCAD Inventor :: ILogic Code - Change Custom Properties

May 31, 2013

<Subassembly document name>” = iProperties.Value("Custom", "CUSTOMER P.O. NUMBER") iProperties.ValueInDoc("<Subassembly document name>.iam", "Custom", "CUSTOMER P.O. NUMBER")= Ucase(InputBox("CUSTOMER P.O. NUMBER?", "Create Customer P.O.#", iProperties.Value("Custom", "CUSTOMER P.O. NUMBER")))

View 3 Replies View Related

AutoCAD Inventor :: ILogic Material Properties Change (2010)

Oct 12, 2011

why the script below doesn`t change Physical material properties? It changes the thickness of the part, but not material properties on the BOM...

ShThk = InputListBox("Sheet Thickness", MultiValue.List("ShThk"), ShThk, Title := "Choose Thickness", ListName := "Thickness")

' material thickness from multi-value parameter called ShThk
    
    If ShThk = 0.3125 Then
    SheetMetal.SetActiveStyle("5/16"& Chr(34))
    Else if ShThk = 0.25 Then
    SheetMetal.SetActiveStyle("1/4"& Chr(34))
    Else if ShThk = 0.1345 Then
    SheetMetal.SetActiveStyle("10ga")
    else if ShThk = 0.105 Then
    SheetMetal.SetActiveStyle("12ga")
    else if ShThk = 0.1793 Then
    SheetMetal.SetActiveStyle("7ga")
    End If

View 3 Replies View Related

AutoCAD Inventor :: Revision Block - ILogic - Design Tracking Properties?

Jun 21, 2012

Inventor 2012, DWG drawing file Revision table - iLogic

Using iLogic, how to extract data from "Design Tracking Properties" in a revision table to an embedded or linked Excel spread sheet? Design Tracking Properties like "Today's Date", "Designer", "Checked By", "Eng Approved By" are of great interest.

View 4 Replies View Related

AutoCAD Inventor :: Copy Properties Vs Model Properties In Drawings?

Oct 25, 2010

I want to set up my drawings so that the title block displays properties from the model.  I want to set this up so there will be drawing properties to extract into Vault.  So I want to know what other Inventor and Vault users are doing to get model properties into Inventor drawings:  Using model properties in the title block and nothing to extract in Vault or Copy model properties so Vault has data to extract.

I want to know what the best in class practice is?  What are others doing?  I do not want to use iLogic I was out of the box Inventor functionality.

View 4 Replies View Related

AutoCAD Inventor :: Accessing A Parts List?

Nov 15, 2011

We have written a VB6 program for non-Inventor users that uses the Autodesk Inventor Object Library from an install of the Inventor Viewer 2011-2012.  The program collects drawing sets from a VaultMirror folder exported from the actual Inventor vault.  In addition, the program exports assembly parts to a formatted Excel file for purchasing. 

We thought that it worked fine but, have recently found an issue: the program reads and exports ALL items referenced in an assembly, not just items in the parts list.  For a particular assembly that I am using to test with, there are seven items in the parts list but, 23 parts referenced in total in the assembly.  So, we get an Excel export with 23 + line items and when plotting to pdf, get 23 pdf files instead of the seven that should be created.

We are using the ApprenticeServerComponent to open the file objects but, I can't find a parts list.  I have reviewed a number of posted examples of accesing parts lists and opening ApprenticeServerDrawingDocument objects but, nothing seems to work.  It is like I don't have access to all of the object types needed to make it happen.

Should I be trying to open an iam or idw to access the parts list?

Are there any very basic code examples available of accessing a parts list?

View 1 Replies View Related

AutoCAD Inventor :: IAssembly - Accessing Part Parameters

Jul 13, 2012

How we can access the part parameters after hitting create iAssembly. do I need to make i parts first and then bring them to an assembly and make an iAssembly??

View 5 Replies View Related

AutoCAD Inventor :: Accessing Features From A Part In An Assembly

Aug 22, 2012

I'm crating a macro wich would allow me to select multiple parts in an assembly and then calculate the length of each part. The parts are tubes wich are made of a sinlge sweep.

I started from the example truesweeplength, and built from there.

Now my problem is accessing the sweepfeature from the assembly.

In the part enviroment i use this:

Dim oDoc As PartDocument
Dim oDef As PartComponentDefinition
Dim osweepcount As Long  
Set oDoc = ThisApplication.ActiveDocument
Set oDef = oDoc.ComponentDefinition
osweepcount = oDef.Features.SweepFeatures.Count

The sweepcount is simply to check how many sweep features are in the part.

This works fine in part level.Now from assembly level I first create an obecjtcollection from all the parts I selected

Set oOccurrences = ThisApplication.TransientObjects.CreateObjectCollection

Then I try to acces the first occurence

oDoc.SelectSet.Item(1)

But then I'm stuck. I cant find the way to acess the features of the selected part.

View 6 Replies View Related

AutoCAD Inventor :: Accessing A Parameter 3 Sub-assemblies Deep?

Oct 28, 2013

I'm trying to access a paramter thats in a sub-assemby 3 sub-assemby deep, is this possible?

I have tried a few thigns incluiding this, but it doesn't work.

Parameter(MakePath("MegaStalls:1", MakePath("Stall_1", MakePath("Pilaster:1", "xPilaster:1"))), "pilasterHeight")

View 6 Replies View Related

AutoCAD Inventor :: Windows 8.1 Accessing Content Center

Dec 12, 2013

I have installed Inventor 2014 and Revit 2014 on to Windows 8.1 64 Bit.The install went fine.

The only problem I have struck is that for instant if I create a new Assembly and want to open the Content Center from  Assemble - Place - Place from Content Center. Nothing happens when I go through this path way, there's no error, you know it's trying as the harddrive light is flashing away rapidly for a few minutes each time you ask for it to open.

What I have tired so far is to install service pack 1 and update 1 to service pack 1, neither have made a difference.

View 6 Replies View Related

AutoCAD Inventor :: Preserve Functions In IProperties When Accessing With VBA Script

Dec 3, 2012

I made a simple dialog to access some of the iproperties. This is quite handy when working on a drawing of a part, but there is one flaw with this script. If the part's description has a function referencing the parts dimensions for instance, when my script gets the description it gets the plain text and not the formula. Meaning if the part's description is "=<d0> X <d1> X <d2>" and appears as "1 X 2 X 3" the script will get "1 X 2 X 3" and when it resaves the description it will over write the formula with plain text.

Is it possible to get the formula so my script could display that for editing instead of the plain text?

Below is a part of the code I'm using and it's the standard code I've seen for retreiving ipropterties.

Dim invDoc As Document Set invDoc = ThisApplication.Documents.ItemByName(GetToken(PartList.Value, 3, Chr(1))) Dim invDesignInfo As PropertySet Set invDesignInfo = invDoc.PropertySets.Item("Design Tracking Properties") Dim invProperty(1 To 4) As Property Set invProperty(1) = invDesignInfo.Item("Part Number") partnumber.Value = invProperty(1).Value Set invProperty(2) = invDesignInfo.Item("Description") description.Value = invProperty(2).Value

View 1 Replies View Related

AutoCAD Inventor :: Close ILogic Form With VBA Or ILogic Rule

Aug 19, 2013

how can I close an iLogic Form from either an iLogic Rule, or a VBA Rule (VBA is the Preferred method)?

View 5 Replies View Related

AutoCAD Inventor :: Accessing Sheet In Multiple Sheet Drawing

Apr 16, 2012

I have a dwg file with three sheets in, just default names, I can access sheets 2 and 3 but get the attached errors when trying to access sheet 1 form either sheet 2 or 3

This file was originally created in IV2009 I've had no problems then or with the various conversions of it.

It seems to be memory related so here's the sitrep as for memory 8GB DDR2 RAM, and Virtual Memory set at min of 8192MB and a Max of 16384MB, I did have it set a systems managed but that gave a warning of low virtual memory with almost every drawing file that I opened.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Design Copy - Error Copying A File / Inventor Crashes

Nov 5, 2013

I'm trying to use iLogic Design Copy to copy an assembly and all its associated parts to another directory. The assembly contains content center parts. Inventor warns me that the destination file of one of the CC parts (and 18 others) will be overwritten. When I go ahead and copy anyway, the copying process stops at that specific CC part. The Design Copy Progress dialog box states there is an error copying that CC part. When I close the Design Copy Progress dialog box, Inventor crashes.

The error copying the CC part: I'm allowed to use content center parts in iLogic Design Copied stuff, right? I searched some related topics and I'm under the impression that Inventor keeps the CC parts in its own directory and shouldn't be trying to overwrite them.

View 3 Replies View Related

AutoCAD Civil 3D :: Properties Palette Started Only Showing Current Properties For The Drawing

May 22, 2013

the properties palette started only showing the current properites for the drawing and not the properties  of the entity selected. what causes this i am using autocad civil 3d 2013.

View 9 Replies View Related

AutoCAD 2010 :: Properties And Quick Properties Not Displaying Information For Objects

Jul 10, 2012

When I select any object, my quick properties tab is blank and my properties tab doesn't register anything.  Also, I get an error message when I go into my CUI to try to modify the quick properties tab.   Pretty frustrating. I've attached a couple of images for reference.  I've repaired, re-installed and unistalled and re-installed and still have the same probelm.  
 
Dell Precision T3500
Intel(R) Xeon(R) CPU W3530 @2.8GHz
ATI FIrePRo V5800 (FireGL V)
12 GB Ram
64 BIt OS

View 3 Replies View Related

AutoCAD Architecture :: Properties Palette Not Wide Enough / Can't Read Actual Properties

Feb 13, 2013

Somehow the Properties Palette has gotten less wide- such that I can't read teh actual properties.  Previously I was able to make it wider just by hovering over it, clicking on an arrow and dragging it wider.  Not now. 

View 1 Replies View Related

AutoCAD Architecture :: Properties Palette In 2014 Shows Only Current Settings Of General Properties

Aug 13, 2013

It's not just the layer that isn't being displayed in the Properties Palette.    My 2014 Properties Palette isn't contextual--displays only the general info--none of the object specific information. 

View 2 Replies View Related

AutoCAD Architecture :: Properties For AEC Objects Not Displaying In Properties Palette?

Jan 16, 2012

A user showed me today that she cannot see any properties for a wall, door, or other AEC object in the Properties palette.

Some options like height, width, etc. are shown, but not layer, style, etc. from the General portion of the Basic tab.

Is this going to be a reinstall scenario or is there a fix for this?

View 9 Replies View Related

AutoCAD LT :: 2014 - Properties Box Does Not Display Properties Of Selected Object

Jun 6, 2013

I recently upgraded from LT2013 to LT2014. I never had any issues with 2013, but now seem to be battling with 2014. My OS is Windows 7 Home edition.

When selecting an object and then clicking the properties menu, the properties of the selected object are not displayed, but instead the properties of the selected layer are shown.

In the attached screenshot:

1) My active layer is "AM_VIEWS".

2) The layer of the object that is selected is "MEDIUM".

3) The properties dialog box shows the properties of my active layer and not the selected object.

I am therefore unable to override any settings of the selected object and manually change settings e.g. Linetype, Linetype scale etc.

View 2 Replies View Related

AutoCAD LT :: Many Perimeters For Dimension Properties Not Showing In Properties Palette

Mar 8, 2013

I recently had to reinstall my AutoCAD LT 2008 and now when I open the properties palette to make adjustments to dimensions and fine tune, many peramiters that used to be visible are no longer there and accessible.  I used to be able to adjust the dimscale as needed in the properties window, but can't now.  How do I get it back?

View 7 Replies View Related

AutoCAD Inventor :: IPN Properties In Drawing?

Jun 20, 2012

Is there any way of accessing the properties from an IPN in a drawing as opposed to its assembly - which seems to be the  default.

View 2 Replies View Related

AutoCAD Inventor :: Possible To Match Properties

Jul 9, 2013

Its it possible to match properties in inventor like AutoCad

View 2 Replies View Related

AutoCAD Civil 3D :: Properties / Quick Properties Won't Display?

Sep 10, 2013

For the last couple weeks I've been unable to view object properties or quick properties. If I right click on an object and select quick properties, a blank window comes up:

Similarly, if I bring up a properties window and select an object, the selection field remains blank and the object property fields are not populated with information relating to the selected object:

View 2 Replies View Related

AutoCad :: Attributes Not Displaying In Properties Tab Or Quick Properties

Jun 11, 2013

I finally got some Lisp scripts working. They generate a block library from a CSV file. The script reads the file, and generates a simple rectangular block based on dimensions on the line. I have another script that can read a csv of block names and values, and add these as attributes to the block.

The attributes added are simple, like "weight" and "max stack qty". I would like to be able to see these values in the properties tab or in quick properties. In my CUI I have "Display Custom Attributes" checked under "block reference".

However, when I select a block, no attributes show up. I can get it to show me things like "name" and all of the scaling values, just no attributes.

View 0 Replies View Related

AutoCAD Inventor :: BOM Settings And Properties - Greyed Out

Jul 14, 2009

why the BOM settings would be greyed out, when trying to add a BOM to a drawing? I also can not expand sub-assemblies.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved