AutoCAD Inventor :: Show Dimension For Component Patterns
Feb 27, 2012
I want to be able to use the same dimension parameter as a previous component pattern to create a new component pattern. Is there a way to be able to do this? On features, you can use the Show Dimension and then select the dimension you want. With rectangular patterns I don't see a way to do this and there is no way to even note which parameter it gave it as it is being created. I guess I could name the parameter on the fly and then use that same name, but was wondering if there was a different way.
View 2 Replies
ADVERTISEMENT
Jun 28, 2011
To be able to folderize component patterns seems to have been surpassed once again in release 2012. However, I am wondering if this is a setting issue yet I cannot find settings for what can and cannot be placed in folders, if they exist. And I wonder if it is a setting issue because during a training class I visibly watched the trainer place component patterns into a folder and once I still cannot do so.
View 9 Replies
View Related
Jun 18, 2013
I can easily move component patterns into a folder as long as all patterns are sequential in the browser. However if I create another pattern that belongs to the folder but is created after the original patterns I cannot add it to the folder. If I delete the folder and select the patterns I get an error message if I try to add them to a new folder (remember the patterns are not sequential). I cannot move a pattern in the browser once created and if I move the part into the folder and then create the pattern it moves it back to the bottom of browser. The net result is I end up with a lot of 'orphaned' patterns.
View 2 Replies
View Related
Feb 29, 2012
Can I create more than one pattern from the same base component? For example, pattern a bolt in the center of a plate into one quadrant using pattern 1 and then into another quadrant using pattern 2.
View 6 Replies
View Related
Mar 12, 2013
I have an i assembly with some lengthy and unique ilogic to control what parts are included / excluded based on user inputs in a form. To begin, the program includes all components, and then excludes the ones that aren't needed. This is basically, briefly what the first part of that looks like:
For Each oCompOcc In oCompDef.Occurrences
i=i+1
'Include all currently excluded components
If oCompOcc.Excluded=True Then
oAssObj=oCompDef.Occurrences.Item(i)
oDoc.SelectSet.Select(oAssObj)
ThisApplication.CommandManager.ControlDefinitions.Item("ExcludeCtxCmd").Execute()InventorVb.DocumentUpdate()
Else
End If
Next
InventorVb.DocumentUpdate()
So this works just fine, mostly. I run into an issue with the component occurrences that are within patterns (I have 2 patterns - 1 circular and 1 rectangular). This code will "Include" all occurrences inside an "Excluded" pattern, but the pattern itself remains "Excluded". In other words, in the browser, the pattern name appears greyed out and crossed out, but all the elements and the components within them appear "alive", so to speak. But the BOM indicates a Qty. of ZERO for these components since the pattern that.
I can toggle include / exclude of patterns using the same method:
oDoc.SelectSet.Select(oPattern)
ThisApplication.CommandManager.ControlDefinitions.Item("ExcludeCtxCmd").Execute()
But it seems I can't identify which patterns are excluded to start with, like:
If oPattern.Excluded=True Then...
I get an error when I try this. Is there a way around it? How can I find and select excluded component patterns in order to toggle them to "Include"?
View 2 Replies
View Related
Oct 15, 2012
I'm trying to get Inventor 2012 (64 bit) to show the complementary angle to the bend angle in the bend annotation on a flat pattern within a drawing. I.e. the bend annotation shows: "10 UP" for a ten degree bend. I want it to show: "10 (170) up, where 170 degrees would be the complement to that angle, automatically. I know I could type it in, but then it will not update itself if I change that angle.
View 9 Replies
View Related
Jul 17, 2013
I want to show one of the parts in a drawing of an assembly in hidden lines, it's a reference part only.
View 3 Replies
View Related
Feb 22, 2012
Show on Place Component
If I set this to true, then when I "place iLogic component", I don't get the form displayed or the parameter table or the model preview.
If set True, displays the form when placing this model as a component in an assembly. This setting affects Place Component and Place iLogic Component. If the template file has a form, this setting also affects Create In-Place Component.
View 1 Replies
View Related
Dec 8, 2011
I have a sketch on a component. That component is being used in an assembly. The assembly drawing (.idw) does not show the sketch on that component. I have made them visible on the component, but don't want it visible on the assembly model. (only the assembly drawing)
View 1 Replies
View Related
Nov 20, 2011
I would like to show such a dimension, like S1 in attachment. It is really value of tolerance of nominal 0 dimension.
View 2 Replies
View Related
Sep 9, 2012
is there any way I can place dimension on drawing that would be in dual units (in decimal degrees and in deg min sec)?
I did not find this possible so far.
View 2 Replies
View Related
Aug 15, 2012
This is the first I've noticed this, but a sketch in an assembly does not allow to show the dimensions as an expression? In a .ipt sketch you can right click and the pop-up menu has an option to show the dimensions in different forms. I do not get this in an assembly sketch.
I do not know if this is me or not. It's just curious that it does not do that.
View 6 Replies
View Related
Aug 28, 2007
I've utilized the Plywood-Section detail component out of the Imperial
Library, and it runs left-to-right, no matter the orientation of the element I drew. Messing with the Fill Pattern settings, it looks identical if I set the Plywood-Align pattern to "Align to Element", or "Orient to View". Nothing changes.
View 9 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
Feb 22, 2011
If AutoCAD 08 has the ability to create wire frame arrows without building them from scratch? I'm trying to show circulation patterns on a landscape plan. I'd like to be able to click and drag like a polyline etc.
View 9 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
Aug 2, 2013
When I reposition structure labels (in their 'dragged state'), the component <[Structure Offset Side(CU)]> does not show up while in drag mode. Sort of makes it hard to see the limits of the label if you are trying to place it in a congested area. Watch the "LT" part of the label in the GIF below.
No, it's not that big of a deal, but alignment labels with the same component do not behave this way, so I have to wonder why the structure labels do.....
View 4 Replies
View Related
Jul 11, 2013
Why won't a pattern fill I used in an Illustrator CS5 file show up when I save as a pdf?
View 32 Replies
View Related
Nov 2, 2012
Why are annotative dimension always placed in model space to the created height regardless of the annotation scale I use. using annotation 1:1 or 1:10 or 1:50 my dimension is always inserted to the dimstyle hight of 3.5mm (about 1/8") and not 3.5 x annoscale example 10 = 35mm.
When dimensions are placed using an anno scale of 1:1 and than change the anno scale to 1:10 the dimensions and dim arrows ect are scaled to the correct size 10x value preset in the dimsyle. My text style is non associative and set to 0.0 height.
The only way i can place dimensions to the preferred height is linked to the anno scale is by setting the text style height 3.5 (about 1/8"). but the problem here is that the dim text height will be displayed to selected annotation scale of 1:10 but the dim arrows etx are not to size. I know that setting the text style hight is not the correct way and see why.
All my dimension styles are annotative and and have the ANNOAUTOSCALE set to 1. I have also tried by presetting the object anno scale to the preferred annotations.
View 0 Replies
View Related
May 28, 2013
I have one problem in ilogic "How to convert the normal dimension to driven dimension through ilogic"
View 4 Replies
View Related
Feb 23, 2013
how to make a radius dimension a diameter dimension? I have Inventor Profession 2013.
View 1 Replies
View Related
Jun 27, 2011
Is there a way to override a dimension and have it shown as a GD&T Basic dimension. I can override a dimension with the text option but not with a box around the letter. It sounds strange to do this but the letter represents a dimension in a chart format that are Basic dimensions.
View 9 Replies
View Related
Jan 27, 2012
Is there a way to make the linear dimension a diameter dimension?
View 9 Replies
View Related
Jan 17, 2013
How do i get the leading zero to show on an angular dimension for the seconds? as in: 108d 36' 03" ?
View 1 Replies
View Related
Jun 1, 2013
I have to deal with the plans of others, some who change the dimensions through text formatting that I can see are fake or incorrect. I used to have a command that would detect the ACTUAL dimension but I can't seem to find it in ACAD 2010. find the command to restore the true dimensions?
View 3 Replies
View Related
Mar 14, 2012
Is there a way to show the last number of the dimension length as 5 or 0?I want to show the unit in mm with precision (decimal places) equal zero such that the and to force the last number as 5 or zero
For example, I need to display the 7554 mm as 7555 and the 7558mm as 7560.
View 5 Replies
View Related
Feb 7, 2012
I'm trying to get everyone on the right page, but I can't find any reference to how to properly show a dimnesion that spans across 2 different drawings (with use of a matchline or on a piping isometric that is split). Would either of these examples be the correct way to show a dimension that spans 2 drawing files? Is there a different way to show a dimension that is to span 2 drawings?
View 1 Replies
View Related
Jan 31, 2014
I have a drawing with a detail, I want to hide dimension from the big view port and show it in the detail as you can see in the picture:
I use Annotative dimension.
View 3 Replies
View Related
Feb 24, 2012
I have all my dimensions on a single layer but when that layer is turned off, the nodes for those dimensions still appear and are selectable. I looked through the system variables and couldn't find a setting that controls this. How can I prevent the display of the nodes?
View 2 Replies
View Related