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! > Machine Controllers Software and Solutions > G-Code Programing


G-Code Programing Discuss G-code programing and problems here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 03-29-2007, 06:50 PM
 
Join Date: Sep 2004
Location: Australia
Posts: 196
Darc is on a distinguished road
Talking How to correctly chamfer a hole?

I'm attempting to chamfer a hole in a cylindrical shaft, obviously very easy to do, that only reason I'm having a problem is that I'm trying to chamfer the correct distance all the way around the hole, rather than using a 90° tool and plunging straight down.
You can see from the pic what I mean, the smaller hole is what you normally achieve (the chamfer changes size on the way around the hole) but I'm trying to achieve much the same as the larger hole.

I'm trying to achieve this without cad/cam, is there a way to calculate this using a spreadsheet?
Thanks.
Attached Thumbnails
Click image for larger version

Name:	Chamfer Example.jpg‎
Views:	239
Size:	25.4 KB
ID:	34474  
Reply With Quote

  #2  
Old 03-29-2007, 07:13 PM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,825
HuFlungDung is on a distinguished road

Why not make a real challenge out of it, and forbid using a calculator?
__________________
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)
Reply With Quote

  #3   Ban this user!
Old 03-29-2007, 07:46 PM
 
Join Date: Jul 2005
Location: Canada
Posts: 11,563
Geof will become famous soon enough

I suppose it is cheating Hu's limitation because you are using the machine as the calculator but you can write a macro. Which basically is not too much different to using CAM because you are approximating a compound curve with zillions of straight moves.

We make thousands of parts a year that need chamfers at each end on holes intersecting cylinders both on and off center so I did get one of my guys to write a macro. It worked but the problem was it took as long or longer to generate the chamfer than it did to bore a 7/8" hole through 2-1/4" stock in the first place.

So we stayed with the old fashioned way, a handheld deburring tool.
Reply With Quote

  #4  
Old 03-29-2007, 09:29 PM
HuFlungDung's Avatar
Moderator
 
Join Date: Mar 2003
Location: Canada
Posts: 4,825
HuFlungDung is on a distinguished road

I was just kind of kidding around, hoping maybe somebody like Geof would come in and give a pat solution

The more I think seriously about such a problem, the less chance I see of a simple formula working. The curve around the edge of the hole is a spline. And, unless the diameter of the through hole is always exactly the same ratio to the cylinder's diameter, each spline is going to be unique in shape, and not simply a scaled up version of one spline.

Also, given that the programmer may have differing requirements from time to time, on how many pieces the spline is interpolated into, this would also cause a major perturbation of the spreadsheet layout.
__________________
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)
Reply With Quote

  #5   Ban this user!
Old 03-30-2007, 08:17 AM
 
Join Date: Jul 2003
Location: New Zealand
Posts: 1,039
Kiwi is on a distinguished road

Here is a simple program that will produce the GCode for the edge profile of a hole in a curved face.
Using G41, not sure how even the chamfer width will be.
Attached Files
File Type: zip HoleChamfer.zip‎ (5.0 KB, 244 views)
Reply With Quote

Sponsored Links
  #6  
Old 03-30-2007, 01:14 PM
Gold Member
 
Join Date: Dec 2004
Location: Newtown, CT, USA
Age: 68
Posts: 517
lerman is on a distinguished road

The problem is not clearly stated. Unless you have a 4th axis, the angle of the chamfer with respect to the surface will change. That is probably not what you want.

Ken
__________________
Kenneth Lerman
55 Main Street
Newtown, CT 06470
Reply With Quote

  #7   Ban this user!
Old 03-30-2007, 02:37 PM
 
Join Date: Jul 2005
Location: Canada
Posts: 11,563
Geof will become famous soon enough

Originally Posted by lerman View Post
The problem is not clearly stated. Unless you have a 4th axis, the angle of the chamfer with respect to the surface will change. That is probably not what you want.

Ken
This is why our macro did it so slowly. We had it set up to chamfer across the intersecting surfaces on a plane bisecting the intersection angle. This seemed the only way to get a worthwhile chamfer which was as non-sharp as possible.
Reply With Quote

  #8   Ban this user!
Old 03-30-2007, 05:24 PM
 
Join Date: Jul 2003
Location: New Zealand
Posts: 1,039
Kiwi is on a distinguished road

This is not as simple as it first appears.
Would using a ball nose cutter along the hole profile with no compensation give a satisfactory chamfer?
Reply With Quote

  #9   Ban this user!
Old 03-31-2007, 04:34 AM
 
Join Date: Jul 2003
Location: New Zealand
Posts: 1,039
Kiwi is on a distinguished road

Modified the Hole Chamfer program.
This now cuts the chamfer with a constant face width using a pointed cutter.
The angle of the cut is half the cutter angle from the axis of the hole.
Hope this is of some use.
Attached Files
File Type: zip HoleChamfer2.zip‎ (6.0 KB, 217 views)
Reply With Quote

  #10   Ban this user!
Old 04-01-2007, 10:28 AM
gar gar is offline
 
Join Date: Mar 2005
Location: USA
Posts: 1,498
gar is on a distinguished road

070401-1001 EST USA

Kiwi:

I do not open .exe files and therefore I have no idea what you proposed.


Darc:

You need a 4 axis machine or use surfacing to obtain a uniformly wide chamfer as has been mentioned above.

If the constant width and angle to the cylinderical surface is not required, then the following equations will define the locus of the intersection of two cylinderical surfaces where their axises are intersecting and perpendicular.

The CNC machine x-axis is coincident with the axis of the cylinder in which the hole is bored. The CNC y-axis is perpendicular to the axis of the bored hole. The CNC z-axis is coincident with the bored hole axis.

"a" is the variable angle from the x-axis and I am making "a" the independent variable as I would assume you would probably program for small incremental changes in "a".

"R1" is the radius of the tube or rod coincident with the x-axis. Certain choices of R1 and R2 can produce a non-continuous physical edge. Obviously a hole larger than the rod.

"R2" is the radius of the hole.

x = R1 * cos a
y = R1 * sin a

y squared + z squared = R2 squared
z = sq-root ( R2 squared - ( R1 * sin a ) squared )

If processed as a MACRO this may slow the machine.

.
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 04-01-2007, 10:38 AM
gar gar is offline
 
Join Date: Mar 2005
Location: USA
Posts: 1,498
gar is on a distinguished road

070401-1035 EST USA

Note: if the hole is in a tube you may want to use the ID radius for "R2" to provide uniform mating of another tube into the hole.

I did not previously indicate but I would assume use of cutter comp.

.
Reply With Quote

  #12   Ban this user!
Old 04-01-2007, 10:45 AM
 
Join Date: Jul 2005
Location: Canada
Posts: 11,563
Geof will become famous soon enough

Originally Posted by gar View Post
x = R1 * cos a
y = R1 * sin a

y squared + z squared = R2 squared
z = sq-root ( R2 squared - ( R1 * sin a ) squared )

If processed as a MACRO this may slow the machine.

.
No kidding see Post #3.
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 Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
DFX is not imported correctly... ihkim GRZ Software- MeshCAM 11 01-07-2010 11:57 AM
Will Jog but not Move Correctly in G code dafowfidy Mach Software (ArtSoft software) 5 03-29-2007 10:27 PM
chamfer with a fade out. tnik Solidworks 5 02-07-2007 04:00 PM
Chamfer on surface Beaker Mastercam 5 11-15-2006 04:32 AM
Are tachometers correctly referred to as encoders? Smertrios Stepper Motors and Drives 8 10-05-2006 06:13 PM




All times are GMT -5. The time now is 08:20 PM.





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 354 355 356 357 358 359 360 361