AutoCAD Inventor :: Physical Update Using ILogic?

Oct 12, 2011

Currently I am using I-logic and a form.  I have an assembly that I am pushing a volume from a part to the main assembly.  The volume updates in the part fine.  The issue is with the form is not updating when the file parameter updates.  If I exit the form and run the rule manually then the form updates.  how to update the form at the same time?

View 1 Replies


ADVERTISEMENT

AutoCAD Inventor :: Update Physical Properties From Drawing?

Aug 30, 2011

how I can update the physical properties for a part or assembly, from a drawing? My drawing template is showing the total weight for the current part/assembly, and I would love if Inventor could update this using iLogic, so I don't get the "N/A" value all the time. 

View 5 Replies View Related

AutoCAD Inventor :: ILogic Update Form

Sep 13, 2013

I´m having a bit of an issue with a form.

I have a global form which is exactly made for a specific assembly for configuration of this very assembly. To make things easier for the user I call another external rule which only opens exactly this assembly.

Now when the user opens the form the assembly is not open and obviously can´t reference the used parameters.

Even after loading the assembly the parameters are not available, which results in something like this:

So this is a really simple question, is there a way to update a form so that it rereads the parameters from the assembly?

What I tried is using iLogicForm.CloseGlobal("Name of form") to no availability and then open it again with iLogicForm.ShowGlobal("Name of form").

But I couldn´t find any further info on the iLogicForm Commands.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Update Styles On DWG

Dec 21, 2011

I am after a way of accessing the update styles on dwg so that I can run with rule below as most of our drawing stds have changed and old dwgs need updating the work flow is as follows.

 I need to access manage tab then update styles,then yes to all,OKUpdate all sheetsfind all parts list within all sheet and then annotate , style on format tab and then select Parts list - this will change all my old parts list to current style definition.Either run at begining of code below or run as seperate code

On Error Resume NextDim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocumentDim Sheet As Inventor.SheetDim Cursheet As String Cursheet = oDrawDoc.ActiveSheet.Name For Each oSheet In oDrawDoc.Sheets oSheet.ActivateDim oPartsList As PartsList oPartsList = oDrawDoc.ActiveSheet.PartsLists.Item(1)If Not oPartsList Is Nothing Then Resume Next'Call oPartsList.Sort("ITEM")Call oPartsList.Sort("PART NUMBER", 1, "DESCRIPTION", 1, "QTY", 1)iLogicVb.UpdateWhenDone = TrueActiveSheet = ThisDrawing.Sheet("Sheet:1")ThisApplication.ActiveView.FitEnd If Next

View 4 Replies View Related

AutoCAD Inventor :: Put Immediate Update Box On Ilogic Form

Aug 17, 2012

I am trying to put an immediate update box on my form in ilogic.  I want to be able to change parameters on my form without updating the model.  There is this option in the parameters window but not in the form.  How can I accomplish this?

View 1 Replies View Related

AutoCAD Inventor :: ILogic To Update Some Prints

Jul 28, 2012

I am new to the ilogic. I am wanting to use ilogic to update some prints as needed.

 I need to create and external rule to:

1) migrate the drawing to the lastest inventor version (2012),

2) copy all drawing resources (borders, title blocks, and sketched symbols) from a template file (.idw),

3) replace the title block and border with specified block and border. 

View 9 Replies View Related

AutoCAD Inventor :: ILogic Unable To Update Title In IDW

Mar 29, 2012

I have an ilogic assembly that I change to different widths. And I want ilogic to put the part number into the title block according to the size of the assembly.

What I have works but won't update on its own. I have to open the ilogic rule and close it, then open the i properties of the idw and close before it will update.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Subassemblies Won't Update Unless In Their Own Environment

May 2, 2013

I have an assembly which is made with a sub assembly. The sub assembly has iLogic code that both resizes it's parts and suppresses parts that arn't needed after a change in length.

View 5 Replies View Related

AutoCAD Inventor :: How To Update Drawing Template With ILogic

Oct 8, 2013

I made iLogic for assembly and drawing, now i want to update drawing template parameters thru ilogic, as i already linked Fx(parameters) & iProperties to Template, but for updating template i need to close file and open again that file,

currently m using this method.

What is the solution for updating drawing template (like Model Description, Drawing no.).

View 3 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 :: Update User Parameter With Ilogic

Dec 28, 2013

Is it possible to update an existing User Parameter. While I can only  delete-create a new. In this case the connection is lost with BOMQuantity.

View 5 Replies View Related

AutoCAD Inventor :: ILogic Dynamic Parameter Update Off?

Aug 4, 2013

The rule iterates through an assembly looking for parameters. If it finds them it 'pushes' the value down from the top level Assembly into the sub-components.

It works well, but each component updates dynamically as the parameter value is changed. This looks a bit jerky and weird.Is there any way to write the script so the the updates all happen at once at the end?

' set a reference to the assembly component definintion.' This assumes an assembly document is open.Dim oAsmCompDef As AssemblyComponentDefinitionoAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition'Iterate through all of the occurrencesDim oOccurrence As ComponentOccurrenceFor Each oOccurrence In oAsmCompDef.Occurrences'check for and skip virtual components'(in case a virtual.
[code]...

View 7 Replies View Related

AutoCAD Inventor :: Update And Save Assembly Through ILogic In Drawing?

Jul 10, 2013

as a part of automating manufacturing drawings, am trying to include ilogic code in the drawing , that would accept values from the user and store it as "user parameters" and make corresponding changes in the inventor drawing file.So, to replicate my issue on a smaller scale, i had created 2 parts and created an assembly out of these 2 parts. I used the assembly in my drawing.

In the Drawing i created a user parameter .. say "external_param". I am opening the drawing and changing the value of the user parameter through the (Fx) parameter table. 

doc = ThisDoc.DocumentIf external_param >= 50 And external_param <= 99 ThenParameter("block_1.ipt.d0") = 15 'change the length of the blockParameter("block_1.ipt.d14") = 3 'change the number of holes in the blockElseIf external_param >= 100 And external_param <= 199 ThenParameter("block_1.ipt.d0") = 40Parameter("block_1.ipt.d14") = 5ElseIf external_param >= 200 And external_param <= 299 ThenParameter("block_1.ipt.d0") = 80Parameter("block_1.ipt.d14") = 6ElseIf external_param >= 300 And external_param <= 399 ThenParameter("block_1.ipt.d0") = 160Parameter("block_1.ipt.d14") = 9End IfRuleParametersOutput()iLogicVb.UpdateWhenDone = True'InventorVb.DocumentUpdate()
 
As you can see, i have commented out InventorVb.DocumentUpdate() , im not quite sure what would accomplish the update and save of the assembly document in the background (without prompting for a save/update). I have also tried thisDoc.Save and thisdoc.update. Using these 2 commands along with the InventorVb.DocumentUpdate() or iLogicVb.UpdateWhenDone caused Inventor to Crash.

View 4 Replies View Related

AutoCAD Inventor :: Open And Update Drawing From Assembly Via ILogic

Nov 12, 2012

The right click context menu on the top level assembly (on the model tree in Inventor) has the option of 'Open Drawing'.

Is there a way to do that via iLogic? Unfortunately I can't figure it out if there is. I would like to open and update the relevant drawing.

Also have tried it the other way around, that is to run my rues in the assembly from the drawing since the drawing is the parent. But I am not sure how to reference the assembly.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Update Color Of A Derived Part

Jun 4, 2013

I'm running an iLogic based model where I have a technical housing with 2 cover parts on top.

The first cover part is the basic part.

I use iLogic to assign a RAL-color to several parts in the assembly, also to that cover. The color is assigned to several features of the cover part.

The second cover part is almost identical to the first one.

So my first feature in the second cover part is a derived part of the 1st cover. I derived all the bodies.

When I'm in my assembly and I pick a RAL-color in my created customization form, the RAL-color only changes in the 1st cover part (the original), but it doesn't change in the second cover part, the derived body.

But....

when I manually open the 2nd cover part, and I right click on the derived feature and click on 'Edit Derived Part' ; the new color shows up immediately!

So, my question is if there is a rule for iLogic to update the color automatically?

View 5 Replies View Related

AutoCAD Inventor :: ILogic Syntax For Searching In Excel And Update IProperties

Dec 17, 2013

I want a ilogic rule syntax for following process:

I have one excel sheet it consists around 5 sheets for Plate, Flats, Rounds, etc. When i am run the rule then it will ask and do the following:

Ask the thickness value.It will search thickness value in “D:LINUS KOTTEstock numbers.xlsx” in sheet 1If thickness value found then fill the stock number in iproperty(project tab-stock number)   

Here i am using different rules for plate, flat, round, etc.,

View 2 Replies View Related

AutoCAD Inventor :: (iLogic ) Automatic Update Flat Pattern Extents?

Sep 12, 2011

How to make Automatic Update propeties for Flat Pattern Extens. I have write code and setting rules trigerred by event (Before save, Any model Parameter Change) but if some parameter change properties isn't automatic update. So could some one tell me how to solve this problem.

Part with iLogic code is attached

View 9 Replies View Related

AutoCAD Inventor :: Ilogic - Sheet Metal Part Auto Update

Oct 18, 2013

i made a sheet metal part.ipt but that file is not updating immediately, i have added

iLogicVb.UpdateWhenDone = True
InventorVb.DocumentUpdate()

also tick marked in parameters for IMMEDIATe update

View 3 Replies View Related

AutoCAD Inventor :: Update Idw Title Blocks From Template File With ILogic

Jun 6, 2013

I am trying to create an iLogic (or VB) rule to update an active drawing title blocks from our Template File.I don't want to use any of the external software (Transfer Wizard etc), we just need a simple rule that will update the title blocks when we need to.

View 9 Replies View Related

AutoCAD Inventor :: How To Stop Automatic Update In ILogic While Entering Values In UI

May 19, 2013

I have one problem in ilogic i developed the model using ilogic rules and dimension values updated through the User interface form.

problem is while entering the values in UI, model updates automatically, but I want to stop automatic update and after entering the all the parameters in the UI then click the done button only update the model.

My UI is like this

It's possible.

View 3 Replies View Related

AutoCAD Inventor :: Ilogic Function To Update Local Styles To Match Style Library

Feb 21, 2013

ilogic function to update local styles to match Style Library?

I have a snippet of code that, on a drawings, deletes the current parts list (if one exists), then inserts a new parts list which I want to be up to date with the Style Library.

Autodesk Inventor Professional 2011
Windows 7 Enterprise, 64-bit

View 4 Replies View Related

AutoCAD Inventor :: Add New Materials To Physical Properties?

Jun 29, 2010

Two questions.

Is there a way to add new materials to physical properties?

Is there a cloud feature in Inventor for drawings, or is that something that can only be done in Autocad Mechanical and Mechanical Desktop?

View 5 Replies View Related

AutoCAD Inventor :: Physical / Mass Properties

Nov 8, 2011

I have recently made a bucket for chain (linked) and was looking to put the chain in the bucket for visual purposes and to see if the capacity of the bucket is correct. 

I can get the chain linked together, however when rotated round it passes through another piece of chain. 

Is there a way in inventor to tell a part/assembly of it’s physical/mass properties? I know you can make something mild steel and get weight etc, however if not constrained it still passes through as if it’s a ghost.

View 4 Replies View Related

AutoCAD Inventor :: Unable To Get Physical Properties Notation?

Oct 17, 2012

I have some issues with the notation for physical properties in the Inventor 2013 material editor.

Instead of displaying the obvious first choice metric SI notation kg/m^3 or something similar it display a self made? and awkward N*s^2/mm^4. I don't want this notation. How can I change to something more user friendly? It can be a bit hard to distinguish if a material have 0.00000000001 N*s^2/mm^4 or 0.0000000001 N*s^2/mm^4.

The document properties "units" folder have mm, seconds, degree and kilogram as default. 

View 6 Replies View Related

AutoCAD Inventor :: Adding Physical Properties To STP Files?

May 10, 2012

I'm trying to add some material properties to a STP or IGES file I've received from a customer (in Inventor 2011). Is there any way to add a density for example, so I can obtain the mass of the model? I've tried doing it through the iProperties menu but it's not giving me a mass.

View 3 Replies View Related

AutoCAD Inventor :: 2013 Not Dumping Physical Memory

Dec 13, 2012

We recently moved from Inventor 2010 to 2013. Since then we have been having alot of lag problems. One major problem we have found that is giving us lag is our RAM usage. Inventor continually steals more and more ram until its starts to lag out. When I open a large assembly inventor goes from useing 1.2 GB to 4 GB of ram. When I close the assembly the RAM usage stays at 4 GB. If I open another assembly it just builds onto that and can go up to 6  GB before it starts lagging badly. Closing inventor dumps the physical memory.

System:
windows enterprise (no service pack) 7-64 bit  
intel(r) Xeon(r) CPU (2 processors)
9 GB RAM
Nvidia Quadro FX 4800 graphics card

View 8 Replies View Related

AutoCAD Inventor :: Duplicate Material Within Same Physical Assets?

Nov 2, 2013

When I duplicate the Material in the Material Browser all appearance and Physical properties are duplicated too.

So I must accept or assign the new unique names for appearance and Physical purposes of Material.

In my case I need, for example, the same Material with different appearance, for example knurled and regular.

I cannot save the new Material with existing Physical properties name and it makes unwanted copies like Steel(1), Steel(2) in Assets.

After I made a copy I can reassign the Physical properties back to existing but it takes a time of replacing assets and deleting unwanted copies.

Is it possible to make a copy within the same Physical Assets?

View 2 Replies View Related

AutoCAD Inventor :: Adding Physical Boundaries In Assemblies?

Apr 27, 2012

How do I set a constraint where 2 parts are attached to each other but do not phase through. For example if I have a door in a door frame, how do I add a constraint where the door can swing on it's hinges but get stopped by the door frame.

View 1 Replies View Related

AutoCAD Inventor :: Physical Property - Model - Mass Not Updating?

Oct 21, 2013

I have a .iam and .idw that i copied/designed from vault. The .idw has a sketched symbol that has a text box with the mass property. When update mass is applied the mass property in the text box does not. I ran into this once before and got it to work by re-inserting the symbol into the .idw but I can't get it to work. The orginal that was copied from works fine.

IV2013

Vault Collaboration 2013

View 3 Replies View Related

AutoCAD Inventor :: Actual Physical Texture (not Simulated Appearance Textures)

Oct 4, 2012

Inventor seems to do lots to allow for simulated appearance textures.   However, how does one use actual physical textures, e.g. for a plastic part?    I need one surface of the plastic part to be very rough/bumpy, another to be slightly rough/bumpy, and another to remain smooth/untouched.

Let me be forthright and say I have no background here in textures/plastics/molds etc.,

View 3 Replies View Related

AutoCAD Inventor :: Material Browser Physical Properties In Metric - 2013pro

Aug 23, 2012

Al my projects, settings and templates use the Metric system.

When i open the material physical properties i see the Imperial System.

How can i change this ?

View 2 Replies View Related







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