AutoCAD Inventor :: How To Use Different Configuration Of Parts Made With ILogic In Assembly
Oct 31, 2013
How to use different configuration of parts made with iLogoc in assembly? I want to have equal part with different configuration. I have a problem with the equal files.How to use different configuration of an assembly made with iLogic in assembly?
View 4 Replies
ADVERTISEMENT
Jan 9, 2014
I would like to count all my parts in the main assembly and assign that amount to each part.
Example: Main assembly has: 10 Parts A and 5 Parts B. I would like to run a rule that "sends" that "10" to Part A.ipt and the "5" to Part B.ipt
I would like to assign it to iProperties.Status.Status. I start to understand iLogic more and more but it is nice to get a little boost in the right direction.
View 4 Replies
View Related
Oct 6, 2011
I Created an iLogic Rule that sets up some parameters.
I want to Automatically opens each and every Part in my assembly, run this Rule, and then save it without me having to do so manually.
View 8 Replies
View Related
Feb 13, 2012
I have a iLogic assembly with some parts and sub assembly. I need to do a copy of this " Generator " to apply the result later in other assemblies. (something like a member of a ipart or i assembly).
Is there any way to do the copy the assembly to a new folder without the suppressed parts and subassemblies (wich are suppressed in the initial main assembly by iLogic rules)?
I tried to use "Pack and go" and "iLogic design copy", but they always bring the suppressed parts and assembly's, to the new folder and which i don't need to apply in the other assemblies.
View 1 Replies
View Related
Oct 9, 2013
I have used Inventor for quite a while but never for much more than the odd 3D model.
I have recently created templates that allow me to use Inventor to create detailed fabrication drawings rather than relying on AutoCAD. But I have run across a question with regards to the BOM. Let me try and explain my issue.
I currently create assemblies for fabricated items. However, in the complete (or top level assembly) there may be multiple fabricated items (assemblies required). At the moment I create the BOM and manually edit the quantities required to reflect the number of assemblies (and resulting parts) that are required.
In my assembly file I created a parameter called "AssemNo" which is meant to reflect the number of assemblies required. In my part files I created a parameter called "AssemQty". I would insert the following iLogic code for each part in the assembly:
quantity - This.BOM.CalculateQuantity("Model Data", "PartNumber")*AssemNo
Parameter("Part Name:1", "AssemQty") = quantity
This works but it requires me to create that line of code for every part in my assembly. I know an iLogic code can be created to search an assembly and change parameters of all parts (see below as an example to copy Occurence name to iProperties >
' set a reference to the assembly component definintion.
' This assumes an assembly document is open.
Dim oAsmCompDef As AssemblyComponentDefinition
oAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition
'Iterate through all of the occurrences
Dim oOccurrence As ComponentOccurrence
For Each oOccurrence In oAsmCompDef.Occurrences
Dim oName As String
oName = oOccurrence.Name
iProperties.Value(oOccurrence.Name, "Project", "Part Number") = oName
MessageBox.Show(oOccurrence.Name, "iLogic")
Next
Can the two be combined?
View 3 Replies
View Related
Aug 19, 2012
Is there a way using ilogic,that when you select/highlight a part within an assembly and run the code that it will turn on the Origin planes only and also turn turn them off ?
View 5 Replies
View Related
Aug 29, 2013
A client was looking to develop a custom interface for documenting iAssemblies.
Would it be possible with iLogic to:
1. Show form.
2. User selects a Browse button to select iAssembly to document.
3. List all iAssembly configurations in the form.
4. User picks configuration.
5. Select OK to create base view, projected view, and Parts List.
This may require API.
View 7 Replies
View Related
Mar 7, 2012
I have an assembly that is identical to another assembly with the exception of 2 or 3 components. I want to create 2 different configurations of the assembly, e.g. 12345-009 for the original assy and 12345-019 for the similar assy that has a couple of different components and/or additional components. I can create the -009 assembly and then do a "Save As" for the -019 assy and do a "Component/Replace" and add (or delete) other components.
I want both of these assemblies to be on the same drawing with a base number of 12345. I know I can do this and create a separate parts list (BOM) for each configuration and put it on the drawing. Is there a way to "merge" the two PLs so that there is a quantity column for each configuration (-009 and -019)? For example, if the same gear is used in both assemblies, I want a quantity of 1 in each column. If a component is used in one but not the other, i want only the quantity to show up in the appropriate configuration column.
I am using Inventor 2011.
View 1 Replies
View Related
Aug 4, 2012
I'm creating a drawing for an iassembly, and I can't get the parts list to automatically show a specific configuration's BOM. I've tried filtering, "Ballooned Items Only," and that doesn't change anything. I've tried to create a parts list that looks at the child assembly, and the parts list reverts to the parent iassembly.
In the Browser, there's a lightening bolt next to each parts list in the tree. There are three parts lists/configurations.
The parts list lists parts that aren't in the assembly shown, and/or shows wrong quantities. I can manually update the bom, but I would much rather not. Is there a macro or add in that may be useful? I'll be making many prints from iassemblies, and this would be very useful.
View 2 Replies
View Related
Sep 18, 2012
We have an iLogic assembly with to parts in it. Maybe to cylindrical parts. The iLogic rules should do the following.
1. Start a Rule after open document.
2. This Rule starts a Rule in the first cylindrical component.
3. This Rule ask the user for a diameter.
4. The assembly gives this new parameter value to the second component
5. Then the assembly calls another rule in the second component to change it with the new parameter
Everything is working fine when the following combinations are taking place:
1. I open up the assembly out of vault or from a local drive or an accessible server drive
2. I insert the assembly as sub assembly in another assembly from a local drive or an accessible server drive
It don't work with the following situation:
- I insert the assembly as sub assembly in another assembly out of vault
Then the user becomes the dialog "Choose a diameter" twice.
I don't know why, but I have the idea it has something to do with the functionality of inventor to insert a component more than once. If you insert a component in an assembly Inventor gives you the opportunity to add more than one occurence after each other.
change that behaviour? Maybe a switch to change that inventor "add more than one occurence" behaviour.
View 1 Replies
View Related
Nov 9, 2011
I want to be able to control the location/position of a component in an assembly. This is easy enough through the iProperties/Occurrence tab and then adjust the location of the X,Y, and Z offsets. Is this possible using iLogic? I have been unable to find a function to access via iLogic. Ultimately I am trying to translate a component about an axis not a pattern.
View 1 Replies
View Related
Jul 10, 2012
I'm looking for the best way to create a separate assembly out of various component parts in an existing assembly so that the whole thing can be placed in an assembly as you would a part, I know it's possible to demote components within an assembly but are there any other methods similar / better ?
View 2 Replies
View Related
Oct 30, 2012
it is possible to make a constraint that utilized a parameter of a part within the assembly.
For example, if I wanted to use the thickness of a plate, which I defined in the part, could I call that parameter in a constraint?
View 1 Replies
View Related
Oct 31, 2011
My assembly has grown (about 50 parts) to where I need to consolodate some parts into subassemblies for reuse and alternate iterations of the basic design.
When I import the original parts into a new assembly, all of the constrains I created are not there of course.
I've tried creating a new empty part and then deriving a new part from the assembly, but I can't add, delete or edit any parts.
I looked at using Shrinkwrap, Substitutes, iParts, Multi-body Parts, and Multiple Solids but I remain confused.
In retrospect, maybe I should have created the subassemblies between the part and assembly stage but I didn't.
View 4 Replies
View Related
Nov 28, 2011
Can I select a bunch of parts in an assembly and say "save these pieces as a new assembly"?
It is just such a needed tool but I cant find an easy way to accomplish this.
View 2 Replies
View Related
Oct 22, 2012
I have an assembly that changes daily and drawings made at each step of the way using .dwg format. The problem is, that when I add something to the assembly, it addes it to the drawings already made and as a result losses dims and notes that I made. Is there a way to set the dwgs so that all new items added to the model automaticly are no visible in the drawings that were already created. I spend a lot of time changing old drawing to what they used to be.
View 2 Replies
View Related
Jan 9, 2012
How do you separate two objects that are considered to be the same body.
I have an car airbox made up of two separate solid objects. How can I separate them? see the attached image for a better understanding of my situation.
View 9 Replies
View Related
Jul 18, 2013
The need for a way to get a rebar schedule made referencing my Inventor parts. Like to know if you can create your concrete walls, slabs, beams etc... and either place rebar in these Inventor files and then create some type of rebar schedule (table?) or something. Or take the concrete walls, slabs, beams etc... and import into another Autodesk product like Revit and have this create the schedules and then export back to Inventor. Is any of this been done or possible? Want Inventor to have the end product.
View 3 Replies
View Related
Jul 24, 2012
In autodesk inventor 2013 is there a file format (for example .igs, stl, solid works format, catia, pro/E format, etc) that when imported into inventor will appear with its detailed history tree? for example if I try to import a solid works part into inventor 2013 will it appear as one block or will it have its history tree showing the original sketch and other features that were used to make it? If all imported parts will appear as blocks in inventor 2013 regardless of there format, does this latest version of the software have tools similar to direct modeling software (such as KeyCreator) that make it easy to make changes to the 3D imported part, without having to completely remake the part in inventor? Are such tools in the inventor fusion 2013 software instead?
View 9 Replies
View Related
Jan 19, 2012
Can a tabled part in an assembly be made adaptive? Adaptivity for my tabled part is greyed out.
View 1 Replies
View Related
Oct 9, 2013
I'm trying to make a drawing of a assembly, and some of the parts were made in frame generator. When I try to make a section view the parts made in frame generator still show as whole instead of halved. Is there something that I need to toggle or vice versa so that this will not happen anymore?
View 4 Replies
View Related
Oct 7, 2011
I am fairly new to Inventor and have recently just finished drawing up a machine made of many parts and sub assemblies and then made into one master assembly. Due to the nature of some hole positions i decided to draw some holes directly on the Master assembly thinking it would then change the original sub assembly/part file. Apparently not as i found out making technical drawings.
How i can rectify this so i dont have to re-draw all the holes on part level and keep my constraints in place?
View 1 Replies
View Related
Jun 18, 2013
I want to create a flat pattern of a sheet metal-part that I've used in an assembly. In this assembly I've made cut-outs in some of the parts (see attached .png). Is it possible to get at flat pattern of the specific parts with the cutouts? I can e-mail a ZIP-file with the assembly (the file was too large too attach).
Running Inventor professional 2013
View 7 Replies
View Related
Jan 11, 2012
i placed an ilogic component (wich i use as a template to later change dimentions) into an assembly file after changing dimentions i placed the same "template" ilogic component into the assembly but when i want to change something on the second component it also changes the first one and that only happens with only one feature of the component the other features work fine.
View 2 Replies
View Related
Apr 4, 2013
I have numerous step files which I have imported into an assembly. I now need to move all the imported files to a predefined UCS (not 0,0,0). I can do this manually by using the assemble command and selecting the centre point then selecting the centre point of the pre-defined UCS.
I have potentially thousands of parts to move in various assemblies, is there a way to do this using iLogic and if so, how?
View 2 Replies
View Related
Aug 29, 2013
I am trying to suppress part that are labeled as "Reference" on the BOM Strutcture and I can't get the program to cycle through the subassemblies. The following code runs through all the components on the top-level assembly but I can't get it to cycle through the subassemblies.
oCompDef = ThisDoc.Document.ComponentDefinitionoAssemblyComponents = oCompDef.OccurrencesDim oOccurrence As ComponentOccurrenceDim oSubOccurrence1 As ComponentOccurrenceFor Each oOccurrence In oAssemblyComponents If (oOccurrence.BOMStructure = BOMStructureEnum.kReferenceBOMStructure) Then Component.IsActive(oOccurrence.Name) = False Else Component.IsActive(oOccurrence.Name) = True End IfNext
View 9 Replies
View Related
Oct 4, 2012
I curently have a rule that generates a part list automatically in a drawing. the problem is that I want the rule to be continuisly running but it keeps generating 2,3,5... parts lists. I need an if statment to check if a parts list already exists.
iLogicVb.UpdateWhenDone = True On Error Resume Next ' Set a reference to the drawing document. ' This assumes a drawing document is active. Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument 'Set a reference to the
[Code].....
View 2 Replies
View Related
May 4, 2012
If I draw a flat square, and then a flat circle next to it, can I do things using iLogic that will make the two seperate parts interact? such as say 'if the circle contacts the square, then make the square become a circle too' or something like that?
View 3 Replies
View Related
Jun 19, 2013
im trying to programatically add a parts list into a drawing whilst programatically creating the drawing - the code works fine without the parts list code. The error its showing is 'Parameter incorect' on the line that sais PartsList.add(... In the past when ive got this error with other code it has been because ive used an incorrect parameter (e.g. decimal instead of an integer).
My error is somewhere inside the oPartsList.add(>>ERROR SOMEWHERE HERE<<<)
oDrawDoc = InvApp.Documents.Add(Inventor.DocumentTypeEnum.kDrawingDocumentObject,AssyTemplate,True)
oSheet = oDrawDoc.Sheets.Item(1)
[Code].....
View 1 Replies
View Related
Nov 14, 2011
Is it possible to replace sub assemblies using ilogic - I can only see a link to replace parts?
View 1 Replies
View Related
Nov 18, 2010
I need to generate an iLogic rule exporting Parts List (not BOM) from a IDW to a specific folder in XLS format.
Using Autodesk AutoCAD Inventor 2011
View 9 Replies
View Related