AutoCAD Inventor :: Convert Internal Volume In A Solid?

Dec 17, 2011

I´d like to do something like that, convert a internal volume in a solid and delete the external solid.

[URL]

View 1 Replies


ADVERTISEMENT

AutoCAD 2013 :: Convert Irregular 3d Shape To Solid To Calculate Volume

Feb 21, 2013

I have a set of 8 coordinates that outline a pit. I have been asked to calculate it's volume. I have input the coordinates, and have produced a 3D image of the pit. I was hoping to be able to convert the object (the pit) that I have created to a solid, so I could then determine the volume, although it is proving to be difficult.

how I could calculate the volume of this pit?

View 9 Replies View Related

AutoCAD Inventor :: Customizable Volume Of Solid Body

Jul 26, 2013

I want to make an ipart of a container with as customizable parameters (the Diameter and the Volume of one of the solid bodies). 

[URL]...

Here comes the problem:

when i was changing the volume parameter, i recieved an error that this property was read-only.is it possible te use the volume calculation from inventor the calculate back to the diameter or height? ,and also for a solid body?

If so, what do i need to do? I am using inventor 2013 (basic).

View 1 Replies View Related

AutoCad 3D :: Finding Internal Volume Of Vessel 2012?

Oct 24, 2013

finding internal Volume of a Vessel AutoCAD 2012, I have revolved the heads 8mm thk and the shell is 6mm thk, what process do i use to find the internal volume ?

View 9 Replies View Related

AutoCAD Inventor :: Convert Surface To Solid

Jan 28, 2010

Is there any way to convert a surface to solid?

View 4 Replies View Related

AutoCAD Inventor :: How To Convert 3D DWG Files To Solid Bodies

Jun 25, 2012

How to convert 3d dwg files to solid bodies ?

View 6 Replies View Related

AutoCAD Inventor :: How To Convert 3D Scan To Solid Model

Nov 4, 2013

I am working on a research project that requires that I scan a cast object and shell it out to a width of .125 inches. I used my school's 3D scanner to scan the cast, and I have a good model. I've made it a surface and exported it as an STP and an IGS into Inventor. I used the Sculpt feature to make it a solid object, but then I could not shell it because a few flaws in the cast made miniscule holes.

I then tried to use the scanning program's spline feature to cut the cast into splines to loft in Inventor. However, this made 5 non-connected lines at each location, so I couldn't loft. How to create a solid and then shell with either method?

View 1 Replies View Related

AutoCAD Inventor :: Convert Solid Works File?

Jul 18, 2012

Is it possible to Convert a Solid Work's file to Inventor?

(I can get the file to open, but when I go to edit there is no model to see, yet there is the model in the drop down menu and get this error message.)
 
Autodesk Inventor Translation Report18 July 2012 (10:15)Source File:C:UsersaxcliffDesktopP01-7064.SLDPRTTranslator Type:SolidWorksSending System:SolidWorksunknownAuthor: Translation Time:00:00:01OptionsImport Type:N/AEntity Types to Import:Solids, Surfaces, WiresImport into Repair Environment:YesImport Assembly as Single Part:NoCreate Surfaces As:Single Composite FeatureImport Multiple Solid Parts as Assembly:NoUnits: Check Parts during Load:NoAuto Stitch and Promote:NoEnable Advanced Healing:N/A
Components

The following table lists the parts and assemblies created in Inventor:

+/-Name Inventor File Status
[+]

View 1 Replies View Related

AutoCAD Inventor :: Convert Solid Into Thin Bodies

Oct 17, 2012

I have a pressure vessel which I am trying to analyse.  Whenever I convert the solid into 'thin bodies', it loses some of the data.  For example, a fillet and a supporting ring (refer to pic attached).  I haven't been able to find any 'shell element' settings to adjust.

Also, I need to manually add contacts otherwise the vessel seperates into multiple bodies.

Even though the solid model is in contact, the 'midsurface' shell seperates it.  Refer to part file attached.

I briefly tried to run the analysis as a solid model, but gave up as it was taking forever just to mesh.

View 6 Replies View Related

AutoCAD Inventor :: IGES Import - Convert To Solid Part

Jul 19, 2012

Two IGES parts and try to convert them to a solid.  I've tried all I can think of with no good result.

I can't get them uploaded, file is too large, what can I do?

View 6 Replies View Related

AutoCAD Civil 3D :: Import 3D As Solid Objects Or Convert Polymesh To Solid

Jun 18, 2013

I have a.3ds file imported into Civil 3d. The object imported as a polymesh in Civil 3d. I need the solid 3d object to do some edit like slice or union and subtract.

The question is "How can I import .3ds into Civil 3d as a solid objects or hoe can i convert polymesh to solid?"

View 9 Replies View Related

AutoCad :: Find Volume Of Solid For MAC

Mar 6, 2011

I need finding the volume of a solid (not the amount a solid can hold) in Autocad 2011 for Mac.

View 1 Replies View Related

AutoCad 3D :: Convert Some Solid Bodies To Single Solid?

Dec 1, 2006

How can i convert some solid bodies to a single solid.

View 8 Replies View Related

AutoCAD Inventor :: Using Make Components Feature To Convert Solid Bodies Into Parts

May 8, 2013

I'm currently using the "Make components" feature to convert solid bodies into parts. This works great, but we use this method to construct angular roof structures, and after the parts have been made the parts have angular relationships to the .ipt files UCS co-ordinates. It would be very useful if I could align the longest edge of the part (Which is a timber truss) with the x axis in the model space and "lay" the plank flat on the X-Y plane.

View 4 Replies View Related

AutoCAD 2010 :: Volume Of Solid Object?

Apr 4, 2012

Is Autocad have a command to calculate the volume of a solid object? If so, it would come in handy at times.

View 1 Replies View Related

AutoCAD 2010 :: Volume Of Solid Shape

Aug 29, 2012

I have a inuniform shape and I want to get the volume of it. How to get the volume of a solid shape?

View 1 Replies View Related

AutoCAD VB :: How To Reach 3D Object Volume With Solid Selection

Apr 28, 2012

I can use SolidSelection.Item  for 3D object's handles and but I can't take 3D object's volumes with SolidSelection.

Then I can put object 's handles(1EE) to a collection.  Can I use SolidSelection to keep my 3D volumes values? All sub-structure of my program works with SolidSelection Object.

Volume Codes;

For Each tEnt In ThisDrawing.ModelSpace
If TypeOf tEnt Is Acad3DSolid Then
Dim tEntSolid As Acad3DSolid
Set tEntSolid = tEnt
tmpVols1.Add (tEntSolid.Handle & "/" & tEntSolid.Volume)
End If
Next

I can't match with returned result of  these codes and SolidSelection.item(i)

For Each tEnt In ThisDrawing.ModelSpace
If TypeOf tEnt Is Acad3DSolid Then
Dim tEntSolid As Acad3DSolid
Set tEntSolid = tEnt
tmpVols1.Add (tEntSolid.Handle & "/" & tEntSolid.Volume)
[code]......

View 1 Replies View Related

AutoCad 3D :: Sculpt Command - Solid Creation Failed / No Watertight Volume Detected

Jun 12, 2012

What is probably a fairly basic 3d Modelling operation. I have a series of planar surfaces arranged to create a relatively basic object. I am now trying to use the sculpt command to convert these into a 3d solid but keep getting the error message;

"Modeling Operation Error: Operation did not add or remove material. Solid creation failed, no watertight volume detected."

Is there any way of;

A. forcing the sculpt command to work through altering some sort of fuzz distance option etc?

or failing this

B. identifying the non compliant sufaces involved so I can attempt to tweak them to suit?

View 9 Replies View Related

AutoCAD Inventor :: Convert Surface Model Pump To Solid Model?

Oct 4, 2011

Am trying to convert this pump into solid ?

View 6 Replies View Related

AutoCAD Inventor :: Convert Surface Model Into Solid Model?

Jan 15, 2013

My problem today is that I made a Model of a Part of a ship using surfaces rather than solids because the engineer thought it would be easier to bring into ANSYS program for analysis but he is now having a problem with it and I am looking into converting my current model to solid. I can do it but the method I thought of using is quite long winded and we are working to a tight deadline.

1.open up the surface part

2.use "Offset/Thicken"

3.any clashes between parts make a sketch and cut away.

the problem is the amount of plates I have and the time it takes to sort them out.

View 1 Replies View Related

AutoCAD Inventor :: How To Convert Surface Body In Solid Body

Mar 8, 2012

How can I convert a surface body in a solid body?

I attach my file.

View 3 Replies View Related

AutoCAD Inventor :: Convert Surface To Solid Model / Turn Off Yellow Edges In Surface Model

Mar 4, 2008

We received a surface model from a vendor that I have patched up as best I can, it still has one hole that I can find that I haven't been able to fill. Ideally we would like to have a solid model, but I'm running out of time to get this done and the surface model we have would be good enough for our purposes IF I can get the yellow surface tangent lines to turn off or change their color to black.

I've attached a jpg of the surface model with the yellow lines and uploaded the model here: [URL].....

View 9 Replies View Related

AutoCAD Inventor :: Split A Single Solid Body Into 2 Solid Bodies?

Sep 19, 2012

I'm trying to split a single solid body into 2 solid bodies. The problem is that the body I'm trying to split consists of two separate pieces. I can split a body when it is a single piece no problem, but I'm having the problem when the two pieces are not joined at all.

When I try and split it on the origin plane it gives this error:

"Creating parting line failed. Could not build this Split"

When I try and split it on a work plane lying on one of the pieces it gives this error:

"Creating parting line failed. Modeling failure in ASM. Redefine inputs."

Or, another variation on this erorr:

"Creating parting line failed. Split feature could not create two bodies. Change the Split Tool so that split feature can create two bodies."

View 4 Replies View Related

AutoCad 3D :: Convert 3D Face Into 3D Solid

Apr 4, 2007

I have this chair in 3d but it consists of 3d faces and i can not convert all of them into surfaces or solids...only the faces that are on the same plane can be converted. Since the object is a little curved...i get the message"faces are not coplanar"...or something.

View 9 Replies View Related

AutoCAD LT :: How To Convert Polymesh To Solid

Feb 29, 2012

I have some objects in AutoCAD Architecture that I need to convert from polymesh to solid. How to do this? I also have Revit Architecture if I can do it in there..

The objects are 3D light fixtures on a 2D floorplan. Can I export the whole drawing as one to convert it?

View 1 Replies View Related

AutoCad 3D :: Convert Polymesh To Solid?

Mar 1, 2012

I have some objects in AutoCAD Architecture that I need to convert from polymesh to solid. I also have Revit Architecture if I can do it in there..

The objects are 3D light fixtures on a 2D floorplan. Can I export the whole drawing as one to convert it?

View 1 Replies View Related

AutoCad 3D :: Convert Surface To Solid Possible?

Mar 3, 2013

Is it possible to convert surface into solid in AutoCAD 2002?

For example, can I convert these five surfaces into a solid pyramid?

If yes, what is the step to do it?

View 9 Replies View Related

AutoCAD Inventor :: Make Solid / Change Parameter Of Solid

Nov 18, 2012

I am making a design on inventor 2013 for a colleague who does not know how to use the inventor.

I want to make the solid and then set something up that allows the user to change a few of the parameters of the solid in a very user friendly way (i.e. a box that says "cylinder radius" and has an input box so the user can enter a value).

View 9 Replies View Related

AutoCAD Inventor :: Replace Components With Different Internal Name?

Apr 24, 2013

I would like to know if there is any possibility to replace a component with another one, that has a different internal name. Losing the dependencies would be acceptable.

ReplaceReference and PutLogicalFileNameUsingFull always return the error "wrong parameter".

View 5 Replies View Related

AutoCAD Inventor :: Design A Set Of Internal Gears?

Mar 24, 2013

how we can design a set of internal gears?

View 1 Replies View Related

AutoCAD 2013 :: Convert 2D Polygon To Solid

Jan 9, 2013

Then I need to extrude it, but when I extrude, it's shallow. So this 2D polygon need to have face. I've tried 3DFACE but then I need to add faces manually. Is there any way to just specify this polygon and have it faced?

View 9 Replies View Related







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