AutoCad 3D :: Creating Viewbase To Part Of Model

Feb 25, 2013

Im trying to create projections of the 3D model with the VIEWBASE command, is it possible to assign it to part of the model?

View 9 Replies


ADVERTISEMENT

AutoCad 3D :: Showing 2D Centrelines Viewbase View Of Model?

Feb 27, 2013

vbasepaper.JPGmodel.JPGIs it possible to display centrelines created in model space in a view created using viewbase? The snips I have attached show my problem. The black background image is from model space showing a node at a tubular instersection. The dark blue centrelines are always drawn first to set out the framework. When I create the manufacturing drawing in paper space it is sometimes useful to show the centrelines. However when I create a view using VIEWBASE only the 3d solids are considered and displayed. I do not want to have to draw the centrelines in every view and detail view as this will take an age and will have to be manually corrected in every view each time there is change.

View 7 Replies View Related

AutoCad 3D :: Part Of Model Disappears When Click On A Part Of Model

May 2, 2012

you have to primitives, that you've modified. These objects are one on top of the other.When you click on the one that's on top, the screen momentarily goes dark, then all you see is the object on the bottom, not the one you are say, moving.

What you should be seeing, of course is the top element, and bottom element, so, (as in this example) you can see how far you have moved it in relation to the bottom one.

My question is: is this happening because my video card is under performing?

System stats:

Windows 7 Ultimate 65bit
i7 Quad Core at 3.4Ghz (it's the 2600 chip)
8 GIGS of Ram
NVidia GT440 with 3 Gigs onboard ram (DDR3) Links to a comparison chart.
PSU 350 watts.

View 9 Replies View Related

AutoCAD Inventor :: Creating Casting Part From Machined Part

Oct 7, 2011

I have a part that is designed to be made from a casting. In my workflow it makes more sense to create the as machined part first and then base the casting on the machined part usually by using save as and then deleting the machined features. I understand that you can easily go the opposite direction by creating the cast and then creating a derived part that you apply the machining features to.

I tried to derive the casting in this way hoping that you could just suppress of delete features without altering the associativity between the two files but it appears that the derived part doesn't "know" about the features on the original, it's just a solid.

It would seem that this workflow would be a no brainer since most of the time the casting depends on the finished part which depends on the design specifications, so am I missing something or is there really no way to do what I want to do without having to go the messy route of having to manually alter two separate parts every time I alter the design?

View 7 Replies View Related

AutoCAD Inventor :: Exporting Part Model To STL

Aug 13, 2013

I have a very simple Inventor 2013 CAD model that I tried to export to an STL and the scale of the STL is not 1:1.   I have tried changing all of the units and setting 100 different ways and I still cannot get it to export to a 1:1 scale for 3D printing.   What is the deal with this I cannot believe it is this difficult.

View 9 Replies View Related

AutoCAD Inventor :: Model Plastic Part Which Is Attached To Each Other?

Aug 23, 2013

I am trying to model a plastic part which is attached to each other on one side of the edge and it snaps into each other on the other side. I was able to manage the hald section of this part but not sure how to do other half.

how to do these plastic parts?

View 1 Replies View Related

AutoCAD 2013 :: Viewbase Is Not Working

Jan 26, 2013

 I recently installed AutoCAD 2013 and was excited to try viewbase to create 2D drawings from complex 3D geometry.  The problem is that despite selecting "from model space" the program launches the dialog box looking for an Inventor file, and there doesn't seem to be a way to simply work from the file's model space?  I even made a new file from scratch with a simple 3D shape and ran into the same problem.

View 2 Replies View Related

AutoCad :: Rebuilding Viewbase Views?

Apr 26, 2013

Rebuilding viewbase views? I have a drawing with unresolved views and I'm not sure how it happened.

On a semi-related note.. Does viewbase based sheet layouts make Autocad more unstable?

View 9 Replies View Related

AutoCAD Inventor :: Display Model Sketch In Part Drawing

Mar 20, 2013

How can I display a sketch or projected geometry that is not a closed loop in a ipt drawing? Historically I have to use a closed loop and emboss in order to display the geometry in a drawing.  

Then move that forward to a DXF file for its intended use.  I think there should be a way to just have lines placed on the model and display it on a drawing without it having to be a feature. 

View 8 Replies View Related

AutoCAD Inventor :: Split A Part Model For Mold Analysis?

Dec 19, 2013

I'm trying to  split a part model for mold analysis. The complex cut line is along a variety of directions and axis. I'm using autodesk inventor 2014,

View 3 Replies View Related

AutoCAD Inventor :: Use The Flat Model Of Sheet Metal Part?

Jan 10, 2014

IS there a way to use the flat model of a sheet metal part?

I want to save only the flat model from the IPT file and use it to build a die.

View 9 Replies View Related

AutoCAD Inventor :: How To Make Part Selected In Model Browser

Jan 25, 2013

I'm using VB 2010 express. My code is getting selected part and changing some "Design Tracking Properties" of it. But when I change the properties focus goes from the selected part/sub?... How can I make part selected again? How can I make it focused.I need like below like

invDocument.SetFocus or invDocuments.MakeItSelected like...
Dim asmDoc As AssemblyDocument
        asmDoc = inv_App.ActiveDocument
        '********
        Dim invDocument As Document = Nothing
        Dim compOcc As ComponentOccurrence = Nothing
[code]...

View 2 Replies View Related

AutoCAD Inventor :: How To Use Existing Sketch While Making New Part (model)

Aug 12, 2013

I have made a part - a motor that has four holes.

Now I'm trying to make another part, which will be aluminium plate that needs to have holes in exactly same points as the motor. My assembly containts both that parts.

What I'm trying to do is to reference in sketch a point that comes from different part (motor).

I could do it by hand, make it look that the holes are on top of each other but then there will be an error which doesn't seem professional.

In some tutorial on yt I have only found that using points one can reference the holes more easily, but it didn't show how.

View 1 Replies View Related

AutoCAD Inventor :: Extract Rev Of A Model (part Or Assembly) From Drawing

Dec 7, 2012

I'm trying to extract the Rev of a model (part or assembly) from a drawing.  Since Inventor has independent revs for the model and idw I am trying to drill down and put the rev from the model referenced.  I got it to work for ipts and many iams using:

Dim oModelDoc As Document
Set oModelDoc = oDocument.Sheets(1).DrawingViews(1).ReferencedDocumentDescriptor.ReferencedDocument

The problem I have is when the drawing only references an ipn presentation file.  The ipn ALSO has it's own independant rev!  I'm trying access the model the ipn references but cannot get it to work.

BTW, I do know about the ability to sync idw and ipt properties.  I have enable it for our template but we have a lot of legacy drawings that don't have this option selected.  I also haven't tested that method with an drawing that only references an ipn.

Code is below with offending section in bold:

' Find model (part or assembly) referenced by drawing if active document is a drawing
If oDocument.DocumentType = kDrawingDocumentObject Then
Dim oModelDoc As Document
Set oModelDoc = oDocument.Sheets(1).DrawingViews(1).ReferencedDocumentDescriptor.ReferencedDocument

[Code]....

View 2 Replies View Related

AutoCad :: Clipping Part Of Geometry In Model Space Annotative

May 11, 2013

Using acad 10 I just start using annotative styles now, so far in order to detail a part I use to actually copy the geometry, change styles and scale and start detailing.

The problem is that often when Im detailing and annotating a part I need it to be clipped.

Is there any way to tell autocad that in scale 1:25 I don’t want to see all the structure but only a specific area of it(clipped inside a rectangle)

View 5 Replies View Related

AutoCAD 2013 :: Creating 3D Model From File?

Jul 11, 2012

I have an AutoCAD drawing (I did not create it) of a proposed trail in my city, and I've been tasked with making some kind of model or render of a section of it. I'm at a loss for how to even start, unfortunately. In the end I would like to have an accurate 3D model of a boardwalk section of the trail with surrounding terrain. I have Sketchup, Google Earth, and Revit at my disposal.

My first problem is topography. When I import the CAD drawing to Revit it seems there is some topographical data, which will be needed to realistically build the boardwalk on top of. I was able to get the terrain of the area into Sketchup from Google Earth, but then I don't know exactly where to build the model.

I've attached an image of a floor I created in the outline of the boardwalk. The area in question begins at the two handicap parking stalls (represented as the two blue towers for some hilarious reason) and ends at the second square (a viewing platform). My preferred method would be get an accurate topograhic site in Revit, build the boardwalk, and then place surrounding vegetation so I can get some renders.

EDIT: I've attached "Screenshot 2" which shows I found I was able to create terrain in Revit by selecting a layer of the CAD file. However that layer is suspended above, and my placeholder floor is underneath. Now I just need to get the floor (representing the boardwalk) to go along the terrain.

View 1 Replies View Related

AutoCAD 2013 :: Creating Layouts From 3D Model

Jul 10, 2012

I created a 3d model, and is now trying to put the views on a layout. There seems to be something that causes the view to overlap itself. I have attached a screenshot of the model & layout respectively. On the layout the color members are the ones not supposed to be there. I have printed the layout, and the result is the same as the screenshot.

View 6 Replies View Related

AutoCad 3D :: Creating 3D Model From X / Y / Z Survey Data

Sep 6, 2012

I am a land surveyor using AutoCAD 2012. Just new to 2012 version, previously used 2005 version.

My question is:

Is it possible to (and how do I) create a 3D model of a ground surface from field survey data which has been collected. The data i have is currently in Leica GSI format, and has x, y and z coordinates. I can easily transfer this into a .csv file i necessary.

View 2 Replies View Related

AutoCad 3D :: Creating Street Surface Model?

May 25, 2012

I am trying to create a model of a city street surface using Autocad 2013. I think that perhaps the "network" surface command might work. Although the surface of a street looks simple, it is quite complex because of the need to drain the street of water. The corners are particularly difficult because the surface needs to be a continuous smooth curve while at the same time changing the direction of the surface slant.

I have attached a jpg of a model I created in Maya. I can export this to Autocad, but it is not particularly accurate and I need to create the model in Autocad at my job where they do not use Maya.

View 2 Replies View Related

AutoCad 3D :: Creating Exploded View Of A Model

Nov 23, 2012

I have made a 3d model of my balcony by simply extruding the steel profiles I used in my sections. I then used the union command to join them all together.

I now think and exploded isometric may be the better way to present the drawing but as I have now made the frame all one element what is the best way to seperate it?

the corners I think will be easy I just create a planar at 45 degrees and use that to split the corners but is there an easy way to seperate the mid PFC and angle?

View 8 Replies View Related

AutoCAD 2010 :: Viewbase And Ordinate Dimensioning

Jul 15, 2011

I created a drawing using the new VIEW BASE system.  I am trying to dimension the views using ordinate dimensions.   How do you set the UCS 0,0 to a corner of the part?  

View 5 Replies View Related

AutoCad 3D :: How To Control VIEWBASE Style And Save It

Jul 7, 2013

anytime i create a viewbase i need to define the scale , visibility, hidden lines , orientation etc...

is there a way to save a style ? most of my details in 3d repeat the same settings i use autocad 2014

View 9 Replies View Related

AutoCAD Inventor :: Creating A New Part Out Of Two Different Ones

May 14, 2012

I have to design a new part based on joining two of an already made ones. I thought it would be as easy as a "union" command in AutoCAD... but couldn't find anything that resembles that, and I really need them to be a joint part, since I will be printing them in a 3D printing machine. how I can do that in Autodesk inventor?

View 4 Replies View Related

AutoCAD Inventor :: How To Find Dimension In Part Model From Dim (d#) In Parameters Dialog

Jun 10, 2013

Is it possible to search & find where a dimension listed in the parameters dialog occurs in a part model ( in which sketch for example)?

Inventor Suite 2013 Ultimate

View 1 Replies View Related

AutoCAD Inventor :: Content Center Part With Decal Attached To Model

Oct 15, 2013

I'm trying to create a content center part with a decal attached to the model. The problem I am facing it that the decal is not adjusting in size when the ipt is placed from the content center. The decal does adjust in the original ipt.

View 2 Replies View Related

AutoCAD Inventor :: Creating Parts Manual For Model

Nov 13, 2013

Was wondering what program people use to create parts manuals for the Inventor models.

View 9 Replies View Related

AutoCAD 2013 :: VIEWBASE And Sending Profiles For Production?

Apr 17, 2013

I recently started using the _VIEWBASE command for creating drawing layouts. It's the first time in 15 years that Autodesk has *seriously* addressed creating drawing layouts from solid models, which is pretty cool so far.

Anyway.. what about generating profiles for production? For example I have an assembly of 100 items. I need to have most of them laser cut and need to send that dxf profile to the laser table. I tried _boundary, _copyface but that does not work with a 'drawing view' object. It also can not be exploded. The only thing that seems possible is tracing the object with a polyline (but that sucks).

I'm trying to avoid using viewports because that means every item needs it's own layer. I'm also trying to avoid littering model space with SOLPROF or FLATSHOT profiles.

View 8 Replies View Related

AutoCAD 2013 :: VIEWBASE Section Respecting Layers?

Nov 6, 2013

Is there any way to get the VIEWBASE command to respect the layer settings when creating section views?

It keep clarity, our plot styles are already setup, and IMO, more logical.

View 3 Replies View Related

AutoCAD Civil 3D :: Adding VIEWBASE Command To 2013?

Dec 3, 2012

To my frustration the VIEWBASE command and other AutoCAD 2013 cool new tools for creating views aren't included in Civil 3D 2013. When you enter command you get error "AcModelDoc.arx is missing"

So I've installed AutoCAD 2013 trial and took

- "ModelDoc.cuix" & "ModelDoc.mnr" from "C:UsersXXXAppDataRoamingAutodeskAutoCAD 2013 - EnglishenuSupport"

- AcModelDoc.arx from "C:Program FilesAutodeskAutoCAD 2013 - English"

Then I put the files to similar directories of my Civil 3D 2013 installation. The Layout menu got updated itself and now I can see all new buttons and commands on the Ribbon. However none of new commands work! No error appeares in command line but message "command not found".

Is there any way I can get it working? Or I should ask Autodesk to gift me a free copy of AutoCAD 2013 now?

P.S. I know they've even poinet that out in readme file [URL]. But who reads it before it's too late?..

View 3 Replies View Related

AutoCAD Inventor :: Creating Nest For Part

Mar 19, 2013

I have some parts that I need to make a nest for. I get the part from a customer and it's not in the most usable shape. It's just a bunch of surfaces. I can't change anything from it. I create a square block and place both the block and the part into an assembly. In the assembly I place the part in the block how I would like it to go. From there I create my whole mechanism around these nested parts. What I need to do is cut the shape of the part into the block so that I can bring the block into a CNC program and mill it.

View 9 Replies View Related

AutoCAD Inventor :: Creating Part In Top Down Assembly

Jun 19, 2012

I am facing problem in creating part in top down assly.

Find attachment.

I first part as pipe having dim 300 mm.In assly I select create option and made sketch having diameter 100 circle . I have extrude this circle up to the wall of 1 st component . I select to option but surface of 1 st component not getting selected. If I select 1 st part rectangular shape, that case 2 part extrude using same concept. (# ref 2 attachment)

View 8 Replies View Related







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