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! > MetalWorking Machines > Tormach PCNC


Tormach PCNC Discuss Tormach PCNC machines here.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 08-15-2007, 09:48 AM
 
Join Date: Dec 2006
Location: USA
Posts: 23
98vert is on a distinguished road
Need help with cutting accuracy!

So up until now I've been mostly tinkering with the cuts I’ve made. Not really paying too much attention to the size of the cuts. Mostly just getting used to programming and running this machine. Well, I’ve gotten to the point where I’m pretty comfortable with programming and the machine. I’m also at the point where I have to make some pretty exact hole sizes (within .0015” or so) for some parts that need to be press fit. I’m using Mastercam. Attached is a pic of the first prototype I made.

So here’s the problem: I went to create a .786” dia by .5” deep hole in 6061 aluminum. I was doing this by ramp machining it. 3% per pass, at a feedrate of 12, 4100 rpm, climbmilling. The plan was to rough it out using a 3/8” 3 flute flat endmill for aluminum cutting and finish with the boring head. When I checked the dia after the rough cut, it was .810”. Way oversize. I checked the program over and over, recreated it and even tried different sizes. Each time the hole is being cut from .015-.035” oversize. The sizes were never this far off, otherwise the other components in the assembly I was making would not have fit.

I checked the runout on the spindle, the tool holder (TTS collet), and the end mill shank, and nothing more than .001” from what I could see. Certainly not something that would throw it that far off. I also did a really slow manual plunge cut of 2 brand new 3/8 center cutting endmills, one rougher and a finish endmill. Just to see if maybe there was something in the program that was screwed up. Tried 5 cuts and the dia ranged from .383 - .410”. I spent about 6 hours yesterday chasing this problem and have no idea what to check next or what to do. I’m dead in the water until I could figure this out. Why is the accuracy so far off. One thing to mention, when I first got the machine the z axis would drift down an inch or 2 when I shut it off. It doesn’t do that now. I’ve only got a handful of hours of actual machining time on the machine so far. Any suggestions on what is causing this and how to fix it? Thanks for your help.

Rob in CT
Attached Thumbnails
Click image for larger version

Name:	rocker_in_head[1].jpg‎
Views:	192
Size:	113.7 KB
ID:	42133  
Attached Files
File Type: txt .786 HOLE.txt‎ (4.0 KB, 134 views)

Last edited by 98vert; 08-15-2007 at 11:23 AM.
Tweet this Post!Share on Facebook
Reply With Quote

  #2   Ban this user!
Old 08-15-2007, 10:24 PM
 
Join Date: Jun 2007
Location: Canada
Posts: 164
Freddy Bastard is on a distinguished road
Rob, Nices parts.
If you can put your Mastercam file too, I can take a loof at it.(I know Mastercam very well). As I looked at your code, I'd see that your code is linear. You should use the filter option in Mastercam to get 3 axis arcs. I can't understand how you can get .386"-.410" passes with a 3/8 end mill. Did you measured your end mill diameter? Does your .810” hole is perfectly round?
Tweet this Post!Share on Facebook
Reply With Quote

  #3   Ban this user!
Old 08-15-2007, 11:45 PM
 
Join Date: Jun 2006
Location: USA
Posts: 915
MichaelHenry is on a distinguished road
Would it make sense to try the same sort of cutting using one of the Mach wizards as a test? If that comes out to size, you can eliminate the mill as the source of error and focus on the CAM side.

Mike
Tweet this Post!Share on Facebook
Reply With Quote

  #4   Ban this user!
Old 08-17-2007, 08:56 AM
 
Join Date: Apr 2004
Location: Forest Lake, MN
Posts: 22
rsmachine is on a distinguished road
Hi Rob,

I just looked at your program and I believe I have found at least part of your problem:

The numbers don't add up correctly, the last ramp in your program ends at:

X-.2035Y-.0286 Z-.1

then the next line is

G3X.2035Y-.0286R.2055

The R value needs to be the same as the movement in this case, you have a .004 total difference of diameter between the R value and the actual movement you are trying to achieve. What is happening is you are getting a larger radius in a shorter distance, so you are actually creating an out of round condition. You could try this instead:

X-.2035Y-.0286Z-.1
G3I.2055

This will give you a complete circle with a radius point in the X plus direction.

Sean
Tweet this Post!Share on Facebook
Reply With Quote

  #5   Ban this user!
Old 08-17-2007, 01:38 PM
zephyr9900's Avatar  
Join Date: Feb 2006
Location: USA
Posts: 926
zephyr9900 is on a distinguished road
CutViewer shows the supplied gcode to cut correctly. The toolpath makes a 1.5 turn spiral down, then a half turn at full depth, then a small arc to put the cutter on the Y axis, then a final half turn at full depth to produce a flat bottom.

Also (2 * .2055 radius) + .375 cutter diameter = .786 hole diameter so mathematically it jives.

I know the PCNC software (customized Mach) to accurately render gcode (I am using PCNC3,) so the out-of-round problem must be mechanical.

Best regards,

Randy
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 08-17-2007, 02:10 PM
zephyr9900's Avatar  
Join Date: Feb 2006
Location: USA
Posts: 926
zephyr9900 is on a distinguished road
Originally Posted by 98vert View Post
One thing to mention, when I first got the machine the z axis would drift down an inch or 2 when I shut it off.
Rob, my machine did that for a while, it seems in cooler weather, and I adjusted the Z axis gib a couple of times. But the machining itself has always been fine, good surface finish, etc. so I just got to putting a length of 2x2 under the spindle nose when I powered down the machine, but it hasn't drifted down for a couple months now. My Tormach is in the garage ("California basement") which can get pretty hot (but it helped a lot when I installed an insulation kit on the sheetmetal garage door...) so I'll see if the drifting down returns with cooler weather.

But I don't expect the drifting down alone to be a cause of your problem.

Nice looking piece, Rob. It looks like all the sides are contoured. How did you hold it while machining? That's my part of the learning curve now--how to hold more contoured pieces while I machine them...

Best regards,

Randy
Tweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 08-17-2007, 03:14 PM
 
Join Date: Apr 2004
Location: Forest Lake, MN
Posts: 22
rsmachine is on a distinguished road
Originally Posted by ProtoTrains View Post
CutViewer shows the supplied gcode to cut correctly. The toolpath makes a 1.5 turn spiral down, then a half turn at full depth, then a small arc to put the cutter on the Y axis, then a final half turn at full depth to produce a flat bottom.

Also (2 * .2055 radius) + .375 cutter diameter = .786 hole diameter so mathematically it jives.

I know the PCNC software (customized Mach) to accurately render gcode (I am using PCNC3,) so the out-of-round problem must be mechanical.

Best regards,

Randy

Hey Randy,

I don't mean to be rude but the finish position of X-.2035 plus the X.2035 from the nex line equals .407 and .407+.375=.782 not .786 so it can't be correct with the R.2055. To be correct either both of the X numbers need to be .2055 or the R value needs to be .2035.

Sean
Tweet this Post!Share on Facebook
Reply With Quote

  #8   Ban this user!
Old 08-17-2007, 03:34 PM
 
Join Date: Apr 2004
Location: Forest Lake, MN
Posts: 22
rsmachine is on a distinguished road
Rob,

Try these numbers, I have posted out a program using Sprutcam and am attaching it to this post.

Sean
Attached Files
File Type: txt Test.txt‎ (1.4 KB, 97 views)
Tweet this Post!Share on Facebook
Reply With Quote

  #9   Ban this user!
Old 08-19-2007, 03:59 AM
zephyr9900's Avatar  
Join Date: Feb 2006
Location: USA
Posts: 926
zephyr9900 is on a distinguished road
Originally Posted by rsmachine View Post
I don't mean to be rude but the finish position of X-.2035 plus the X.2035 from the nex line equals .407 and .407+.375=.782 not .786
Sean, you're not being rude, just a little inaccurate in your calculation. Earlier you pointed out

Originally Posted by rsmachine View Post
the last ramp in your program ends at:

X-.2035Y-.0286 Z-.1

then the next line is

G3X.2035Y-.0286R.2055
The spiral ramp ends a little above the Y axis on the negative X side (the Y value is actually positive in the gcode), but at the correct radius. Pythagoras will clarify sqrt(-.2035^2 + .0286^2) = .2055 Then the first G3 makes a half circle to just below the Y axis on the positive X side, but again at the correct radius, then the second G3 makes a little arc to bring the toolpath to the positive Y axis, then the last G3 makes a not-quite-half circle back to just above the negative Y axis. But all are at the correct .2055 radius from the circle center.

The original gcode as supplied is OK. Not exactly how I'd have done it, but OK mathematically.

Best regards,

Randy

Last edited by zephyr9900; 08-19-2007 at 04:26 AM.
Tweet this Post!Share on Facebook
Reply With Quote

  #10   Ban this user!
Old 08-19-2007, 10:15 AM
 
Join Date: Apr 2004
Location: Forest Lake, MN
Posts: 22
rsmachine is on a distinguished road
Yes Randy I was incorrect and I apologize. I did miss the Y+ versus the Y-, I now digress.
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 08-19-2007, 02:12 PM
zephyr9900's Avatar  
Join Date: Feb 2006
Location: USA
Posts: 926
zephyr9900 is on a distinguished road
Not a problem, Sean. I actually took the lazy way myself and viewed the toolpath in CutViewer Mill (which does recognize the final hole to be round and will give the diameter) and saw that it looked OK, then I went back and analyzed it. CutViewer is a great tool for debugging problems when I hand-write gcode too.

Best regards,

Randy
Tweet 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 Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VMC Accuracy jimgarner Haas Mills 3 03-04-2007 05:05 PM
K2 CNC need help with XYZ accuracy ChristopherWood Commercial CNC Wood Routers 14 12-03-2005 11:20 PM
What accuracy do I need? energyforce CNC Plasma and Waterjet Machines 4 12-02-2005 01:51 PM
accuracy? sixpence DIY-CNC Router Table Machines 41 08-16-2005 11:01 PM
Accuracy determination & accuracy improvement rweatherly DIY-CNC Router Table Machines 5 08-11-2005 09:37 AM




All times are GMT -5. The time now is 08:12 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