AutoCAD Inventor :: ILogic - Turn On Origin Planes On Selected Parts Within Assembly?
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
ADVERTISEMENT
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
Mar 14, 2012
I have just installed Inventor 2012 and am experiencing a bizarre problem with placing content center parts. When I start a new assembly, and place a content center part, I would expect it to locate itself central to the assembly origin. What actually happens is that it grounds itself wherever I click on the screen. This doesn't happen with parts that I have created myself.
Is there a bug in the system or maybe an option that I have unknowingly switched off?
Inventor Professional 2012 SP1
Windows XP Pro 64 Edition SP2
View 3 Replies
View Related
Sep 4, 2013
I have a question about getting CoG of my assembly. The only problem is that i only need 2 parts (the rest are just dummy solids with 'default material'.
When i control select two parts, right click and go 'iproperties' - the physical tab doesn't let me determine CoG of the two parts combined.
View 3 Replies
View Related
Sep 1, 2012
I have a full electric motor including internal parts.It is quite large in size.
Is view representation the ideal method of turning off parts within an assembly.I do not need these internal parts when i include the electric motor into another assembly.Can i turn off these internal parts.
View 1 Replies
View Related
Sep 1, 2011
Is it possible to define a View Representation in an assembly such that a half section view is active, but only for a certain set of parts within the assembly?
View 5 Replies
View Related
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
Aug 21, 2013
At my company when producing drawings for manufacture we require a sheet for any steel profiles to be cut!..We do this by selecting the assembly from base view,hitting model view tab, selecting presentation and choosing the relevant profile from the drop down!
Once the profile is placed, we highlight the view and hit the parts list tab which obviously creates a parts list, but for the whole assembly, we then have to edit the parts list by turning off the visibility of the lines of all the parts which are not relevant!!...as you can imagine this is quite a laborious task if you have 50 different profiles.
The reason for this is to show the qty, steel grade and part number to the suppliers. My question is, any code that will take the lines of the parts list that are not relevant to the selected view and turn the visibility of those lines off?
View 1 Replies
View Related
Sep 27, 2012
My model is up in the top right of the planes. I cannot figure out why my origin planes are oversized like this. I have went through the browser and checked all the parts to see if something is out there, nothing. I have set auto-resize on origin planes and yet these are large.
Dell XPS 8300
Intel(R) Core(TM) i7-2600 CPU@3.40GHz
16GB RAM
Win 8.1 Pro
Autodesk Product Design Suite 2014
View 9 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 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
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
Sep 26, 2011
see attached image. The Origin Work Planes of my assembly, and some of the origin work planes in sub-assemblies have lost their names. No longer can I see XY Plane / XZ Plane / YZ Plane - all I see is a little red dot when I hover over where the name used to be. ??
View 2 Replies
View Related
Dec 21, 2013
They are all gone in my parts and assemblies. Only are they visible in the browser when I open a particular part or assembly of the parent. Need them for constraints .
View 9 Replies
View Related
Nov 4, 2013
I want to create a rule with CommandManager.pick who see the name of assembly and send a custom ipropertie to all parts of this assembly view in drawing, this is my none finish rule.
Dim doc = ThisApplication.ActiveDocument
Dim entity = ThisApplication.CommandManager.Pick(
SelectionFilterEnum.kDrawingViewFilter,
"SÉLECTIONNE UNE VUE")
modelName = IO.Path.GetFileName(ActiveSheet.View(entity.Name).ModelDocument.FullFileName)
PART = Left(modelName, 11)
EXT = Right(modelName, 3)
FIRST = Left(modelName, 3)
[code]....
I have the rule "SEND TO PARTS" in my assembly but i have this error message
MEMBER NOT FOUND. (Exception from HRESULT: 0x80020003 (DISP_E_MEMBERNOTFOUND))
View 8 Replies
View Related
Apr 8, 2013
We are just in the process of upgrading to Inventor 2013. While migrating our iParts, the origin work planes from the part part suddenly appear in some of the children. In the browser they show up under the iPart parent entry and will have names such as "YZ Plane_1". The visibility of all of the origin work features in the parent are turned off. In the children I can right click on these work planes but there is no option to turn off their visibility. And of course I can't even turn off general categories of object visibility in the children because that function is greyed out.
Is this behavior normal/new in IV 2013? Is there anyway I can turn off these origin planes in the iPart children?
View 1 Replies
View Related
May 2, 2013
I am working on an assembly that is designed around a box (bounding box) that could change size. I modeled the bounding box and placed it in a new assembly file. All other parts have been created within the assembly by referencing that bounding box with starting work plane and project geometry.
The problem comes in when I change the bounding box dimensions. The work planes for each additional part, which were defined by the faces of the bounding box, do not move when the sides move. Also, my projected geometry is not updating correctly. This is a simple box, with all 90° corners. So, all associated parts (at this point) are just rectangles.
View 4 Replies
View Related
Aug 12, 2013
Any time I create a new sketch in my assemblies, all of a sudden every existing work plane toggles from "invisible" to "visible".
In small assemblies, this is fine, but in 100+ part assemblies, it is a major headache. I don't want to turn off work planes every time I make a new sketch.
Is there any way to disable this "feature"?
View 3 Replies
View Related
Nov 29, 2012
In my assembly I've set up angle constraints between 2 Plane's of 2 parts (min: 40 deg max: 160 deg). If I move the parts slowly the angle constraints holds but if I swing it hard sometimes it flips and gets out of the angle constraint.
View 2 Replies
View Related
Jan 3, 2013
How to create a measurement between two planes using ilogic rules?
I have created the planes on the asssmbly parts but dont know how to directly pick them.
The measurement is going to be used as reference dimension.
View 1 Replies
View Related
Jan 2, 2014
Is there a way to insert a part that would be grounded or flush constrained on one or two planes only (automatically) and not all three? For example; you'd insert the part and you'd pick the two planes that you want to be flush constrained but the 3rd plane you'd constrain yourself.
View 2 Replies
View Related
May 27, 2012
In previous versions, as clunky as it was, I used to put a work plane in the centre of a frame generator part using "G_L/2"
This does not seem to work anymore in 2013.
Inventor Professional 2014.
Windows 7 64 bit.
View 1 Replies
View Related
Nov 8, 2011
I'm assembling parts and one of the parts is in my Inventor Library. When I try to make a plane visible it won't let me. I can constrain to the plane , I just can't make it visible.
Inventor 2011
Autodesk Inventor 2011
AutoCAD Mechanical 2011
View 4 Replies
View Related
Aug 23, 2012
Is there anyway to batch-process a load of parts and assemblies to turn off work planes, sketches etc in the master design view rep?
I'm aware of the Object Visibility feature but I want them turned off in the model tree.
View 4 Replies
View Related
Mar 28, 2013
How can i a re-adjust the orignal origin on an assembly? For example: i have a trailer frame (an assembly) and want to add a tank centered on top of it by constraining the center planes of both assemblies.. When i select the X-Axis/Pane from the trailer, it is not in the center of it, instead the X-Axis/Plane is 3/4 of the way off centered.
View 5 Replies
View Related
Oct 4, 2011
I recently found an error in my top level assembly which is that the origin axes x & z are pointing in the wrong direction (x-axis points in the negative x direction and the z-axis points in the negative z direction). how to "flip" the origin axes of an assembly?
Additional information: I have a top level lattice assembly that consists of a number of lattices (a part to which components are constrained) with the lattice origin planes constrained flush with the top level lattice assembly origin planes. This top level assembly is used in many other assemblies to constrain entire systems. Re-constraining my lattices correctly inside of the top assembly is infeasible.
View 1 Replies
View Related
May 5, 2004
Is there a setting or something somewhere that turns off/on the display of the origin folder? I have rebooted and restarted Inventor. For some reason, I can't get see the folder. Even when I edit a part, it is not there. See attached images.
View 5 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
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