AutoCAD Inventor :: Library Assembly Always Referencing To Save

Nov 28, 2012

We have an issue that I'm trying to work on and get a solution to move forward on a current project.  Previously when using a pneumatic cylinder, the procedure has been to set the stroke length as a permanent extrusion and not have it flexible.  I have created a few new cylinders that have flexible strokes, and then have positions set up as well.  We want these cylinders to be available for all projects and to be uneditable, essentially we need them in the library.  What is happening is when we place this part from the library and make it flexible in a project the assembly becomes dirty and is requesting to save the file before checking the main assembly back into the vault.  What am I doing wrong?  Is it not possible to have a library assembly file that is flexible in another project? 

Something similar to this website: [URL] ....

The only thing is having those hydraulics as library parts.

View 4 Replies


ADVERTISEMENT

AutoCAD Inventor :: How To Configure Assembly For Flexible Library Referencing

Jan 8, 2013

I'm going through some customer equipment models and setting them up in my library for referencing.  For example, I'll setup a machine that belongs to a customer, then reference it through a library when I design new tooling and/or components to work with existing equipment.

One such machine is a simple positioner.  It's got a linear slide for "X" movement that's got an arm on a mounting plate.  The slide has some amount of travel, say 500mm or so.  And the mounting plate has 5 sets of mounting holes.  So the arm can have four bolts removed and be mounted in any (1) of (5) different locations.  This is in addition to the slide's travel.

When I design future assemblies and components for this, I'd like to be able to insert the assembly from a library into my "new" assembly in a flexible configuration where I can set it up using any combination of mounting holes AND slide travel.

So I can setup (5) different positional reps for the mounting hole configs.  That's easy.  With respect to the slide, I can create a constraint that allows the arm to extend and retract, but how can I get the library assembly to "rest" in multiple locations?  For example, I may work on Design A that needs the extension at 241mm and Design B at 316mm.

Would I need to setup a different Pos Rep in the library assembly for the requirements of every new design? Unfortunately, the design is proprietary to the customer, so I really can't post anything about it.

Inventor 2014 64-bit SP1
Win 7 Pro 64-bit SP1

View 2 Replies View Related

AutoCAD Inventor :: Referencing Parts In Assembly?

Jan 18, 2013

I have a rather complex assembly that I didn't draft but I am trying to work with. Most of my experience is with Solidworks. I'm trying to create a hole in a plate that lines up with a hole in a different part in the same assembly. I know there is probably a way to create the hole in the assembly and reference the other part but I dont know how.

Autodesk Inventor 2009

View 2 Replies View Related

AutoCAD Inventor :: External Referencing Of Part File By Assembly File

Dec 13, 2013

Describe the external referencing of a part file by an assembly file? I keep getting confused between part file and an assembly file.

View 2 Replies View Related

AutoCAD Inventor :: How To Add Part From Vault Library Into Any Assembly

Jan 9, 2013

I have a library file in the vault folder. I need use this library files to create new assembly file. How can i use inventor API similar to add occurrences to any assembly file.?. I am using Vault Project and saving the new assembly to the local folder. There is no need to download Vault Library file to local drive.Just i need to use the vault library files for assembly. Later If I add this project to vault along with the assembly i have created, It should always have the reference with the vault library files.

View 1 Replies View Related

AutoCAD Inventor :: Using Content Library In Assembly And Sending To Other PC

Feb 12, 2012

I created an assembly on my computer and some of the parts used are standard parts from the content centre. Now I need to send that assembly as an email. I sent all the associated parts and files but the receiver still can't open the assembly correctly due to the parts from the content centre.

View 5 Replies View Related

AutoCAD Inventor :: Add Mass Of Wires And Cables To Assembly (C&H Library Objects)

Dec 6, 2013

Seems like Inventor ignores wires and cables when calculating mass of the whole assy.

View 1 Replies View Related

AutoCAD Inventor :: Save New Material To Library?

Sep 11, 2012

I have a user that has created a new material which is now sitting as a local style. We require this new material in the library so that everyone can use it.  I tried RMB on it but the save to library functon is greyed out. This is due to the styles being read only in the project file. So I have tried to change the project file so we can add the style and then I'd change it back again, but, even though I have checked out the project file from vault, it won't allow me to edit it. What else can be locking the project file?  Is there some other way I can place the new material into the style library in the project file? There are quite a few of us that use the project file since we use vault, so I'm not sure I should create a new one with the same name and save over it. 

View 3 Replies View Related

AutoCAD Inventor :: Can't Save To Style Library

Jan 21, 2013

Can't save to Style Library

View 2 Replies View Related

AutoCAD Inventor :: Save Hole Notes To Styles Library And Templates?

Jan 12, 2012

Why do I have to select edit hole note each time I use the hole feature tool? It will not keep my settings to show qty.

It seems that I should be able to save it to my library and make it the default. I have saved library,templates all with zero luck.

See 2 screen shots in the attachment.

View 4 Replies View Related

AutoCAD Inventor :: How To Save Materials To Style Library Using Vault Project

Nov 15, 2011

I cant change this to read / write.  I'm using a vault project.  Anyway of doing this so I can save materials to the style library using a vault project? 

View 2 Replies View Related

AutoCAD Inventor :: Update And Save Assembly Through ILogic In Drawing?

Jul 10, 2013

as a part of automating manufacturing drawings, am trying to include ilogic code in the drawing , that would accept values from the user and store it as "user parameters" and make corresponding changes in the inventor drawing file.So, to replicate my issue on a smaller scale, i had created 2 parts and created an assembly out of these 2 parts. I used the assembly in my drawing.

In the Drawing i created a user parameter .. say "external_param". I am opening the drawing and changing the value of the user parameter through the (Fx) parameter table. 

doc = ThisDoc.DocumentIf external_param >= 50 And external_param <= 99 ThenParameter("block_1.ipt.d0") = 15 'change the length of the blockParameter("block_1.ipt.d14") = 3 'change the number of holes in the blockElseIf external_param >= 100 And external_param <= 199 ThenParameter("block_1.ipt.d0") = 40Parameter("block_1.ipt.d14") = 5ElseIf external_param >= 200 And external_param <= 299 ThenParameter("block_1.ipt.d0") = 80Parameter("block_1.ipt.d14") = 6ElseIf external_param >= 300 And external_param <= 399 ThenParameter("block_1.ipt.d0") = 160Parameter("block_1.ipt.d14") = 9End IfRuleParametersOutput()iLogicVb.UpdateWhenDone = True'InventorVb.DocumentUpdate()
 
As you can see, i have commented out InventorVb.DocumentUpdate() , im not quite sure what would accomplish the update and save of the assembly document in the background (without prompting for a save/update). I have also tried thisDoc.Save and thisdoc.update. Using these 2 commands along with the InventorVb.DocumentUpdate() or iLogicVb.UpdateWhenDone caused Inventor to Crash.

View 4 Replies View Related

AutoCAD Inventor :: Force Save Of Drawing's Parts And Assembly To New Folder?

Feb 8, 2013

How may I best reuse a legacy assemlby and it's drawing to create/update to an vairant assembly?

View 3 Replies View Related

AutoCAD Inventor :: Derive Assembly To Part And Save As Step With ILogic

Dec 6, 2012

When we send 3D models to customers, we always derive the assembly to make it 1 solid part, so the customer cannot disassemble it to copy our product, and then save it as a step file.

I want to Derive an assembly to a part and then save it as a *.step file with an ilogic rule.

I worked out the last part, but i cannot find the Derive assembly code anywhere.

Im not an experienced programmer, i can only Copy paste, so if the solution is already posted in a simular rule, i will not be able to pick what i need from the code

View 2 Replies View Related

AutoCAD Inventor :: Changing Referencing For Assemblies

May 1, 2013

I have a master assembly containing three sub-assemblies 1, 2 & 3.I require 3 Drawings from this master assembly.

Drawing 1 showing master assembly, sub-assemblies 1 in full and 2 & 3 in reference.
Drawing 2 showing master assembly, sub-assemblies 2 in full and 1 & 3 in reference.
Drawing 3 showing master assembly, sub-assemblies 3 in full and 1 & 2 in reference.

This sounds so simple but is it possible?We have tried all manner of configurations with LOD.I'm not really keen on locking design views as the assemblies can change at any time.

View 9 Replies View Related

AutoCAD Inventor :: How To Create Folder In Assembly Tree And Save Virtual Part There

Sep 25, 2013

I`m working on the code that reads a list of virtual parts from Excel and adds required qty into the assembly. So far it looks good, I  just need to know how to create a folder in a Assembly view tree and save virtual part in that folder instead of placing it in the root.
 
Dim occs As ComponentOccurrences
occs = asmDoc.ComponentDefinition.Occurrences
Dim identity As Matrixidentity = ThisApplication.TransientGeometry.CreateMatrixDim virtOcc As ComponentOccurrencevirtOcc = occs.AddVirtual(sVirtPart, identity)

View 5 Replies View Related

AutoCAD Inventor :: Referencing ILogic Form Items?

Oct 8, 2013

Is there anyway to reference a form and its specific items in iLogic. For example, say I wanted to change a label on the form when the code ran. How would I do something like this?

Form1.Label1.Value = "SomeString" ?

View 2 Replies View Related

AutoCAD Inventor :: Way To Get A Rebar Schedule Made Referencing Parts

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

AutoCAD Inventor :: Way To Save A Section View In Assembly As View Rep

Mar 13, 2013

Is there a way to save a section view in the assembly as a view rep? Am using 2011.

View 9 Replies View Related

AutoCAD Inventor :: Convert Weldment Assembly Back To Regular Assembly Template

Jun 6, 2012

I am using INV 2012 and I wan to to know a trick how to convert the weldment assembly back to regular assembly template.

View 1 Replies View Related

AutoCAD Inventor :: Creating Separate Assembly Out Of Various Component Parts In Existing Assembly

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

AutoCAD Inventor :: ILogic Assembly Has Double User Request At Inserting In Assembly

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

AutoCAD Inventor :: Tube And Pipe Assembly Styles Don't Translate Into Other Assembly Files

Feb 9, 2012

I have encountered a problem with the Tube and Pipe styles. 

As you can see, I have a rack assembly with a custom tube and pipe style. A wire as a tube in orange, and a tube support in white. Both have their seperate colorations at a style in the tube and pipe styles editor

When placing the rack assembly into the main assembly, it reverts to the coppor coloration I changed from the original style.

Steps I've taken:

Exported the styles .xml and Imported the styles into the master tubeandpipe.iam 

Imported the user created .xml styles into the main assembly file nothing seems to work

View 8 Replies View Related

AutoCAD Inventor :: Find Interior Volume Of Assembly By Subtracting Assembly From Block

Apr 23, 2012

I am trying to find the interior volume of an assembly (when am I not?!?!) by subtracting the assembly from a block that surrounds the most of it.  Somewhere the assembly has a "leak" and I have been trying to use the Cross Section Analysis to track down where the inside lump is connected to the outside lump to be subtracted.  Is there a less time consuming way to dynamically drag a plane across and get cross sectional views?

Even better is there a simple way to animate the analysis plane moving across the block so I can hopefully just watch and pause it when I find a leak?

Inventor 2013 (SP2 Update 2), Windows 7 Professional (64-bit), SP1, Intel Xeon 3.07GHz CPU, 12GB RAM, NVIDIA Quadro 2000, Vault Basic 2013

View 2 Replies View Related

AutoCAD Inventor :: Place Assembly Constraints With Parameters From Parts In Assembly?

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

AutoCAD Inventor :: Make Sub Assembly From Parts From Main Larger Assembly?

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

AutoCAD Inventor :: Translate Assembly Component Using ILogic / Offset From Parent Assembly Origin

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

AutoCAD Inventor :: Saving Assembly Parts As New (sub) Assembly?

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

AutoCAD Inventor :: CoG Needed For Each Sub Assembly In A 2 Part Assembly On An IDW

Oct 3, 2013

I have a two part duct fire damper assembly. The IDW has the combined two part assembly, which I know how to turn the CoG on, so that it can be dimensioned. The problem is each piece will more than likely be hoisted separately so I would like to show the CoG for each piece, not the combined master assy.is there a way to do this?

Inventor 2014
Windows 7 Pro SP1
Intel(R) Core(TM) i7-3770k CPU @ 3.50GHz
16GB RAM
NVIDIA Quadro 4000
3D Connexion SpaceMouse Pro

View 5 Replies View Related

AutoCAD Inventor :: Assembly Within Assembly Detection

Sep 3, 2013

I would like to see if there is a routine that allows my iLogic code to detect if my assembly contains another assembly within it. If my assebly contains assemblies then I don't want "MyRule" to run. Else if it does then I want "MyRule" to run.

View 4 Replies View Related

AutoCAD Inventor :: Two Assembly Positions In One Assembly

Mar 21, 2013

My Assembly has two possible positions for my piston.

I would like to show both piston positions (top and bottom) in one drawing file; however, in different drawing views.

I have tried using LOD and Drawing View Representations, but it is my understanding that neither of these are meant to be used in this way.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved