AutoCAD Inventor :: Modifying Component Pattern Through API
Mar 15, 2012
I have a component pattern with 3 components in it and I need to remove one of the components from the pattern. How can I modify the pattern through the API? I have tried various things but I do not appear to be able to change the pattern.
View 1 Replies
ADVERTISEMENT
Oct 11, 2011
In my neverending battle to find a way to turn off unneeded components in an assembly, I'm trying my hand at modifying component visibility with a custom View Rep. View reps seemed to pose fewer issues than LOD's (in that you can have a drawing and model open at the same time without a million error messages)......until I tried to make a pattern.
When first placing a new subassembly component into an assembly, it will automatically place in the "Last Saved" View Rep. Since certain parts may be invisible in my "skeletal" subassembly, this is ideal. HOWEVER, when I try to pattern this subassembly, all of the occurrences absolutely insist on displaying at the "Master" View Rep. This makes no sense to me whatsoever and destroys yet another workflow at the 99% mark. I understand that I can change the view rep manually, but manual workarounds and corrections defeat the point of using iLogic to manipulate our models.
Am I the only CAD user who wants the simple ability to "turn off" an assembly component? iAssemblies are not an option due to the shear number of combinations of unneeded components.
View 4 Replies
View Related
Jul 31, 2012
I am creating an assembly with my base part being a weldment. I've added other components that mount to my base part. Now I need to add fasteners to the mating components. I have added my first fastener and now want to pattern the said fastener using the "Pattern Component" and by using the "Feature Pattern Select" option and selecting "Associated Feature Pattern". At this point I have already selected the component that I want to pattern and selected the "Associated Feature Pattern" to select my base pattern. The only problem is that I am unable to select the pattern desired.
A note on how my Weldment was constructed -The holes were created in the "machining" step of the weldment, not in the individual part before it was placed in the weldment assembly.
If I move the hole feature and its pattern to the individual part and then place it in the weldment assembly, I can then create an "Associated Feature Pattern" in my assembly file.Why can I NOT create the associated pattern when my hole features are created in the weldment assembly? Or am I missing something?
View 4 Replies
View Related
Apr 19, 2012
I have a sheetmetal assembly with helical shaped parts. I need to place about 50 little brackets and some corresponding rollers along the length of these helical pieces. The spacing is even so a pattern would be perfect, except I don't know how to get it to follow the shape of the part. The brackets are located to slots in the helical parts which were made with a rectangular pattern in the unfolded state. I tried to do a "feature pattern select" but it only saw the rectangular pattern as it is in the unfolded state (a straight line). I then gave up on patterns and started working on manually mating them into place but realized that the geometry of the slot was distorted (theory) and didn't leave me with any useable surfaces.
View 9 Replies
View Related
Dec 27, 2011
In an assembly, is there a way to pattern a component in the X, Y and Z directions? I need to make a certain number of components, and each instance changes by the same delta x y and z. The dialog box will only show me column and row options.
View 7 Replies
View Related
Feb 9, 2007
Is there a way to explode a Component Pattern? I would like to create a 12 x 12 Component Pattern in an IAM and then explode it so that I have 144 individual objects.
View 6 Replies
View Related
Nov 9, 2012
Pattern component is great but sometimes I have to pattern the same part several times to different dimensions in the same direction. For example: I have a part that has to go the left 26', then again at 29" and then again at 37". Other than manuallly constraining this 3 different times I've had to Pattern Component the first one at 26", then change the 2nd one to Independent. Then Pattern component that one to the 29" dimension. Change that 2nd one to Independent and pattern component that one to 37". It saves a lot of time but if I have to increase the model they are going on I have to start all over. Is there a command or something that will do this? I understand that a pattern is equal lenghs so maybe I am looking at the wrong command for what I am needing to do.
View 2 Replies
View Related
Apr 20, 2012
I have a few components in my assembly that I want to turn off under certain conditions. Using Component.IsActive, I can turn on or off an instance, but some of the components are in a pattern, and I want to turn on or off all instances of the component. To add to the challenge, the component patters are driven from Excel, and the quantity of parts changes.How can I turn off all of the instances of a pattern?
View 1 Replies
View Related
Oct 29, 2013
I have a rectangular component pattern which started out with all components. As more structure was added around it I started supressing different elements to suit, now a piece of structure has gone thru element 1 but i dont seem to be able to supress it... is there an easy way to get rid of element 1 without having to redefine the pattern? (redefining causes me other problems)
View 4 Replies
View Related
Sep 20, 2013
How to modify the code below to delete suppressed parts in a pattern (entire pattern)?
Dim oComp As ComponentOccurrenceDim oComps As ComponentOccurrencesoComps = ThisDoc.Document.ComponentDefinition.OccurrencesFor Each oComp In oCompsIf Component.IsActive(oComp.Name) = False Then oComp.DeleteNext
Code works fine if there are single instances of the part. It throws a error when you have a suppressed pattern.
View 7 Replies
View Related
Oct 4, 2012
my create a circular pattern in an assembly that maintains the orientation of the part being patterned.
This is for foundation plates. There are 3 plates. The plates are square, and have bolt holes in the corners of the plates. Since there are 3 plates and its going around a circle, the angle between the plates is 120 degrees.
Now, Ive been trying this for some time now and what is happening is the firs plate is fine, but then the second and third plate are rotated around their center axis. I would like it to simply remain as inserted and constrained within the assembly.
I have attached a picture to be more clear about what I want and what I'm currently getting.
View 8 Replies
View Related
Jan 26, 2012
We are having an issue when we replace a component in Inventor Pro 2012. When we replace a component, the name in the browser does not update to the new component. We've even tried to close and re-open the Inventor assembly and that does not work. We end up manual double clicking the name in the browser and type in the new component name.
Inventor Product Design Suite Ultimate 2012
Dell Precision T7500 Workstation
Xeon Processor
16 GB of RAM
Nvidia Quadro FX 5800
Windows 7 x64
View 4 Replies
View Related
Jul 25, 2012
II need a way to tell if a component occurence is a virtual component.
I'm using a For Each loop to cycle through all of the components in an assembly, and if the component is itself an assembly to set the LOD to "Custom". I'm using the definition document descriptor object for this. It all woks fine until the loop comes across a virtual component which doesn't have a definition document, so I need a way to check if the component is virtual and needs to be skipped.Here's the
Option ExplicitImports Inventor.LevelOfDetailEnumSub MainiLogicVb.UpdateWhenDone = TrueDim doc As AssemblyDocumentDim oLOD As LevelOfDetailRepresentationDim oAsmCompDef As ComponentDefinitionDim oComp As ComponentOccurrenceDim oComps As ComponentOccurrencesdoc = ThisDoc.DocumentIf.
[code]....
View 2 Replies
View Related
Jan 11, 2013
I am trying to make port rims for pipes that can be swapped in and out of an assembly. However, the ports will all be different sizes and located differently so I need the cut to be part of the port rim component, but affect the entire assembly it is part of. I've been trying to get this to work for the better part of a day now,Here's a picture of what im talking about. I'm running Inventor 2008 by the way.
View 2 Replies
View Related
Aug 30, 2012
I have an assembly which has a few components suppressed.
My end results is another copy of the assembly (with copies of the all the parts) in another directory
Now i am able to create copies of un-suppressed parts using; (this allows me to SaveAs assembly components which are not suppressed)
DocumentsEnumerator = ThisDoc.Document.AllReferencedDocuments
And save a copy of the assembly using
ThisDoc.Document.SaveAs
I also added the fllowing snippet (which I am not sure what is does), but it does not work for me
Component.SkipDocumentSave = true
When I open the newly created assembly, I still see the suppressed components in the model browser
I want to either;
Skip saving the of the components in the model browser (i.e. the Assembly)
OR
Delete the suppressed parts in the Assembly, so that they do not save altogether
View 3 Replies
View Related
Nov 7, 2013
I would like the pattern to follow the rotation of the component when inserted onto the project. I can achieve it with model pattern but I would like to use drafting pattern because we need to show them on different scales.The diffuser family consists of a detail family in order to show the pattern. The pattern is already set to align with object and it still does not work.
View 3 Replies
View Related
May 25, 2012
where could i find a pattern overlay/pattern of holes for a metal floor.
View 9 Replies
View Related
Mar 27, 2012
How can I make a circular pattern of a single occurence of a rectangular pattern?
A shaft has a rectangular pattern of holes (along its axis) on its surface. I want to pattern the 4th occurence of this hole pattern as a circular pattern? Can I do it in Autodesk. I can not select the a specific occurance of a patterned feature to pattern it again.
View 9 Replies
View Related
May 23, 2012
Quick question...
Once a 3D object is drawn/completed in Inventor LT, how does one go back to the object to change the length/radius of certain objects without having to completely redrawn the object. For instance, imagine a bike wheel that is fully draw. Later perhaps one wants to go back to the wheel and adjust the radius of the spokes and the length. How does one do this quickly. In 2D I see how, but can this also be done in 3D with Inventor LT?
Working with... Autodesk: AutoCAD Inventor LT Suite 2013 | OS: Windows 7 | GC: ATI 6670 | Mem: 8 gigs RAM | Proc: Intel core i5 | Monitor: Acer V213HL
View 4 Replies
View Related
Mar 22, 2013
I am trying to do a "quick and dirty" stopgap.
I am in the process of repairing and assembling the various systems for a luxury yacht - electrical, mechanical etc. The ultimate goal is to get a full 3D layout of parts and assemblies, then using tube and pipe and cable and harness to run conduits, aircon ducts, fuel lines....
All I have to go on are .dwgs
In the meantime I need to submit a modified .dwg to the engineers overseas to get the O.K. on swapping the order of certain components. All I need to do is change the labels text on the layout, nothing else.
I have imported the .dwg into an Inventor sketch and edited the text.
Now I am stuck. Placing the view into a new drawing shows nothing.
RMB export sketch as .dwg works, but not a single line of text shows, only the layout.
View 5 Replies
View Related
Jul 25, 2012
As you see in the template photo (the photo was scanned by Microsoft Security Essentials, healthy) I wanted to extrude my circle, and I made 28 pieces with circular pattern feature; now, do I have to choose all the pieces by one by to be able to choose all?
The sum of the problem: while using the Circular Pattern feature or rectangular pattern feature in Inventor, sometimes I want to extrude (join) or cut the drawings that I made (augmented) with using circular pattern feature, rectangular pattern feature. in this case do I have to choose all the augmented members one by one (for instance I make 42 augmented members), it can take a lot of time.?
View 7 Replies
View Related
Jun 29, 2013
How is it possible to use "Feature Pattern Select'' to make the Pattern a want in an assembly?
View 9 Replies
View Related
May 31, 2013
Is it possible to take a feature created by a pattern and reuse it to create another pattern? I have a circular part on which I have created a linear pattern (using the rectangular pattern feature) of holes, 6 in total listed as 3 ccurrences. if we number the holes 1-6, I would like to make a circular pattern based off holes 2 and 5. I have been unable to figure out how to select the individual "occurrence" related to the hole once in the pattern feature. If I create the circular pattern first and then the linear and try to suppress the others it supresses both holes in the occurrence.
View 4 Replies
View Related
Aug 11, 2012
I am using some code from the June 2010 "Mod the machine" posted by Brian Erkins.I keep getting an error in C# (express 2010), Please see attached screen dump.
I don't see any obvious difference in my code when compared to Brian's (in fact at one point I copied and pasted his code and still had the same error). Here is the
private void button1_Click(object sender, EventArgs e)
{
Inventor.Application invApp = null;
invApp = (Inventor.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Inventor.Application");
Inventor.Document doc = invApp.ActiveDocument;
Inventor.PropertySet customPropSet;
customPropSet = doc.PropertySets["Inventor User Defined Properties"];
View 1 Replies
View Related
Nov 20, 2013
I have an assembly which I am using as a icopy component. In the assembly I have the adaptive sketch which os used for the icopy function and a part which is adaptive to the sketch. I then have the part pattern itself in the assembly. The problem is the pattern will not update when changes are made unless I edit the pattern. The pattern references parameters from the sketch so that when the sketch changes the pattern should change. It works but the pattern will not update unless i open the pattern to edit it. Is there a vb function which will force the pattern to update when a change is made? I tried the update document vb functions but no change. I will try to get a sample together that is a smaller file size so you can see what I am talking about.
View 2 Replies
View Related
Oct 23, 2012
My company is trying to Standardize all drawings produced to 1 format. the one we are attempting to create would be in the form of: nominal upper limit^lower limit. this is easily acheived in autocad and linear, chamfer, and hole/thread dimensions in inventor. but radii's and diameters from a round surface (as apposed to linear diameters) we have run into a snag with. We cannot seem to find a way to either remove the prefix symbols or be able to insert text between the symbol and tolerance.
below is a illistration of the problem and the form of the new dimensions.
View 4 Replies
View Related
Dec 4, 2013
A coworker of mine has made a bunch of custom extrusions, turned them into iParts, and published them to the Content Center. The parts are driven in length by the key parameter "Length". Unfortunately, he forgot to mark that "Length" parameter as export in the parameter dialogue before publishing. Is there ANY way to get that "Length" parameter to be exported so the Parts List can pull the cut length?
View 2 Replies
View Related
Nov 25, 2011
I don't understand why my parts aren't updating when I put a hole through them on the assembly drawing? I would expect the part (.ipt file) to get updated with a hole through it when I save the assembly drawing, however it doesn't. Do I have to change a default setting or does inventor no do this?
View 1 Replies
View Related
Feb 22, 2012
I'm looking to add the name of the person printing the document as well as the date to any paper copies printed. However, since everythign is stored in Vault, this needs to be done without making any changes to the document that require saving the document.
Ideally this would be automatic(requiring no user input).
I've used both iLogic and built Inventor Addins before.
Win7 x64 - 16gb ram
i7 3610qm
FirePro M4000
Inventor 2013
ETO 6.1
View 2 Replies
View Related
May 16, 2012
Where the properties browser settings are located so that I can turn the browser on for modifying parameter keys in factory layout? I actually had turned this browser on before, but now I cannot remember where they were. Please see the attachment for further info.
View 9 Replies
View Related
Oct 2, 2012
I'm experiencing many problems when modifying parts measures, adding extruxions or doing holes/threads.
Always same error: Operation doesn't produce a significant result. Redefine inputs
If Inventor is totally closed and reopened, I can modify and update parts without problems for 10-30 minutes, until first error, then it gives errors until closing again. Usually, but not always, operation preview begins to fail before first error. So it's quite difficult to reproduce.
I've tried uninstalling everything after Autodesk installation, windows updates and Firefox plugins (well, even Firefox itself) included. I've tried all hotfixes and updates that Inventor 2013 gives (NO SP1), even I've fully reinstalled Inventor. I've been using Inventor from Inventor 7 and never seen such errors.
I've attached a part from the pictures. Anyway, as errors are not always happening, maybe you won't have any problem with it.
PD: Also, a little problem is that with this Inventor version I can use the CTR+c CTRL+v to copy parts into an assembly. I can use the context menu but no shortkeys.
Autodesk Product Design Suite Premium 2013 (Installed yesterday, so with all official updates)
Windows 7 64bits Proffesional SP1
Intel(R) Xeon CPU W3565 @3.20GHz
NVIDIA Quadro FX 3800
8GB RAM
View 6 Replies
View Related