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 > Benchtop Machines


Benchtop Machines Discuss all mini mills sherline, taig, square column, round column and CNC mill conversions here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 01-20-2005, 08:17 PM
Gold Member
 
Join Date: Jun 2003
Location: United States
Age: 26
Posts: 1,387
JFettig is on a distinguished road
4th axis on the mini

I just got my rotary table from LMS and started making parts to convert it.
what I would really like to do is put the stepper behind the table and enclose almost all of it with sheet metal, but for now Ill just stick the stepper strait off the end of the screw. So far I have made the coupler.... and kinda designed the rest.

I just finally figured out to calculate the degrees per step, and it occured to me. How are the feeds set? if I was to cut with X and A axis would I use a really slow feed on the A axis or does it calculate that? it says that the A axis will turn at 1800 degrees per minute, how would I use inches per minute?

I dont have the camera handy otherwize I would post some pics. I will have to get some up soon.

Jon
Reply With Quote

  #2   Ban this user!
Old 01-20-2005, 09:15 PM
 
Join Date: Jun 2004
Posts: 43
3t3d is on a distinguished road

Basically the control doesn't know what the feedrate is for a rotary since it depends on the diameter or radius of where the cutter is in relationship to the axis of the rotary.
So, how do controls cope with this you ask?
They use inverse time feedrate. Instead of specifying the feedrate you specify the inverse of the time to complete the command block.
Why use inverse time? You ask now....
Well that way, the smaller number is a slower feedrate, and the larger number is a faster feedrate. The post processor, or the programmer has to calculate the appropriate feedrate, knowing how far from the axis cernterline the tool is.

So, the short answer is, the programmer has to do the calculations.
And, all the controls that I have owned, and used rotary tables, will use regular feedrate. I don't know what the relationship was from feedrate in IPM to degrees per minute. But most jobs, I used the TLAR (*) method of setting the feedrate for the motion with the rotary table.

Most operations I have done with the rotary table though, was postioning the work, to machine multiple faces. Only a couple of jobs actually used rotary and linear motion combined.

Pete
Reply With Quote

  #3  
Old 01-21-2005, 03:23 PM
Gold Member
 
Join Date: Jun 2003
Location: United States
Age: 26
Posts: 1,387
JFettig is on a distinguished road

Thanks 3t3d, that helped some. I supose the next step is to get this thing finished and mount it up and play with it. I am assuming I still zero my tools at the top of the stock right? Do I do something to tell it how far it is from the center line?

Jon
Reply With Quote

  #4   Ban this user!
Old 01-21-2005, 06:02 PM
 
Join Date: Jun 2004
Posts: 43
3t3d is on a distinguished road

I just ran a job on the 4'th axis.
Every machinist will have a different way to touch off a part. Some will go on a holy war to convince you that their way is the best. It really depends on the part, and the starting stock etc. etc...

Some parts start with stock that is already machined on the bottom. In that case, I touch off the bottom of the ( vise, parrallels, fixture etc.) and then add in distance to reach the top of the part.
Some parts start out with oversize stock, and no reference to the bottom.. yet. For those, I touch off the top, and program the top of thepart below zero to account for the top being cut off. Or, I touch off the vise, parrallels, or whatever..

Last week I had a part in a fixture on the rotary axis.
This is setting it from A, Y, X. and Z.
I jogged the axis until a test indicator read zero front to back. Then I set the offset for the rotary to zero.
Next I touched off the front edge of the fixture. And noted the Y axis. I jogged the rotary to 180 degrees. And touched off the same point on the fixture, but now it is on the backside. The difference of thos two readings was the center of the fixture, on axis of the rotary.
Next I touched off an edge on the fixture to set the X axis.
Next I touched off a surface at 0 degreee for the rotary, jogged the rotary to 180 degrees, and the surface I touched off before is now upside down. So I clamped a parrallel to it, and touched off of it again. The difference is the Z height for the center of the rotary axis.
I could then set my Z height above that point to match what I needed.

So, it really depends on what your part looks like, and how you planned the job.
There are as many ways to do it as their are people to do it.

hope this gets some ideas going.

Pete
Reply With Quote

  #5  
Old 01-21-2005, 09:05 PM
Gold Member
 
Join Date: Jun 2003
Location: United States
Age: 26
Posts: 1,387
JFettig is on a distinguished road

Thanks, that definately got e somewhere.
Lets say I got 1/2" round stock sticking out of the chuck that will be on my rotary table and I want to cut a spiral.(just generic)
I set y zero centered in the stock and z zero on the top right?
for reference, I will say its a 1/8" ball mill 1/16" deep,
So the code would go something like this:

G0 X-.125 Z.1875 A0
G1 X0 F8
G1 X1 A360 F? (lets say I want to cut at 8 ipm, would I put 8 in there?)
then out

to make a full revolution of the table, I simply do A360 right?
lets say I want to do 2 turns, do I have to change the code to this:


G0 X-.125 Z.1875 A0
G1 X0 F8
G1 X.5 A360 F?
G1 X1 A? what do I put in here to tell it to keep spinning? do I have to use incremental coordinates instead of absolute?
then out

Thanks for the help,
Jon
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 01-22-2005, 08:49 AM
 
Join Date: Jun 2004
Posts: 43
3t3d is on a distinguished road

Well, it all depends on your controller doesn't it?
I can write:

N300 G01 A720. X1.0

And get two revolutions of the table.
What that does is "wind up" the table (or the control as you see it)
On one of my machines this code:
N310 G12 A0
Will not move the rotary, but it will cancel out the "wind up"
Example 1:

N400 G00 A720.
N410 G00 A-10.

Example 2:

N400 G00 A720.
N406 G12 A0.
N410 G00 A60.

In example 1, the table will spin for two revolutions, then reverse for two revolutions, plus reverse ten more degrees.
IN example 2, the table will spin for two revolutions, then forword 60 more degrees.

Again the control determines what G codes YOU need to use. Probobly not G10, maybe yes. Check your documentation, or better yet, experiment.

Now, what does the feedrate do to your rotary axis speed?
(Shrugs) I don't know. Experiment, or look at your documentation. See of you have inverse time feedrates, or if you just have to make some calculations, and submit a feedrate that does what you want.
You'll figure it out. I can tinker with parameters inside my control, and trick it into all kinds of behaviour. For example telling a different gear ratio from the motor to the table, and again lie to it about the number of encoder pulses.
Basicllay get something that works, and will be intuitive <__LATER ON__>

Hope this gets you going some more.

Pete ..... (which is 3t3d sideways, sort of)
Reply With Quote

  #7   Ban this user!
Old 01-22-2005, 04:05 PM
 
Join Date: Jun 2004
Posts: 43
3t3d is on a distinguished road

One more thing to talk about with a 4'th axis setup...
I want to shown wrong here.. Someone speak up on this point.

Any CAM software that I looked at that supports 4'th axis work does not support moving 4 axes at once. They only support positioning, and and at most three axis of motion, until you get into some failry high end CAD/CAM packages, maybe over $6,000. In fact when I was trying to solve a problem several vendors told me I had to go to a 5 axis package to get simulatanous motion in 4 axis.

The actual example that I had is the equivalent of rotating a crankshaft, and cutting tapered threads on one of the crankpins while it is spinnning. That does require four axes of motion simulatneously.

Pete
Reply With Quote

  #8   Ban this user!
Old 01-23-2005, 10:02 AM
 
Join Date: Feb 2004
Location: hh
Posts: 813
Stevie is on a distinguished road

Ok to do the C axis rotation with my 4 axis setup
I simply told it to go 1440 dgr and a linear move at the same time; if you specify the feed in that line it will feed the linear at the feedtrate and calculate the feed of the C axis to match the length needed to mill

So my command was simple
G01 C1440 X25(mm) F50
The software calculates the feed for the C to make the cut end at 25mm after 4 rotations
This is for TurboCNC
Reply With Quote

  #9   Ban this user!
Old 01-23-2005, 10:50 AM
 
Join Date: Feb 2004
Location: hh
Posts: 813
Stevie is on a distinguished road

I just tried a quick one for you bud

This is a G01 C360 F1.5 (IMP selected)
Stop action photo; can't believe my camera caught the cutter at 3000+ rpm and it looks dead still; good job the chips are flying or you'd never believe me

Reply With Quote

  #10  
Old 01-23-2005, 01:01 PM
Gold Member
 
Join Date: Jun 2003
Location: United States
Age: 26
Posts: 1,387
JFettig is on a distinguished road

Thanks a ton. New cameras do a great job of catching stuff still. I have seen 8000rpm fans be caught still.

About how fast does that guy turn when you give it that command? close to the equivalent of 1.5ipm linear?

Thanks,
Jon
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 01-23-2005, 01:07 PM
 
Join Date: Feb 2004
Location: hh
Posts: 813
Stevie is on a distinguished road

Nope seems slower
But how to measure it I have no clue
Reply With Quote

  #12   Ban this user!
Old 01-23-2005, 05:19 PM
 
Join Date: Jun 2004
Posts: 43
3t3d is on a distinguished road

Originally Posted by Stevie
Ok to do the C axis rotation with my 4 axis setup
I simply told it to go 1440 dgr and a linear move at the same time; if you specify the feed in that line it will feed the linear at the feedtrate and calculate the feed of the C axis to match the length needed to mill

So my command was simple
G01 C1440 X25(mm) F50
The software calculates the feed for the C to make the cut end at 25mm after 4 rotations
This is for TurboCNC
Thanks, this helps illustrate what I trying to explain. If you are cutting on the rim of a 150mm disk, and the X distance is 3mm, then the feedrate will be a LOT faster than you want. The control will calculate how fast it needs to complete the X move, but cannot possibly know how far from the axis the cut is happeneing. Therefore, the X distance will be at a feedrate of 50, but the rim speed to get in 4 rotations completed will be MUCH faster than the X travel. It may try to travel 3mm in X, but it will have to travel 1885mm on the rim to complete 4 revolutions. So, the cutting speed will be about 628 times faster than you specified with:
G01 C1440 X3 F50

So, for any significant offset from the centerline, or any short move in X or Y, combined with longer moves in A (or C), either the programmer or the POST needs to calculate the correct feedrate. Except for the case where the cutter is very near the centerline, it can be quite different than the feedrate would indicate. In those cases, specifying the time to complete the cut makes more sense.
And using the inverse of the time makes a smaller number feed slower, and a larger number feed faster. If your control supports inverse time.
And the control cannot possibly know what the radius is where the cut is happening. So the programmer or the POST needs to calculate the needed speed.
Pete
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
4th Axis for Fadal 4020 Fudd Fadal 12 01-27-2009 05:43 PM
4th Axis Parallel Roughing whiteriver Visual Mill 2 06-16-2007 11:10 PM
4020 4th axis problems little bubba Fadal 3 06-13-2005 09:08 PM
4th Axis UKRobotics General Metal Working Machines 7 03-19-2005 09:25 AM
Reverse thinking on a 4th axis whiteriver Visual Mill 1 03-02-2004 11:38 PM




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