AutoCAD Inventor :: Suppress Assembly Features In Drawing?
Mar 8, 2005
Is it possible to suppress an assembly feature in a drawing view?We make some components in an assembly oversized and then do a final machine step after welding or brazing. We show the completed assembly in the drawing but would like to see the assembly prior to machining in some views.If I suppress the machining features in the model it affects all views. Can we suppress the features in just one view?
View 6 Replies
ADVERTISEMENT
Jun 15, 2011
how to suppress the Data Window from appearing after drawing a new feature? Most of the new features are populated with triggers and autonumbers, so I don't need to see the Data Window when I draw something new..
View 1 Replies
View Related
Nov 15, 2012
I am trying to make a way that suppress the flange features of all the panels that will be insert in the assembly so i can suppress all the features at ones in a assembly and don't have to do that for each panel separately.
I have a assembly with parameters and i have a part with no geometry but have linked the parameters from the assembly. In my panel part i link the parameters to the part with no geometry.
When i use the parameter in the assembly to suppress the flanges that works the way i want it. But when i insert the panel part into that assembly it doesnot work.
View 1 Replies
View Related
Sep 9, 2013
The small cylinder was made first, then projected it to a sketch, made offset, and made the big cylinder, but i want to leave only the big cylinder alone. i want to suppress the small cylinder, but when i suppress the samll one both get suppressed.
How can i break this link, which was made by the projected geometry?
Even when i select the projected circle, right click and select Break Link, they still behave the same.
View 1 Replies
View Related
Feb 14, 2013
I have a code working that is not very efficient.
It works, but it is very slow, i suspect it can be 28x faster, but I don't know how
What I have:
I have a plate with many hole patterns.
I calculated how many holes each pattern has
Parameters: Excel_Holes_Row_0 to Excel_Holes_Row 27
For each Row i have 4 features:
Pipe Hole
Rectangular array of Pipe Holes
Product Hole
Rectangular array of Product holes
What I want to do:
I want to suppress/unsuppress features with a rule
If Excel_Holes_Row_20 < 2 It means Suppress the rectangular arrays on this row
If Excel_Holes_Row_20 = 0 It means suppress the hole features on this row
This is my
Dim oDoc As Document = ThisDoc.Document
Dim PFeats As PartFeatures = oDoc.ComponentDefinition.Features
Dim PFeat As PartFeature
[Code]....
View 3 Replies
View Related
Jul 20, 2012
I have a couple of dozen features in my part, of which only one will be active at any time. The feature tree may be subject to additions, so I am looking for an ilogic rule that will first suppress all of the features in the part, and then switch on the specific feature I require (using a parameter). Any code to suppress ALL features?
View 9 Replies
View Related
Oct 11, 2011
I was wondering if there was a way to suppress a component in the main assembly, and keep it from appearing in the parts list whenever I create one in the idw. environment? I am creating an iassembly, and generating different file versions from the main assembly in my table. In order for me to create different versions off of this main assembly, it is required that I suppress certain sub assemblies or components. I can't get the suppressed componenets to not show up in my parts list when I create it. I turned off enabled and visibility and it still appears in the BOM. Creating a different level of detail doesn't even solve this.
I know I can manually not have it show up in the BOM, but it becomes very time consuming trying to make certain rows not appear in the BOM table.
View 2 Replies
View Related
Oct 25, 2011
I'm using I-logic to suppress components in an assembly. I've attached a screenshot with 3 suppressed components.
In the browser the parts are suppressed but in the BOM (items 6,7,9) they are not. Is there a piece of code for this?
View 5 Replies
View Related
Dec 4, 2007
I am having some trouble with this quick VBA app, I want a utility that can traverse all the parts in a top level assembly and suppress the link to each derived part (multiple) in all the parts in the assembly.
I have played with the following
Public Sub SuppressLink()
Dim partdoc As PartDocument
Set partdoc = ThisApplication.ActiveDocument
partdoc.ComponentDefinition.ReferenceComponents.DerivedPartComponents.Item(1).SuppressLinkToFile = True
End Sub
Which works, but only on one part file, and only on the first derived part. Is there any easy way to make this work on ALL the dervived links and every single part inside an assembly?
View 9 Replies
View Related
Sep 3, 2013
In order to reflect production process, I have to create holes on the bent pipe at assembly level after 2 bent pipes are welded to the straight pipe. Now when I suppress holes, it does not suppress only at LOD or view rep but throught the whole assembly.
Is it possible to suppress features such as hole using LOD or view rep, which are made at the assembly level? or I have to use another method? See below in highlighted.
View 1 Replies
View Related
Mar 4, 2013
I have a weldment that shows all the preparations and weld beads in 3D. I need to detail out this weldment without the preparations/welds applied already.
I can't seem to find a way to suppress these features in the 2D drawing without going back to the weldment file and suppressing those features individually.
Can you force Inventor to ignore preparations and weld features in a 2D drawing? When I do my callouts for welds, I can't have it showing the weld/preparations in the drawing itself.
I created the drawing file using the weldment file as the base view. Running latest version of Inventor Pro.
View 1 Replies
View Related
Nov 19, 2012
I'm now having an issue accessing the features in an assembly, the error message is attached and the following is the relative code.
The error line is between the 2 Test Messages:
'Create a Component Definition relative to the Part Document
Dim oFeature As Features
Dim oAssembly As AssemblyDocument
oAssembly = oCompOcc.Definition.Document
MsgBox("Test 1")
'Cycle through all features in the Part
For Each oFeature In oAssembly.ComponentDefinition.Features
MsgBox("Test 2")
View 3 Replies
View Related
Aug 22, 2012
I'm crating a macro wich would allow me to select multiple parts in an assembly and then calculate the length of each part. The parts are tubes wich are made of a sinlge sweep.
I started from the example truesweeplength, and built from there.
Now my problem is accessing the sweepfeature from the assembly.
In the part enviroment i use this:
Dim oDoc As PartDocument
Dim oDef As PartComponentDefinition
Dim osweepcount As Long
Set oDoc = ThisApplication.ActiveDocument
Set oDef = oDoc.ComponentDefinition
osweepcount = oDef.Features.SweepFeatures.Count
The sweepcount is simply to check how many sweep features are in the part.
This works fine in part level.Now from assembly level I first create an obecjtcollection from all the parts I selected
Set oOccurrences = ThisApplication.TransientObjects.CreateObjectCollection
Then I try to acces the first occurence
oDoc.SelectSet.Item(1)
But then I'm stuck. I cant find the way to acess the features of the selected part.
View 6 Replies
View Related
Dec 11, 2012
How do you save features added in an assembly to the part? For example, if I add a hole in an assembly, presently I cannot see it when I open the part. It seems like a very basic function, I'm not sure why it doesn't do it automatically.
View 6 Replies
View Related
Dec 17, 2013
I have made an iAssembly with a main body and flanges attached to the body.
Assembly feature holes have been created act on the main body, and these holes are relative to the position of the flange.
When I change the factory member - the position of the flange changes, but the holes stay in the last location and so the model is wrong.
The only way to overcome this error, is if I go to the Manage tab and manually select 'Rebuild All'.
I need this to work automatically as drawings are generated wrong when changing model state.
My intention is that this will be used in an iLogic routine, linked to an external sales package.
View 4 Replies
View Related
Jun 24, 2012
I've derived an assembly into a part file. On inserting an i feature, Why can't I select a face of the single composite body?
You can create a sketch on a face, but not insert an i feature on a face.
View 9 Replies
View Related
Aug 27, 2012
I recently started working with Inventor (Solidworks user for 15 years). When designing new parts in an assembly in Solidworks, there was always an auto snap feature to align parts (centerline, midpoint, etc). I cant seem to find this option in Inventor 2013. Im trying to design new parts in an assembly but cant seem to snap to any other existing parts features or centerlines. Is there a quick way to activate this option? Is it even available in Inventor?
View 2 Replies
View Related
Sep 20, 2012
I have a panel with holes,cutouts and silkscreen
In the drawing the panel is detailed to show hole locations and sizes on one sheet and in another view @ 1:1 the silkscreen is shown.
The silkscreen is a feature on the panel, text either embossed or extruded .005" outward. The feature is colored (filled).
On my drawing all the silk screens show up like un-filled fonts. This really bothers some people and my task is to fill the fonts.
Also i need to get the silkscreen by itself and (suppress/invisible) remove the other features from the view.
Suppress will not work as the feature i am trying to show will also be suppressed. Visibility of features is not an option.
Q. HOW CAN I GET THE FEATURE SEGREGATED AND SOLID IN MY DRAWING? but still a feature of the part. i.e. i don't want to create an assembly with a panel and a silkscreen.
How do i suppress features in a view on the drawing?
View 5 Replies
View Related
Apr 5, 2013
Is there a way to supress some features ( holes, slots, extrusions etc ) in only one drawing view?I'd like to create a few copies of the same view, but show only relevant features for clearer understanding and dimensioning in each.
View 6 Replies
View Related
Mar 26, 2007
Can the API be used to select feature edges in a drawing view and assign them to a layer? I am using IV10.
View 6 Replies
View Related
Sep 16, 2012
I'm attempting to use VBA to put center marks on each hole in my drawing. So far I have the following
Dim oIntent As GeometryIntent Dim oCenterOfPart As Centermark
'Add center marks to base view For Each oCurve In oBaseView.DrawingCurves '
<- need to identify Hole Features If Not oCurve.CenterPoint Is Nothing Then
If oCurve.CurveType = kCircleCurve Then 'CurveTypeEnum
[Code] .......
oBaseView is the DrawingView object representing the base view the code just placed. I also used VBA to place the projected views oTopView and oRightView. I want to add center marks to each hole when viewed from the end (as circles) and add centerlines when viewed from the top or side (as hidden lines).
I will be iterating through several models representing various handhold styles. The feet can be in many orientations, 99% of them are paralel to one of the origin planes (XY,YZ, or XZ).
This is what my code generates: (The centermarks that are selected are the ones I don't want the code to generate). This is what I WANT the code to generate:
1) How do I distinguish whether a circle curve originated because of a hole or because of another cilindrical feature?
2) How to I identify the corresponding hidden lines in the other views so I can add a center line?
View 2 Replies
View Related
Aug 22, 2012
I am using inventor 2013 and creating the drawing for a part or assy. and saving it to autocad 2000. after i open the saven .dwg fine in autocad 2000 of customised .dwg viewer (EDMS internal customised vault kind of software), i see some of the features of annotations and even mechanical features added has question mark (as the images attached).
Thing is what i am doing is and we have a BOB.shx file for the font. (which inventor is not supporting) and we could not bring this inside inventor. Inventor supports only .ttf font types.
So how way possible we can use inventor drawing inside autocad 2000 by save a copy as option. or you have any patch type support.We are loosing lot of time in this as a productivity loss.
View 1 Replies
View Related
May 1, 2006
When you have a part with a thread feature, the default setting should show the thread feature in the drawing view...rather than making the user right click the view and select "Display Thread Feature". I don't understand why this doesn't show up in the drawing automatically...it is, after all, a feature on the part.
View 3 Replies
View Related
Sep 3, 2012
Is there any way to set features to be invisible when create sketch after those 3D features so as to make the sketch more easy to see?
View 3 Replies
View Related
Mar 4, 2011
I have a drawing of an assembly with approx. 15 parts. I dimensioned and notated everything on the drawing as I usually would, and everything seemed fine. I have now gone back to that assembly a while later to adjust the position of some of the parts. When I open the drawing, however, these changes do not show up in the drawing environment. All of the parts are still in their original positions, even though in the assembly they are in new locations.
I've checked and it seems that the drawing views are referencing the correct assembly model. I tried deleting and replacing the dimensions, but that does not change dimension value to be correct. I also checked to make sure the "Defer update" box in the Options window is not selected.
If I place a new base view of the same assembly in the same drawing, it shows up with the new locations, but the original base view will not update.
I really would prefer not to delete the entire drawing and start over.
View 7 Replies
View Related
Sep 24, 2012
I'm having trouble showing a reference part in an assembly drawing. When said part is set to "reference" it is no longer visible on the drawing.
View 9 Replies
View Related
Mar 15, 2013
I am working on a large plant piping project and while I've seen this behavior before I've never seen it this bad.
Attached is a screen shot of a small portion of the assembly drawing in which you can see a good example of what I'm dealing with.
At the top you can see a weld neck flange that appears to be attached to air where there should be an elbow. In the middle you can see that on one side of the elbow there is missing geometry.
At the bottom is another flange that attached to air where there should be an elbow. This drawing is littered with these errors and as such is unsuitable for even a reference document.
I have turned visibility of these components off and on without resolution. I have turned on tangent and interference edges without resolution.
I have translated a copy to ACAD to see if it's simply graphical but the ACAD file shows the same errors. I have checked parallel and perpendicularity and all is well.
Inventor 2012 Pro 64bit (Build 219 - SP2)
Vault 2012 Pro Admin
Windows 7 Pro 64bit
Quad Core processor 2.26 Ghz
16 GB DDR3 RAM
1.5 GB Nvidia Quadro FX 4800 (Driver Version 9.18.13.1090)
2 – 320 GB SATA drives
View 3 Replies
View Related
Feb 18, 2013
I want to know if there is any api to check if a particular drawing is a assembly drawing or part drawing.
View 4 Replies
View Related
Jan 10, 2012
how to rotate an assembly drawing using vba codes?
View 4 Replies
View Related
Nov 7, 2013
I wonder if it's possible to see with ilogic if a part exciste in all others view (in assembly) of the same sheet?
View 9 Replies
View Related
Jun 11, 2013
how can I change different colour in a assembly drawing. That means in a single drawing there is so many parts assembled I want to change the different parts in a different colour.
View 1 Replies
View Related