CNCzone.com-The Largest Machinist Community on the net!


Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > Mechanical Engineering > Mechanical Calculations/Engineering Design


Mechanical Calculations/Engineering Design Discuss general mechanical design and mechanical calculations.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 05-08-2006, 05:29 PM
 
Join Date: Oct 2005
Location: England
Posts: 39
pauluk is on a distinguished road
Involute splines, how do you draw them

Hi All
I have got a one off job that requires an involute spline cut on one end. I have a sample that i need to copy. my plan is to draw out the profile of the tooth, so i can m/c a cutter to produce the splines. the problem is i can't find the infomation to enable me to produce the drawing . Machinery's Handbook has a lot of info on splines, but not an idiots guide to drawing them out.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #2   Ban this user!
Old 05-09-2006, 11:49 AM
 
Join Date: Feb 2006
Location: USA
Posts: 22
Climatepro is on a distinguished road
An involute is the shape formed by a curve that is perpendicular to a line that at every point is tangent to the base circle. That's a pretty confusing thing, the easiest way to explain it is that it's the shape made if you do the following:

Wrap a string around a cylinder that has the diameter of the "base circle" (a circle which is roughly the root of the teeth). Now tie a knot in the string, and keeping the string taut, unwind it from the cylinder. The path taken by the knot is an involute. The involute shape is modified to contain a radius at the root of the tooth for strength, and it is chopped off at the tip (it would otherwise form a sharp point).

Is that enough to get your job done?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #3   Ban this user!
Old 05-09-2006, 08:43 PM
 
Join Date: Jul 2003
Location: New Zealand
Posts: 991
Kiwi is on a distinguished road
Paul
If you have CAD that can handle macros this may be of some use.
I wrote this for SW. You need to enter the Base Dia radius.

MACRO to GENERATE INVOLUTE PATH with SOLIDWORKS
===============================================
Sub main()
Set swApp = Application.SldWorks
Set Part = swApp.ActiveDoc
'----------
R = 71.6034 'ENTER BASE CIRCLE RADIUS
pi = 4 * Atn(1)
For Ang = 0 To 45 Step 2
X1 = Cos(Ang / 180 * pi) * R
Y1 = Sin(Ang / 180 * pi) * R
Opp = R * 2 * pi
Opp = Opp * (Ang / 360)
Hyp = Sqr(R ^ 2 + Opp ^ 2)
Ang2 = Atn(Opp / R)
Ang2 = Ang2 / pi * 180
Ang3 = Ang - Ang2
X2 = Hyp * Cos(Ang3 / 180 * pi)
X2 = Int(X2 * 10000 + 0.5) / 10000
Y2 = Hyp * Sin(Ang3 / 180 * pi)
Y2 = Int(Y2 * 10000 + 0.5) / 10000
XX = X2 / 1000
YY = Y2 / 1000
Part.CreateLine2 X, Y, 0, XX, YY, 0
X = XX
Y = YY
Next Ang
'----------
End Sub
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #4   Ban this user!
Old 05-10-2006, 04:59 PM
 
Join Date: Dec 2005
Location: USA
Posts: 3,319
NC Cams is on a distinguished road
I"m surprise that someone would even DRAW a spline anymore, even with CAD.

All the splines I"ve seen of late are merely psuedo splines that are called out on a "hatched" segment via the applicable ANSI standard note (flat root, side fit, involute, etc).

Once they are called out on the drawing, the spline cutter is/was responsible for meeting the form and tolerance call outs per the ANSI spec. We went thru the fiasco of having a designer "draw" the spline and it was a frigging tolerancing/dimensioning disaster. Consult/use the ANSI specs and type call outs and save yourself the nighmare.

You can order the ANSI standard handbook for splines and tolerances thereof from the Society of Automotive Engineers website. Worth the investment even for a 1 off job.

Last edited by NC Cams; 05-10-2006 at 05:00 PM. Reason: typo
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #5  
Old 05-10-2006, 05:38 PM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,823
HuFlungDung is on a distinguished road
Make yourself an inexpensive female casting off the original spline. It only needs to encompass one tooth and two tooth spaces on the male shaft spline. Auto body filler seems to make a good enough stable casting media. When it hardens, remove it and form grind a flycutter to fit the space between teeth in the casting.

AFAIK, there is likely no really good drawing data for an involute since the shape is generated by the hob, which itself has a much simpler shape. But most of us don't have the luxery of a hobbing machine, so we make do with form ground cutters. I just grind them offhand on the bench grinder.

Then flycut the new spline out on the mill using the cutter.

The method that ClimatePro outlined, while I've heard of it, it does not really have any control over the pressure angle of the spline drawn. I'm not sure what the relationship is between this "string-generated involute" and the pressure angle. Does anyone?
__________________
First you get good, then you get fast. Then grouchiness sets in.

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 05-10-2006, 05:58 PM
 
Join Date: Jul 2003
Location: New Zealand
Posts: 991
Kiwi is on a distinguished road
>I'm not sure what the relationship is between this "string-generated involute" and the pressure angle. Does anyone?

The "Pressure Angle" and the "Involute" are calculated from the Base Circle.
Attached Images
File Type: bmp GearGeometry.bmp‎ (255.2 KB, 1061 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 05-10-2006, 09:18 PM
 
Join Date: Feb 2006
Location: USA
Posts: 22
Climatepro is on a distinguished road
I hope you didn't take my explanation to mean that you somehow mark the path a knot in a string takes! I figured you would get the physical explanation and then draw the curve in your CAD package perhaps using a 3 point curve.

An constant point on a line that is always tangent to a circle (the base circle) as the line is being swept around the circle (as if unreeling a string), IS THE DEFINITION of an involute. There's probably a nice mathematical definiton out there? Standard gear cutters are approximations of this shape, and as long as there's reasonable gear lash the inaccuracy doesn't matter much, but pauluk makes it sound as if he's going to either grind a cutter with data or mill the teeth with data.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #8  
Old 05-10-2006, 10:43 PM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,823
HuFlungDung is on a distinguished road
Yes, I understood it was just a figurative method of drawing the involute , still, it seems as though one would obtain one single shape and that is it. Yet, gears with various pressure angles "look different", so is the curve for a 20 degree pressure angle face taken farther up the involute somehow, or is the center of the "unwrap focus" shifted somewhat relative to the pitch circle to achieve varying pressure angles?
__________________
First you get good, then you get fast. Then grouchiness sets in.

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #9   Ban this user!
Old 05-11-2006, 09:47 AM
 
Join Date: Apr 2003
Location: Collierville, TN USA
Posts: 67
DICKEYBIRD is on a distinguished road
Will this help? http://pergatory.mit.edu/2.007/Resou...-theory-bg.pdf

I ran across this in another forum...far more info than I can use right now but I saved it anyway. Filesize too big to post the .pdf directly.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #10  
Old 05-11-2006, 11:38 AM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,823
HuFlungDung is on a distinguished road
That is a nice article, Dickeybird, and it does show how and why the involute varies in form for different diameter gears.

But, it does not explain how to geometrically generate an involute of a particular pressure angle. From the example, all one would get from generating an "unwound involute", is one unique pressure angle and no others would be possible. I'm not sure if 14.5° is the "natural pressure angle" of a drawn involute (I doubt it) but the question is interesting to ponder and imperative to answer before any gear tooth can be drawn with splines or whatever.
__________________
First you get good, then you get fast. Then grouchiness sets in.

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 05-11-2006, 04:55 PM
 
Join Date: Oct 2005
Location: England
Posts: 39
pauluk is on a distinguished road
Hi Guys
Thanks for the info so far. Just to clarify things I have a splined shaft which i need to copy for a customer, I can't get hold of the female part to check the fit of the part i make, so my intention was to draw the spline out, tweek the drawing very slightly to make sure it fits, and then use the drawing to cnc a tool to produce the splined shaft.

Thanks for the macro Kiwi, but i don't have solid works

It looks like I am going to have to grind up a tool by hand and give it a go.

Paul
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

  #12   Ban this user!
Old 05-11-2006, 05:28 PM
 
Join Date: Feb 2006
Location: USA
Posts: 24
Bill Clark is on a distinguished road
Since an involute curve is ever changing it cant simply be drawn like an arc or something. An involute spline is the same as an involute gear with the same specifications i.e number of teeth,pressure angle, and pitch. Generally speaking a spline is only shallower then a gear. If you want to draw a gear and generate a tool path use a cad-cam program like Bob-Cad or Master-cam. Use the gear program and fill in the blanks using your sample for the major and minor diameter to get the depth. Better yet send it to me and I will hob it for you.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiTweet this Post!Share on Facebook
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On





All times are GMT -5. The time now is 01:09 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353