AutoCAD Inventor :: Splitting / Adjusting And Rejoining A Part

Dec 2, 2011

I can split a part into 2 solid entities, I now want to rotate one of these entities with it's features say 30 degrees or whatever and then rejoin them as a newly shaped part.

I think all this is possible apart from rotating the split solid after splitting?

how can I rotate my split solid?

View 3 Replies


ADVERTISEMENT

Premiere Pro :: Adjusting Speed Of A Clip Part Way Through?

Jan 12, 2014

I'm using Preimer Pro CC and I have a clip which is 1min long - I want the first 30sec to play at normal speed and the last 30sec at 200%. I can work out how to speed the whole clip up but not a portion of it.

View 2 Replies View Related

AutoCAD Inventor :: Splitting File Name In Two

Mar 26, 2013

I have an inventor part with the name “0955-P05”. To break it down the Job # is 0955 and the Mark # is P05

The code below will automatically take whatever the file name and split it to fill in the Job # and Mark #

'MarkNumber and Job Information
'Filename Convert
Part_Number = iProperties.Value("Project", "Part Number")
iProperties.Value("Custom", "Job" ) = "=" & Left(Part_Number,4)
iProperties.Value("Custom", "MarkNumber") = "=" & Right(Part_Number,3)

The code works great in till my Mark # reaches P99

I know what you’re thinking but I can’t change the Mark #s to P001 and fix the code that way. The whole company is already set up with this Mark # system and they will not change it.

View 2 Replies View Related

AutoCAD Civil 3D :: Adjusting Annotative Scale Is Not Adjusting Label Text Size

Mar 30, 2012

I am having trouble getting my Civil3d line labels to adjust with the annotative scale. 

View 4 Replies View Related

AutoCAD Inventor :: Splitting A Pyramid In Half?

Dec 8, 2011

I am creating three shapes out of a pyramid. I figure if I split the pyramid in half, I can create two, then mirror them and blend the two together to make the final design. I have figured out how to create a pyramid by extruding a cube with a taper.

My pyramid is 40mm x 40mm x 40mm. I need to cut it in half, diagonally, top to bottom.

When I have the pyramid in the workspace, I see nothing that I can select - that will allow me to create lines where I need to - to cut them out.

I'll add a logo in 3-d that I am trying to create. (also, I am using this project to familiarize myself with the software.)

View 9 Replies View Related

AutoCAD Inventor :: Splitting Face Into Multiple Ones From One Sketch?

Apr 2, 2012

What I'm doing is preparing a model for FEA, and I want to split some faces for where the nuts meet a surface. So far I've only been able to do this by repeatedly making a sketch and then splitting around each hole. Is it possible to do several splits from one drawing or to pattern the split? (I've attempted both, but failed hard).

Splitting a surface 5 times is slow, but essentially fine. Doing it this way when I have more bolt holes though is a chore.

View 2 Replies View Related

AutoCAD Inventor :: Splitting Sections Of A Tank Shell

Jun 1, 2012

Is there a way to use the Split Solid tool to partially split a circle and have multiple solids after.

Ex) I would like to cut the tank at the 180 and 270 deg marks. Using the split tool still cuts through 0 and 90. I tried drawing a line from a top view that started from center going through 180, but it still goes through 0 as well.

I've attached an example shell of where I would like to have 6 solids after.

View 5 Replies View Related

AutoCAD Inventor :: Splitting Parts Lists Into Two Sections

Jun 7, 2012

I have a really long parts list and would like to know if there is there a way to split the parts list into two distinct shorter lists.

This is how it is done in Solidworks.  Just wondering if splitting BOM's is possible in Inventor.

[URL].......

View 4 Replies View Related

Illustrator :: Cutting Section Out Of Object And Rejoining

Feb 6, 2013

I have an object that i need to cut a section out of the middle and bring the two remaining sections together.

View 5 Replies View Related

AutoCAD Inventor :: Form For Adjusting Distances

Feb 10, 2013

I have a form for adjusting center distances between several posts, up to a total of 20 posts. The number of posts is adjustable depending on how many I need. If there is 10 active posts there will be 10 suppressed post. When there are 10 suppressed post, I don`t need them in the form. Is it possible to hide the center distances I don`t need?

View 2 Replies View Related

AutoCAD Inventor :: Adjusting View Port Margin?

Mar 14, 2012

I know I can adjust the view port margin to increase the view clip to show more reference geometry.

But from what I see, if the drawing is a projected view and I set the margin, it changes the margin for ALL the associated views.

This is not a base view or a view that has other views projected off of it, it is a view projected from a base view.

Changing the margin for this view, changes the margin for the base view as well.

Is there a way to change the margin on just the view you want without having to re-create it as a stand alone view?

View 2 Replies View Related

AutoCAD Inventor :: Unable To Derive A Part Containing Only A Block Into A Sheet Metal Part

Nov 15, 2011

I set up our company log which gets embossed on most parts as a sketch block in an .ipt.  The .ipt contains nothing but the sketch block.  To use it, the designer only needs to derive the Logo.ipt file into their part and then use the scale setting to set the derived block to the desired size for that part.  The result is a scalable set of line geometry that can easily be used for extrusion or emboss that is standard for all users.  It works beautifully, that is until you try to use it in a sheet metal part in 2012.

For some reason, when this same part, which works perfectly in normal parts, is derived into a sheet metal part an error pops up stating that, "Selected part does not have any geometry that can be derived."  Say what?

I was able to find a workaround by directly copying the block into the sheet metal part, but you no longer have the ability to go back and scale it if needed.  Even more strange, when the block was copied over, it could not be deleted from the new part.

Is this just a bug with 2012?  Why does it work in a normal part but not sheet metal?

View 7 Replies View Related

AutoCAD Inventor :: Part Inserted In Assembly File As Tube And Pipe Run Part?

Mar 28, 2012

Dear Sir, In particular project, when I insert part in Assembly file, It is inserted as a Tube & Pipe run part. so that It is not Grounded automatically. What is the settings by which I can insert as a normal part in assembly file ? I have attached herewith the JPG file also.

View 3 Replies View Related

AutoCAD Inventor :: Make As Sheet Metal Part And Have Option To Flatten Part?

Dec 28, 2012

The part i make is from solid model>The part needs to be in sheet metal.What steps do i use to make as sheet metal part and have option to flatten part.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Rule For Each Part In Assembly To Change Part Parameter

Apr 1, 2013

I`m looking for the iLogic code that can change one parameter (user defined) for each (ipt) part in assembly (iam)

The one below doesn`t work.

Sub Main Dim oApp As Inventor.Application = ThisApplication Dim oAssy As Inventor.AssemblyDocument = oApp.ActiveDocument For Each oSubDoc as Inventor.Document In oAssy.AllReferencedDocuments On Error Resume Next Parameter(oSubDoc, "FH") = 15.26 Next End Sub

View 5 Replies View Related

AutoCAD Inventor :: Splitting Curved Faces Into Two Faces?

Jan 11, 2013

i got Inventor recently, and i've been working on a model of a longboard just to teach myself how to use the tools in Inventor. right now i'm trying to color areas for the griptape pattern so i drew the 2D pattern and projected it onto the 3D model of the longboard. but when i tried to split the faces of the model along the projected pattern only a few of the projected lines split the faces. for other faces i kept getting these errors: 

Create parting line failed Crane.ipt: Errors occurred during update Split11: Could not build this Split The attempted operation did not produce a meaningful result. Try with different inputs.

View 1 Replies View Related

AutoCAD Inventor :: Simplified Part - Assembly Won't Merge Into One Seamless Part

Dec 11, 2013

I would like to simplify this assembly into one seamless part for FEM calculation:The assembly consists out of parts that, in reality, will be welded together. Due to their form, there is no way to place them exactly onto each other, therefore there are slight gaps between the parts:

Now when I try to merge the assembly into one part via "simplify" --> "create simplified part" and choose "single solid body with seams between planar faces merged", Inventor does not fill these gaps (even though it displays only one part in the bottom right corner of my window). Unfortunately, the remaining gaps brings "contact" problems in the FEM simulation.

how to close the gaps and really merge the assembly into one part?

View 6 Replies View Related

AutoCAD Inventor :: Part Created In Assembly Does Not Update To Part File

Nov 15, 2013

New user 2014

Part created in assembly does not update to part file.

View 9 Replies View Related

AutoCAD Inventor :: Can Part Make Alterations To Other Part When Inserting In Assembly

Mar 29, 2012

I have a part that has protrusions. When i mate that part up to another part that second part needs to have cutouts/holes to receive those protrusions.

i mainly use it in sheetmetal parts. and use the rectangular protrusions on de contour to mate up with corresponding cutouts in the other sheet. this works with positioning and also makes for a nice weld spot/area.

But also for making holes to accommodate a mold pin used in custom punch dies. I want the intervening part to receive a corresponding (propperly tolleranced) hole automatically. Much like a bolted connection does.

same for parts like circlips. i want them to automatically generate the seat in the part it's mated to. Rather than using the axle generator.

Ofcourse one can place the parts and do an in assembly interpart projection and go from there, but i want the part to generate the (predifined) modification to the other part. It would save time and also reduces problems as the parts are moved about or even removed.

View 7 Replies View Related

AutoCAD Inventor :: Find Mass Of A Part At Its Part And Assembly Level

Jul 1, 2013

I have an assembly with 10 parts in it. We use many assembly features at the assembly level (Revolve cut, Extrusion cut..etc). How to find the mass difference of each part by comparing at its parts level and its assembly level.

View 1 Replies View Related

AutoCAD Inventor :: Converting Solid Part To Sheet Metal Part?

May 4, 2012

convert the part that I have drawn to sheet metal. I have tried to make the part from sheet metal and it did not work out at all. I have attached both versions of the part.

View 1 Replies View Related

AutoCAD Inventor :: 2012 Crashes When Opening Part Or Making New Part?

Feb 14, 2012

As soon as I open a piece or try to make a new piece, it crashes! I can open the program but can't use it! I installed it and activated it and I can't use the program at all. I have sent many error reports beacuse I have opened it many times and had it crash many times and have always given my email address. Attached is the Error Report Details screen shot. 

View 3 Replies View Related

AutoCAD Inventor :: Convert Standard Part To Sheet Metal Part

Aug 29, 2012

In previous releases (2009 i think) when i converted a standard part to a sheet metal part i could recall all the sheet metal styles by linking back to the sheet metal template (i can't remember exactly how this was done, but it was possible with one operation)

In 2011 i canot find a quick way of doing this, it looks like i have to open the sheet metal template and export each different style (about 40 of them) and then import each one into the converted part. am i missing something? is there a simpler way similar to how it used to be done? Why have Autodesk made this more difficult?

As it stands at the moment it would be quicker for me to remodel the parts from scratch using the sheet metal template. I know this is the obvious solution, but seems strange to change something that worked well to something that doesn't!

View 6 Replies View Related

AutoCAD Inventor :: Remove Part Form Part In Isometric View?

Oct 23, 2013

I order not to hide components, i want to make a break sketch and remove a piece from a part from an assembly in the isometric view in a drawing. can i do that?

View 4 Replies View Related

AutoCAD Inventor :: Bend Part Of Normal Part (not Sheet Metal)

Apr 3, 2013

I have a structrual rectangular tube as shown in the picture below. I need to fold the four flanges inward to create a sort  of point or pyramid.

View 9 Replies View Related

AutoCAD Inventor :: Insert STEP (STP) Part Into Existing Part File?

Sep 11, 2013

The simple question is… how can we insert a step (stp) part into an existing part file? 

The story behind the question is this:

Normally when we get a step file assembly from a customer, if the part has changed, we put our part into Old Versions and save their new step file as our ipt number and replace it in our assembly file.  With Vault, in order for us to maintain the history of the part files, we need to keep the original file so we can’t just delete it or replace it, so now we need to figure out how to get a step file into an ipt.  The Import command on the Manage tab (with 2013 at least?) does not allow import of stp files just yet.

The only other option I can think of is to put the original part into an assembly with the step file, create a copy of the step information in the part file and use it to recreate the new (step based) part.

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 1 Replies View Related

AutoCAD Inventor :: Make Single Surface Of Part Transparent So Inside Of Part Is Visible?

Mar 11, 2013

I'm modeling a temperature gauge and would like to have glass over the gauge so the inside is visible. I can easily do this with an assembly, but I'm wanting to do this with a single part. I tried to derive a new part from the assembly, but the transparent part turns solid so nothing inside is visible. Is it possible to do this?

I've include pictures of what I want and what I end up with.

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

View 9 Replies View Related

AutoCAD Inventor :: Changing Part Type From Normal To Purchased Part Like Bearings / Bolts?

Apr 11, 2013

Some times we use standard parts which we could not find in content center. We creat part ourselves. But it looks like standard part in BOM or part explorer window...

I want to change type of part to PURCHASED type and icon like other purchased parts like bearings or bolts...

Is this possible?...

It can be also assembly parts like bearings. Bearings have many parts but it looks only one part in part explorer. This is very good. I want same thing too...

View 9 Replies View Related

AutoCAD Inventor :: Unable To Make Mirrored Copy Of Part Created By Altering Standard Part

Apr 1, 2013

I have created the part based on piece of standard angle taken from library. Now I want to make a mirrored copy of this part by Component-Mirror.

Inventor does not let me do it with standard part.

The question is: How I can transform a standard part to normal one, I mean I could get rid of belonging to standard part? Making a copy does not work. The only way is to derive and mirror this part but I wish there could be easy way.

View 9 Replies View Related

AutoCAD Inventor :: Find Part Which Is Inside Another Part Or Assembly?

Aug 20, 2013

If I want to find part which is inside another part or assembly, which means no matter how I turn camera, I always cannot see that part.

Does inventor has this function? Or is it possible to develope by .NET API?

View 4 Replies View Related

AutoCAD Inventor :: Quantity Of Each Part That Are Merged By Part Number?

Feb 19, 2012

Is it possible, if you have a merged BOM.row to get the total quantity of each part?

inventor professional 2011 / 2012 / 2013

View 4 Replies View Related







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