AutoCAD Inventor :: Command MIRROR To Create A Symmetric Component From Existing Ipt

May 17, 2012

When I use the command MIRROR to create a symmetric component from existing ipt there are two problems:

1. in the existing ipt dwg the dimensions were lost, when I update the dwg;

2. in the iam that contains the mirrored component the constraints were lost, when I update the dwg.

View 4 Replies


ADVERTISEMENT

AutoCAD Inventor :: Unable To Mirror Component

Jul 17, 2013

I am attempting to modify a component that I already have.  Part of the modifications I am attempting to do involves mirroring some of the part's features.  However, when attempting to mirror the component I receive the error message attached to this post: "Select set contains object that cannot be patterned".  I have been fooling around with this part and a few others and this appears to be an error message that comes up for mirroring or patterning (circular/rectangular) complex shaped parts.  What specifically is the issue here and how can I bypass this error message?

View 8 Replies View Related

AutoCAD Inventor :: Mirror Component Is Taking Long Time To Finish

Jul 23, 2012

When I use the mirror component, is taking around 15 minutes to finish (3 simple sheet metal)..

View 3 Replies View Related

AutoCAD Inventor :: How To Create Symmetric Pattern Of Components Equally Mid Plane

Sep 14, 2009

I'm using Inventor 2009.

Imagine a flat, rectangular plate with origin plains located symmetrically down the middle of the plate. Place a component, say a small cube, and constrain it to the face of the plate and the origin planes so that it too is symmetrically located. I now wish to pattern this cube about the midplane and create a total of five instances. I select "Pattern Component" in assembly mode and select the cube. For direction 1, I put in two instances and select an edge of the plate so that the pattern is taken to the left of the midplane. For direction 2, I again select two instances but pick an edge so that the pattern is taken to the right of the midplane. I now should have a total of 5 cubes but I don't. I have 6.

The second pattern is actually a repeating pattern of the first which, in the end, creates too many cubes. Visually, it looks correct because the cubes are placed excatly on top of each other. Numercially, like in BOMS, it is not correct.

Is there a way to avoid these duplications?

View 8 Replies View Related

AutoCAD Inventor :: Mirror Command Will Not Select Lofted Feature?

Jun 18, 2012

I select the mirror command, but it will not select the lofted feature. All of the extruded features will select just fine.

View 5 Replies View Related

AutoCAD Inventor :: Copy Colors Of Surfaces With Mirror / Array Command?

Oct 30, 2013

I have an ipart I'd like to create w/ surfaces.  The surface color is important because we use that as plate thickness ID in FEA.  When I color a surface blue, then another red I continually get the default color when using the mirror or array command.  We're creating a customizeable ipart where there will be some intelligence surrounding how big the array (we may need 3, 4, or 5 beams based on the unit size).  I need a way that the colors on the surface propogate to the new surfaces created by the commands.

View 1 Replies View Related

Maya Modeling :: How To Edit Symmetric Model With Non-symmetric UVs

Apr 17, 2012

I've created a model of a monkey in Maya. The model is symmetric along the X axis - however, the UVs are not.

I've just gotten to the stage where I'm rigging my model and discovered that I'm missing polygons for a finger joint on both hands. I'd like to insert some edge loops for this extra joint. I could do this by just adding the loops by hand, but if I do that, they'll be a little bit off and my model will no longer be symmetric. Alternately, I could delete the right half of my model, add the loops on the left half, and then mirror and merge my geometry. This would preserve the symmetry, but completely destroy the UV info on the right half of my model.

This seems like it would be a common modeling problem. Does Maya have a way I can add the extra cuts to my model, preserve symmetry and not force me to redo the UVs and texture map for my entire model?

View 3 Replies View Related

AutoCAD Inventor :: Create Plane And Mirror Solid?

Nov 5, 2012

create a plane and mirror a solid?

I am planning to have the following workflow:

Plane creation:

Through the z-axis and at an angle of 7,5° to the XZ-Plane

Naming the plane - Mirror Plane

Turning off the plane visibility

Mirror solid:

Add mirrored solid to the existing solid

Here is a sample ao the code...

Dim oDoc As PartDocument
oDoc = ThisApplication.ActiveDocument

Dim oCol As ObjectCollection
oCol = ThisApplication.TransientObjects.CreateObjectCollection

'This does not work...

oCol.Add(oDoc.ComponentDefinition.SurfaceBodies(1))

'Here I want to create a new plane

Dim oPlane As WorkPlane
oPlane = oDoc.ComponentDefinition.WorkPlanes(1)

Dim oMirror As MirrorFeature
oMirror = oDoc.ComponentDefinition.Features.MirrorFeatures.Add(oCol, oPlane, False, kOptimizedCompute)

I have also attached a simplified part file where the code has been copied inti the iLogic browser

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 :: Unable To Create Component?

Jul 4, 2009

now a have a typical error to insert in my assambly a item from my content center, reciveing a erro like "unable to create component", i´m looking for a solution inside forums and find a solution but didn´t work for me, the solution watched and did for me as deleted of the content folder "CACHE" in my computer C:/....all users/inventor..../cache.

I use AI2009 with SP1.

What can i do, delete all families from content center and upload again?

View 4 Replies View Related

AutoCAD Inventor :: Programmatically Create Virtual Component?

Mar 18, 2013

I am trying to use iLogic to programatically create virtual components in an assembly. These components will by used as iProperty "buckets" to hold Machine Center specific information to be exported to production planning software. This information is hierarchical in nature and cannot be (conveniently) stored in the assembly iproperties directly.

View 3 Replies View Related

AutoCAD Inventor :: Unable To Create Component From Content Center

Oct 18, 2013

Today, all of a sudden, my coworkers and I cannot place standard parts from our content center (there are only three of us). We are not using Vault - but we have set up our Content Center to access a network location:

N:StandardsInventorContent Center FilesLibraries

This has worked for months ever since we set it up. Problems just started today for all of us. Parts that DO work are parts that you have to tell it an extruded length (like structural steel or tube/pipe). Nothing else will work (fasteners, pipe fittings, shaft collars, etc).

Interestingly, if I select to insert the part "as custom" instead of "as standard", all parts work like they should.

For the parts that do not work, I can navigate through all of the menus to select parts, but instead of getting the "Save As" dialogue, I get the "Unable to create component" error message.

View 1 Replies View Related

AutoCAD Inventor :: ILogic To Create Custom IProperty In Sub-component

Apr 1, 2013

I found this code to create a custom iProperty in the current, open document:
 
Dim propertyName As String = "MyProperty"Dim propertyValue as String = "Test Value"customPropertySet = ThisDoc.Document.PropertySets.Item("Inventor User Defined Properties")Try prop = customPropertySet.Item(propertyName)Catch ' Assume error means not found customPropertySet.Add("", propertyName)End TryiProperties.Value("Custom", propertyName) = propertyValue 

I have a iLogic rule that goes through each component of an assembly, counts how many times it occurs in the assembly, and then assigns that value to an iProparty (i.e. it inserts the total quantity of the part in some iProperty). Currently, however, it assigns the value to a default iProperty value, "Authority". I'd like, instead, for it to assign it to a custom iProperty called "Total QTY". However, I don't know how to tell Inventor to do the above code for a component in the assembly rather than the assembly itself. Below is my entire code. I've labeled where I'm guessing the above code should go. How I'd modify the above code to create the iProperty in the component being processed by the rule at that point?

Current
 
''True comment: Begin '''Commented-out Begin '''PartDocumentObject = 12290''AssemblyDocumentObject = 12291Dim openDoc As DocumentopenDoc = ThisDoc.DocumentDim docFile As DocumentIf openDoc.DocumentType = 12291 Then''If the open document is an assembly:''For each document referenced in this document:For
[code]......

View 2 Replies View Related

AutoCAD Visual LISP / AutoLISP :: How To Mirror MTEXT Existing In Drawing

Aug 2, 2012

i have a situation that i need to mirror a lot of MTEXT exisiting in my drawing with following needs ( as attached CAD file) :

- MIRRTEXT = 1

- original text retain not deleted.

- mirrored texts become on another layer with another color.

- mirrored texts exactly become over the original text.

View 1 Replies View Related

AutoCAD Inventor :: Default Template When Using Demote (Create In Place Component)

Mar 6, 2012

how to change Default template when using "Demote" in an assembly? Discovered that it was set to use harness.iam as default, want to have standard.

View 1 Replies View Related

AutoCAD Inventor :: Create Circular Component Pattern And Maintain Orientation

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

AutoCAD Inventor :: Set Up Symmetric Stress Analysis?

May 9, 2013

How to set up a symmetric stress analysis?

I read about using symmetric analysis on a symmetric assembly, but no description of how it is done.

View 1 Replies View Related

AutoCAD Inventor :: Create Section View Of Single Component In Presentation File?

Jun 18, 2012

I'm in the process of creating an exploded view of an assembly. I'm having to do this in a presentation file, and I was wondering if it was possible to section one of the parts in the exploded view. To be more specific, I have the majority of my parts spread out around another assembly in the center of the page. I want to get a three quarter section view of the center assembly so the internals are visible. Is this possble from within a presentation file and if so, how can it be done?

Inventor Professional 2013
Intel Xeon W3680 @ 3.33Ghz
12GB DDR3 RAM
NVIDIA Quadro 2000 GPU
Windows 7 Professinal 64-bit

View 2 Replies View Related

AutoCad :: Optimize The Mirror Command

Dec 2, 2011

I use often the Mirror command and I want to optimize that. To end the Mirror command,you have to choose if you want to erase the source objects.

Usually,I don't want to erase the source objects so,this dialog it seems to be useless. What is the macro command that disable this dialog?

View 2 Replies View Related

AutoCAD Inventor :: Browser Component Names Do Not Change After Replacing Component

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

AutoCAD Inventor :: Detecting If Component Occurrence Is Virtual Component

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

AutoCAD Inventor :: Using A Solid Component To Cut A Different Component In Assembly

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

AutoCAD Civil 3D :: Create All New Existing Surface Over Existing Ground

Sep 28, 2012

I'm trying to create an all new existing surface over existing ground. I have a TIN surface of the EG, and I have drawn overlay splines that describe the new surface, but how to go about creating that design surface.

It is a compound surface, open on one end and closed all around on the other, somewhat like a half of a football stadium, but with an irregular upper edge because I am needing to figure out cuts and fills to manipulate the EG into this new surface without costly major terraforming. There is about 40-50' vertical elevation between the "field" and the upper rim with a generally constant 7-10 deg. slope all around. I'm just at a loss to figure out how to approach this project, and am quite new to Civil 3D.

Civil3D 2013
MacBookPro 17 - 2.4GHz Intel QuadCore i7 (Late 2011 build)
Microsoft Windows 7 64bit
350GB Bootcamp volume

View 2 Replies View Related

AutoCAD 2010 :: Mirror Command Default Erase Source Object Set To Yes

Oct 22, 2012

I'm trying to change the dafault varible for the mirror command from no to yes. whne you do the mirror command after you choose your second point it asks if you want to erase the source object and the default is set to no but I would like to change it to yes. I'm able to change the macro for the mirror button which works but only when I push the button. Before the cui file I remember everything was done from the acad.pgp or the acad.mnu files but with the new CUI file i can't seem to locate wher to change the actual command and not just the macro for the mirror button.

View 6 Replies View Related

AutoCAD Inventor :: Create Material Style From Existing Mat Library?

Sep 7, 2012

I have copied the "Diamond Plate" from the Inventor Apperance Library to my document.  Now I want to edit the texture that this style is using. 

1. Where is the texture map that this style using located?  When I edit the style, I can't tell what is telling it the filename.  I have mundged every file on my hd that it could possible be (hoping it would cause an error), but that didnt work either.  Another thing I tried was in the QAT "Duplicate as Generic", but that did not show me the texture file either.

2. Is there a way to change the angle of the texture?

View 1 Replies View Related

AutoCAD Architecture :: White Ghost Boxes With Copy / Move Or Mirror Command

Jun 8, 2013

I am getting these white "ghost" boxes with every copy, move or mirror command. They can be individually deleted but that takes too long. The more there are the slower each command takes, to the point a copy can take over a minute. If I save and close then when I reopen they are gone -- until I execute a command. This is unique to a single file I recieved  from a friend using a PC based Autocad; I use Autocad for Mac. I had no trouble with his file until I did a "Save As" and used it as a base for a new file. Now, every file that is a copy of it, even any file in which I x-ref it, has the same problem. All of my original, older files are fine. There is simply too much work in these (now) five files to start over. See attached.

View 3 Replies View Related

AutoCAD Inventor :: Fudging Existing Drawing With New Dimensions To Create Variation?

Jan 21, 2013

I was just asked to take an existing drawing and "fudge" the drawing with new dimensions to create a variation.So I over rode the dimensions and edited the title block date/drawn by.

I replaced the model reference HOWEVER......I have not been able to CHANGE the title or drawing number (despite the fact that the replaced model has the iProperties that I want).

I suspect this is due to the fact that the drawing is set to NOT update (I have red lightning bolt).

Can I get away with doing what I want without recreating the whole drawing?

Inventor Product Design Suite 2013sp2
Windows 7sp1 64-bit
nVidia Quadro 2000

View 1 Replies View Related

AutoCAD Inventor :: Create Handrail Section To Suit Existing Staircase

Sep 19, 2011

I am trying to create a handrail section to suit an existing staircase. I have drawn the plan of the handrail out and then created a 3d sketch to plot the height of the handrail relative to the plan.

My plan was then to draw a spline through the points and sweep the handrail profile along the spline to create my model. If this is the right way to create the model or does tried and tested procedure?

View 1 Replies View Related

AutoCad 3D :: 3DMIRROR Command To Mirror Magenta Box Along Zx Plane Defined By Middle Of Steel T-angle

Nov 13, 2013

Why can't I get the "3DMIRROR" command to mirror the magenta box along a zx-plane defined by the middle of the steel T-angle?

First, I use the ZX option, and after that fails to work, I try the 3-point option using a picked first point and two ortho-points to define a zx-plane.

Also, there's some randomness in the sense that some of the time the exact same series of steps will produce the correct result, but not this time, as the video below shows.

[URL]....

I'm also attaching the drawing in AutoCAD2010 format.

View 0 Replies View Related

Photoshop :: Adding Video Editing Component To Existing CS5

Oct 4, 2012

I have adobe photoshop CS5 version 12.1.  Is there any way to add on the video editing component without having to purchase the whole Premiere package?

View 6 Replies View Related

Revit :: Mirror Command Flipping Families?

Jan 6, 2014

still on this family quality control audit... i've come across some new and entertaining behavior.
 
several fmailies (face based) flip host sides with their flip controls as expected, but if i mirror them , instead of flipping along the mirror line as an accurate reflection, they ALSO flip top to bottom, AND around the face.
 
the right family in both views is the original, the left is the new mirror. (plan and elevation views in wire frame included)  you can see it landed within the wall, and upsidedown. 

View 7 Replies View Related







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