AutoCAD Inventor :: Can't Get Face To Loft Properly To Sketch
Jul 18, 2012
I am having to model a spiral slide in sections, and the top piece has this weird angled lip where the opening distorts. Im simply trying to take the face of the extruded part (in three sections) and loft it to the sketch on a different plane. And use the sketched curve as the centerline.
View 5 Replies
ADVERTISEMENT
Nov 6, 2011
I have a cylinder on top of a curved surface; I want to make the cylinder land adaptively to the surface, so I projected the circular face of the cylinder in the surface, which ended up being a 3D sketch. I tried to loft a solid between both curves, but it always gives me errors. Some examples are:The attempted operation did not produce a meaningful result. Try with different inputs.Multiple disjoint loops found in a profile section.
I have had success when trying to do the same thing with curved surfaces in two dimensions only (e.g. extruding a 2D curve), but I think the error is produced since the curved face I am trying to use belongs to an elipsiod.
View 9 Replies
View Related
Nov 22, 2013
I have created a loft from 4 different sketches. Now I want to make a drawing with the front, side view and the dimensions of the 4 profile sketches from the loft. But I can’t find a way to put the sketches from the part on my paper. It works with copy-paste ;^) but this is not the way I want it (it’ll not change when I change the profiles in the part).
View 6 Replies
View Related
Jul 19, 2013
how to loft from 2d sketch to circular surface.
I have attached the model in this model I tried to loft Sketch 6 to Sketch 19.
View 2 Replies
View Related
Jun 20, 2013
Im trying to create a shape like the attached image using sheet metal loft from one sketch to the second sketch. No problem doing that but i want to extend the neck on the small end 1 inch like the attached image.
Currently the product is produced using 4 panels brazed together. I want to create the product with 2 bent panels 90 degrees that are split apart from the loft.
Not sure if this even possible in the real world sheet metal house to develop the flat pattern.
View 4 Replies
View Related
Oct 22, 2012
I can add sketch on a part's workplane (xy, xz, yz) by using sketchs.add.is there anyway i can select a face of part and create a new sketch?
View 6 Replies
View Related
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
Jul 25, 2008
I am trying to create a sketch on a face for an extrusion. The sketch has a text box. I am having trouble excluding the text in a sketch otherwise all the closed geometries of the text get extruded.
I created an objectCollection and excluded the TextBox objects. Still not working.
View 6 Replies
View Related
Nov 12, 2013
I have created a SketchLine entity and trying to add aligned dimension by calling DimensionConstraints::AddTwoPointDistance(). It adds the dimension with inside arrowhead (see attached CurrentWorking.jpg), however, it would be nice if the dimension is added with outside arrowhead (see attached Expected.jpg).
if there is any API to toggle the dimension arrowhead accordingly.
View 2 Replies
View Related
Jan 8, 2013
I'm making a part and am adding features to it and using my existing sketch dimensions as my guide. The problem is that when there are sketch dimensions on the face of the part, they are difficult to read. I'm forever dragging these dims to the side in order to read them, it's just a bit annoying. I was wonering if there was a setting that made them show up as well as they do when the aren't sitting on the face of my parts. I've attached a .jpg of what I'm talking about. notice the dimension on the left side and the bottom.
View 2 Replies
View Related
Jan 24, 2012
what im trying to do is select a face in an assembly and create a sketch on it in the part level
this is just one step in the program im trying to make the overall program will create a tube frame and the tubes will be driven from a base solid
Sub test1()
Dim asmDoc As AssemblyDocument
Set asmDoc = ThisApplication.ActiveDocument
Dim asmDef As AssemblyComponentDefinition
Set asmDef = asmDoc.ComponentDefinition
[code]......
View 1 Replies
View Related
Oct 15, 2012
There is any option to merge bottom face of pad eye and pipe curved face... Something like
1. Extrude face to a surface or
2. like notch option available in frame generator ?
N:B - pad eye is made by extrusion and pipe made by frame generator.
View 2 Replies
View Related
Aug 22, 2012
All I need to do is merge a circular face to a flat face, so both faces become one continuous face. Is this possible at all?
I have a attached a screenshot to show what I mean. Face 1 needs to be merged with face 2. This is so if I constrain anything to that face it will constrain to the entire face and not either the circular face OR the flat face.
View 3 Replies
View Related
Sep 21, 2011
I've created a shared sketch and have used it with various features. Sometime those features are suppressed. The model works fine but the shared sketch generates a sketch doctor error because the feature that created it has been suppressed. Is there anyway to make the sketch suppressed so it doesn't trigger a sketch doctor error? Inventor 2013
View 2 Replies
View Related
Sep 20, 2012
How do I duplicate the 2D line work from a part level sketch into a drawing level (overlay) sketch?
I started a simple 2D piping system diagram sketch by opening a new part file and using a sketch to stick draw the system schematic including some annotations. Then I opened a new drawing file and made a base view of the part file to bring a view of the original sketch into the drawing.
I realize now that it would have been much easier to have created the schematic directly in a 2D sketch at the drawing level, which would have made editing the annotations much easier at the drawing level, and there is really no need for the part file to exist. I have no intention of creating a 3D model or "real" part in the .ipt file, was just using it as a jumping off point to sketch.
I was thinking that I could correct my error in judgment by just copying the sketch and pasting it into a new sketch on the drawing, but it doesn't want to work that way. I have tried copying both the whole sketch at the browser level, and the entire sketch contents (all of the lines and annotations) from the opened part sketch, but when I attempt to paste either of those into the drawing, paste does not seem to be an option. I'd rather not have to draw the whole thing again, as in typical fashion, my once simple sketch has grown in proportion and complexity from its simple beginning.
View 4 Replies
View Related
Dec 3, 2013
I was trying to query some sketch points data from a profile Path using code as below. However the program stopped without telling the reason.
Code below:
i = 0;
foreach (ProfileEntity oSourceProfileEntity in oProfilePath) { switch (oProfilePath[i].SketchEntity.Type) { case ObjectTypeEnum.kSketchArcObject: { SketchArc srcSkArc = default(SketchArc); srcSkArc = (SketchArc) oSourceProfileEntity.SketchEntity; // error points[i] = srcSkArc.StartSketchPoint.Geometry; break; } default: { SketchLine srcSkLine = default(SketchLine); srcSkLine =(SketchLine) oProfilePath[i].SketchEntity; // error points[i] = srcSkLine.StartSketchPoint.Geometry; break; } } i++; }
View 2 Replies
View Related
Aug 1, 2011
First we imported an ".igs" file to inventor, which produced "wires". Then by promoting the wires it produced a 3-d sketch.
The model is in one plane and 2-D, and we are trying to use Ansys 2-D analysis, but in-order to do so it needs to be in a 2-D sketch.
The model is too large to be redrawn on a 2-D plane, how to convert it to a 2-D sketch
View 9 Replies
View Related
Dec 14, 2012
want to change sketch 2013 into the sketch of 2010
View 1 Replies
View Related
May 30, 2013
When I edit certain sketched some other sketches disappear. see attached.
This is causing modelling to slow down as I can not project lines from the sketch that has disappeared.
View 8 Replies
View Related
Aug 22, 2012
After I create a adaptive part from projected sketch. How to modify the sketch? Please see the part attached.
View 6 Replies
View Related
Mar 4, 2012
what is the difference between a sketch and a planar sketch?
View 2 Replies
View Related
Feb 27, 2012
I need to shell out a Loft in the attached IV 2012 part file.The Loft i tried also as a new solid but the shell also cuts into the cylinder ( revolution 1 ) . I only want the 2 sides and bottom of the Loft to be Shelled, not the cylinder. What do i need to change to get the shell to work?
View 4 Replies
View Related
Aug 16, 2012
I'm having trouble with constaints, I'd like to constrain my sketch to a point in another sketch on a different plane. Is this posible in Inventor? If so how? If Inventor works differently how would you get a points in one sketch to be linked to points another?
View 2 Replies
View Related
Nov 7, 2009
I'm loft retarded. What I did here was loft to a tangent work plane, then did a sketch on the top surface and extruded the shape that I want. There has to be a better & easier way.
View 9 Replies
View Related
Jul 24, 2012
Okay I've been building random things to teach myself how to use Inventor and right now I'm stuck on a rim I'm creating. My question is.. is there a way to copy and paste a lofted item since there are three parts to it (2 planes and 1 guide) because I need 4 more spokes and if I copy the loft it copies all three parts seperately. Then when I paste and orientate the small end of the loft to the plane I want it tells me "Unsatisfied Geometric Inputs".
View 4 Replies
View Related
Aug 29, 2011
I am having trouble trying to get the Loft-1 to run the same shape as Revolution-2 .Picture 1-1 shows how Loft-1 is slightly off centre to Revolution-2 at the top .could i model the Loft-1 and Revolution-2 using different tools in one command making it a smooth shape. Another problem i have is how do i make Revolution-2 at the end terminate into Revolution-1 smoothly.I tried using Loft but it kept getting fail message.Picture 1-2 shows where to terminate the end into the Revolution-1 body.
Inventor 2012
View 9 Replies
View Related
Aug 30, 2013
this message appear with "loft" between blade sections the attempted loft operation resulted in self intersecting surfaces.Try with different inputs
View 9 Replies
View Related
Jan 24, 2013
I was wondering if it is possible to make a surface loft go from 1 square section to 2 round sections.
So 1 ingoing section en 2 outgoing sections.
I've attached a simple drawing.
View 5 Replies
View Related
Oct 8, 2012
I am following the U-Tube exercise called "Emergency Light (Cabinet) volume 1". I am at time stamp 1 hour 26 minutes, exactly.
In the video they use a Loft command in order to cut a shape out of two sketches numbered 10 & 11. I have been copying exactly and am having difficulty at this stage of the model.
Is there any reason why I am managing to use the Loft command earlier perfectly but not at this point.
View 6 Replies
View Related
Jul 5, 2013
Using the image below, I want to removed the yellow extrusion up to the red circular edge, I assumed split tool would do this.
And I don't require this but i would like to show the splines on the ends to "feather" out to the round like the actual axle does. (this is just for aesthics) I have the extrusion done, But I can't figure out feature is requied to do this, loft?
View 7 Replies
View Related
Apr 16, 2012
I have a part that I'm trying to loft using 3d sketches for the rails will this work? Everything is fine till I try to add the rails, As you can see the loft works with out the rails.
Windows 7 x64
IV 2012
View 4 Replies
View Related