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 > Fanuc


Fanuc Discuss Fanuc controllers here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 11-25-2010, 05:15 PM
 
Join Date: Aug 2010
Location: canada
Posts: 58
jay_dizzle is on a distinguished road
long cycle restarts/tool changes???

i am currently running a program that envolves long cycle times and is rather rough on insert life. my question is: what would you guys suggest as the best way to modify my program so that i can reduce air cuts after tool breakage/restarts. my controller will not just let me start at any point in my program, it needs to pick up the work co-ordinates tool length, speeds, feeds ect ect. should i just place random tool changes with block skips? how do i get around this??? any help is good help!
Reply With Quote

  #2   Ban this user!
Old 11-25-2010, 07:14 PM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

What controller do you have?
Reply With Quote

  #3   Ban this user!
Old 11-26-2010, 11:29 AM
 
Join Date: Feb 2006
Location: india
Posts: 1,187
sinha_nsit is on a distinguished road

If nothing works, copy your program to a new one. Leaving the initial few blocks, delete the already executed blocks, manually place the tool at the appropriate place, and run the program from beginning.
Reply With Quote

  #4   Ban this user!
Old 11-26-2010, 03:05 PM
 
Join Date: Nov 2006
Location: USA Texas
Posts: 310
John_B is on a distinguished road

What machine controller are you working with? There may be a way one of the many people on this forum know of that will allow you to restart it mid-paragraph...

Rgds,
John
Reply With Quote

  #5   Ban this user!
Old 11-27-2010, 05:22 AM
 
Join Date: Sep 2010
Location: Australia
Posts: 733
angelw is on a distinguished road

Originally Posted by jay_dizzle View Post
i am currently running a program that envolves long cycle times and is rather rough on insert life. my question is: what would you guys suggest as the best way to modify my program so that i can reduce air cuts after tool breakage/restarts. my controller will not just let me start at any point in my program, it needs to pick up the work co-ordinates tool length, speeds, feeds ect ect. should i just place random tool changes with block skips? how do i get around this??? any help is good help!
Some controller have the ability to recommence machining right at the point the program was interrupted, even if this point was not at the end of the movement commanded by a block. Okuma had that feature back in at least the late eighties.

Almost all controls can do a restart at the start of a block; I can’t think of any at the moment that can’t. I have a client that has a similar issue as you and the solution works quiet safely and economically time wise. Following is an explanation for Fanuc controls:

1. Because move modes such as G00 and G01 are model, the program is generated with these codes included in all lines as required. This is to ensure that the control is in the correct mode when the program restarts. Memory space is generally not an issue as only the current program is loaded; all other programs are saved on a PC and loaded as required. No big time penalty there.

2. Normally I only sequence number the first line of code for each tool. However, if the program is longish and its probable that a restart will be required I sequence number all blocks.

3. When the program is interrupted, note the sequence number of the current block. Let’s say for the purpose of example its N1001.

4. Because it’s important that offsets are applied before the tools starts cutting, the program is restarted at the point where the tool is called.

5. Find the block where the Tool Length Offset associated with the focus tool is applied and insert the following code immediately after it:

M99 P1001 F??? (the feed being used for the focus tool)

6. Place the cursor at the beginning of the code for the focus tool, and in single block, step the program through to, and including the block before the block containing the M99.

7. Using Rapid, Jog and Hand Wheel mode, position the tool at the coordinate specified by the code in the block immediately preceding the N1001 block.

8. Put the control back in Single Block, just for safety, and press the cycle start so that the M99 P1001 is executed. Having read this block the program control should jump to the N1001 block.

9. Confirm that the control is at N1001, place the mode in Auto and press the cycle start button. The machining will now commence at the beginning of the block where it was interrupted.

10. At the end of the program, initiate the search sequence to find the block containing M99 P1001 and delete this block.

The whole sequence of events takes way less than the time taken to write this reply and it’s a very safe restart method.

Regards,

Bill
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 11-27-2010, 06:49 AM
neilw20's Avatar  
Join Date: Jun 2007
Location: Australia
Age: 63
Posts: 2,338
neilw20 is on a distinguished road

I am not familiar with this controller, but here is a technique I have evolved.

I place liberal M1's (optional stop) in the program.
When a problem occurs I hit the optional stop button for the machine to pause at the next safe place.

Then I can use MDI/jog to fix the tool and hit cycle start from (usually) near the place it stopped.

The previous post details restarting at a line number, and this varies between controllers, as to how to start in the middle of a program.

When using subroutines, I have found the restarts to be problematic, so if I know I will need restarts, I write long stringy code with no subs.

To safely restart, the controller usually must rapid silently from the beginning to the restart address to get all moves, and variables in the correct state, and in Mach3, at least, I don't know how to restart at say, the 10the time in a sub. let alone how to know it was in there the 10th time. With relative moves instead of absolute moves, the only way is to have all the relative moves done in sequence (IMHO), but if you have not lost the machine state, then resuming might be OK.

To overcome this I put the M1's in the main program only, and at least I can dry run from the last subroutine call point where the failure was.
__________________
Super X3. 3600rpm. Three ways to fix things: The right way, the other way, and maybe your way, which is possibly a faster wrong way.
Reply With Quote

  #7   Ban this user!
Old 11-27-2010, 12:29 PM
 
Join Date: Jan 2010
Location: Norway
Posts: 72
ProToZyKo is on a distinguished road

We have one machine with a "Tool retract & recover" button, just press it, then do rapid or whatever away, change insert, push button and control the speed back with dry run switch.
This should be on all machines, looks like it's an option.
Reply With Quote

  #8   Ban this user!
Old 11-27-2010, 01:18 PM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

jay dizzle:

Why won't you help us help to you by telling us what control you have? Different controls have different program restart options... even similar controls on different machines have different program restart options. I guess we could all just flail around up here all day and maybe after several pages of replies you would have an answer. OR, you could tell us what control YOU have.
Reply With Quote

  #9   Ban this user!
Old 11-27-2010, 01:19 PM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

Originally Posted by ProToZyKo View Post
We have one machine with a "Tool retract & recover" button, just press it, then do rapid or whatever away, change insert, push button and control the speed back with dry run switch.
This should be on all machines, looks like it's an option.
Maybe jay dizzle has the same machine. We may never know.
Reply With Quote

  #10   Ban this user!
Old 11-27-2010, 01:48 PM
 
Join Date: Jan 2010
Location: Norway
Posts: 72
ProToZyKo is on a distinguished road

Originally Posted by dcoupar View Post
Maybe jay dizzle has the same machine. We may never know.
Haha, maybe, but don't think he has that button, we have to machine exactly the same, one has button other has not
But he hasn't answered since he started this, we may find out what control it is some day.
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 11-28-2010, 09:50 PM
 
Join Date: Jun 2008
Location: United States
Posts: 1,507
stevo1 is on a distinguished road

Originally Posted by dcoupar View Post
Maybe jay dizzle has the same machine. We may never know.
LMAO.

I have one of these machines with a retract button thingy. I also have one with a big red button that says Estop, not sure what it does but it looks important.

Sorry guys could not resist.

Stevo
Reply With Quote

  #12   Ban this user!
Old 11-28-2010, 10:48 PM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

Originally Posted by stevo1 View Post
LMAO.

I have one of these machines with a retract button thingy. I also have one with a big red button that says Estop, not sure what it does but it looks important.

Sorry guys could not resist.

Stevo
Steve,

If your machine is making a noise like "eeeeeeeeeeeeeeeeeeeeeeeee", push that red button, it'll stop. However, if it's making a noise like "rrrrrrrrrr", pushing the E stop button does nothing. Still looking for the Rstop button. Perhaps jay dizzle's machine has one of those?

Get some sleep. We're all tired from racking our brains trying to figure out jay dizzle's problem, and I'm thinking he's moved on to bigger and better things.

Dave
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
Heidenhain iTNC 530: Using Cycle 19 and Cycle 8 Dan B General CNC (Mill and Lathe) Control Software (NC) 4 08-27-2011 11:32 AM
alarm 105 (z servo error toll large) on Haas VF-OE hoi.le Haas Mills 4 08-12-2008 05:01 AM
TL1 Haas intuitive program restarts? elaganis Haas Mills 4 02-02-2007 02:06 PM
Long cycle time? CNCtoday Polls 5 09-28-2006 11:28 AM
Tidal Waves Death Toll Rises to 44,000 CNCadmin CNCzone Club House 5 01-03-2005 02:29 PM




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