Jump to content

Technical Drawing Question


basty

Recommended Posts

When you make a slice through a tube you are left with an ellipse, the major axis is the width of the tube, and the minor is the height which you can take directly from the front view, (the bottom part of the outer edge would be flat).

 

Actually, it is the minor axis, not the major axis, of the resulting ellipse that is the width of the tube. The minor axis of the ellipse formed by cutting a tube in a direction that is not perpendicular or parallel to the tube's axis is the same for all cuts. The major ellipse axis gets larger as the cut becomes closer to being parallel to the tube's axis.

 

The OP's question is a bit ambiguous as there is nothing explicitly stated to identify the "left" view. I guess we are suppose to assume that the "3D View" is an isometric view that shows the front, left, and top views of the object. Moreover, the country of the OP is not specified so we don't know whether to assume a first or third angle projection!

Link to comment
Share on other sites

  • Replies 44
  • Created
  • Last Reply

Top Posters In This Topic

  • ReMark

    13

  • steven-g

    9

  • basty

    6

  • danellis

    3

Top Posters In This Topic

Posted Images

Actually, it is the minor axis, not the major axis, of the resulting ellipse that is the width of the tube. The minor axis of the ellipse formed by cutting a tube in a direction that is not perpendicular or parallel to the tube's axis is the same for all cuts. The major ellipse axis gets larger as the cut becomes closer to being parallel to the tube's axis.

Actually it is the major axis, below 45° the width of the tube is wider than the projected height of the cut making it the major axis at 45° both measurements are the same, and above 45° the width of the tube becomes the minor axis (the OP's drawing has a cut angle of 38°). The width of the tube does remain constant no matter how the ellipse is formed, but the major axis of an ellipse is the longest size and depends on the angle.

Link to comment
Share on other sites

I am interested to buy the "Advanced Level Technical Drawing by E. Jackson" book. Judging from the title, I assume this book offer and teach more on technical drawing than the books you mentioned above. But, before I spend my money on this book, does anyone here have already read this book? Is it worth? Just to make sure I don't waste my money on this book.

 

TBH, I'd take Remark's recommendation!

 

Actually it is the major axis, below 45° the width of the tube is wider than the projected height of the cut making it the major axis at 45° both measurements are the same, and above 45° the width of the tube becomes the minor axis (the OP's drawing has a cut angle of 38°). The width of the tube does remain constant no matter how the ellipse is formed, but the major axis of an ellipse is the longest size and depends on the angle.

 

Perhaps we can agree on x-axis and y-axis?!?

 

dJE

Link to comment
Share on other sites

I am interested to buy the "Advanced Level Technical Drawing by E. Jackson" book. Judging from the title, I assume this book offer and teach more on technical drawing than the books you mentioned above. But, before I spend my money on this book, does anyone here have already read this book? Is it worth? Just to make sure I don't waste my money on this book.

 

I am not familiar with Jackson's book.

 

Let's get back to the topic of this thread. What's up with the flat edge in the image contained within your first post?

Link to comment
Share on other sites

Perhaps we can agree on x-axis and y-axis?!?

 

Unfortunately not an ellipse has a major and a minor axis, and the major axis does not depend on orientation, it is the longest of the two, except when they are both the same size but then it is no longer an ellipse 8)

Link to comment
Share on other sites

Anybody willing to take on the challenge of drawing the front profile for a tube cut to give this side view (ReMark excluded, I know he can do it)

SquarePeg.jpg

TIP: it's not an ellipse

Link to comment
Share on other sites

Actually it is the major axis, below 45° the width of the tube is wider than the projected height of the cut making it the major axis at 45° both measurements are the same, and above 45° the width of the tube becomes the minor axis (the OP's drawing has a cut angle of 38°). The width of the tube does remain constant no matter how the ellipse is formed, but the major axis of an ellipse is the longest size and depends on the angle.

 

steven-g, I see now that you are talking about the projection of the cut and not the shape of the cut itself. I interpreted your original statement to be in reference to the elliptical shape of a cylinder cut at an angle. The elliptical shape of the actual cut will have a minor axis equal to the diameter of the cylinder. For a cut of 38° as you reference, the true shape of the cut will be an ellipse with a minor axis equal to the diameter of the cylinder and a major axis width of 1/(cos(38°) = 1.269*diameter. For a 45° cut, the ellipse shape would still have a minor axis width equal to the diameter and a major axis width of 1.414 (1/cos(45°)) Of course, the projected shape of the ellipse could be anything from an ellipse of the true shape to an ellipse that degenerates to a straight line (an edge view of the cut). In the latter case the minor axis of the projected ellipse is zero. As noted by several posters, the projected shape of the 45° cut would be a circle for the "left" view.

Link to comment
Share on other sites

What's wrong with post #7 REmark made ?

 

 

Supposed forum would be a multi CAD / BIM technical intercontinental horror senario

doomed to disagree more..

Link to comment
Share on other sites

When I was in civil, we drew pipe ends like so:

 

pipe_ends.jpg

 

Can you please teach me how to draw the pipe ends like above?

Edited by basty
Link to comment
Share on other sites

This routine can be used

 

 



(defun c:pileend (/ )
      
     (Setq pt1 (GetPoint "\nStart: right side -- "))
     (Setq pt2 (GetPoint pt1 "\nEnd: "))
     (Setq ang (angle pt1 pt2)) ; find angle between pt1 and pt2
     (Setq ang1 (angle pt2 pt1))
     (Setq ang2 (- ang1 0.380506377))
     (Setq ang3 (- ang 0.380506377))
     (Setq ang4 (+ ang 0.380506377))
     (Setq dia (distance pt1 pt2))
     (Setq rad (/ dia 2.0))
     (Setq xoffset (/ dia 10.0))
     (Setq yoffset (/ dia 4.0))
     (Setq pt3 (polar pt2
                      ang2
                      (sqrt (+ (expt xoffset 2) (expt yoffset 2)))
               )
     )
     (Setq pt4 (polar pt2 ang1 rad))
     (Setq pt5 (polar pt1
                      ang3
                      (sqrt (+ (expt xoffset 2) (expt yoffset 2)))
               )
     )
     (Setq pt6 (polar pt1
                      ang4
                      (sqrt (+ (expt xoffset 2) (expt yoffset 2)))
               )
     )
     (SetVar "osmode" 0)
     (Command "_.spline" pt2 pt3 pt4 pt5 pt1 pt6 pt4 "" "" "")

 (SetVar "osmode" os)
 (Command "undo" "e") ; ending undo
 (SetVar "cmdecho" 1)
 (Princ)
)


Link to comment
Share on other sites

Can you please teach me how to draw the pipe ends like above?

 

That could easily be done using the Ellipse, Trim and Hatch commands. Or you could get lazy and use a lisp routine.

Link to comment
Share on other sites

That could easily be done using the Ellipse, Trim and Hatch commands. Or you could get lazy and use a lisp routine.

 

I do it with a couple of arcs. Pretty lazy.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...