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 02-01-2011, 06:49 AM
 
Join Date: Nov 2010
Location: USA
Posts: 16
QUALMACH1 is on a distinguished road
Exclamation Helical Mill

Guys,
I have a Mazak H-15 with a fanuc 6m series 901 version 13 controller. I need to know how to do a helical mill. Here is the code I am using...
G03 X0 Y2.75 I0 J-2.75 Z-4.5 Q.1 F1.5 M3 S1200; This gets me into position, but when it starts it does not step .100" per revelution (Q.1), it go's full Z depth in 1 revelution. I am using a 1.5" inserted cutter, and only want it going in Z .100" per rev untill it reaches full Z depth. Thanks,
Reply With Quote

  #2   Ban this user!
Old 02-01-2011, 08:40 AM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

There is no Q mentioned in the 6M-B manual. You can program a sub call with a repeat count (L).

G00 X0 Y2.75 Z0.1
G01 Z0 F1.5
M98 P101 L45
G00 G90 Z0.1
...
...
M30

O101 (HELICAL SUB)
G91 G03 I0 J-2.75
M99
Reply With Quote

  #3   Ban this user!
Old 02-01-2011, 08:42 AM
 
Join Date: Mar 2006
Location: US
Posts: 97
sld4121 is on a distinguished road

Since it is a fanuc controlled machine, helical milling will not step down. You have to program pass by pass or use a macro. I believe starting with the 18i and above you can do it with an option called spiral/conical interpolation. However, since that was around $1750, most people continue to use macros.
Reply With Quote

  #4   Ban this user!
Old 02-01-2011, 08:59 AM
 
Join Date: Nov 2010
Location: USA
Posts: 16
QUALMACH1 is on a distinguished road

Originally Posted by dcoupar View Post
There is no Q mentioned in the 6M-B manual. You can program a sub call with a repeat count (L).

G00 X0 Y2.75 Z0.1
G01 Z0 F1.5
M98 P101 L45
G00 G90 Z0.1
...
...
M30

O101 (HELICAL SUB)
G91 G03 I0 J-2.75
M99
I never have used subs..not sure how to do this, but say I call out program O0001 write the program as above, then do I write another program for the sub say O0002? Or will the P tell it to look for the sub in this program O001? Thanks,
Reply With Quote

  #5   Ban this user!
Old 02-01-2011, 09:03 AM
 
Join Date: Mar 2006
Location: US
Posts: 97
sld4121 is on a distinguished road

As you correctly assumed, the sub program needs to be separate from the main program. Just remember to end with a M99 so it knows to return to the main program when it is done.
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 02-01-2011, 09:51 AM
 
Join Date: Nov 2010
Location: USA
Posts: 16
QUALMACH1 is on a distinguished road

worked great except for this, when it finishes the G03 it go's up in Y...thats not a good thing. Here is what im doing. I have a part that is 4.5" thick, it has na hole burned in it that is 6.875" in dia. I am milling it out to 7" using a 1.5" inserted cutter, thenim gonna finish bore it to size. The program is starting Y2.5, then it G03's back to Y2.5, then for some reason it starts feeding on up in Y. Why is this...how do I get it to stop at Y2.5?

Program so far...
O1570;
G40G80G90;
G54;
M08;
M3S1200;
G0X0Y2.75;
G0Z.1;
G1Z0F1.5;
M98P0001L45;
G0G90Z.1Y0;
M05;
M09;
M00;
----------------
(HELICAL SUB)
O0001;
G91G03I0J-2.75F10.;
M99;

Any suggestions??
Reply With Quote

  #7   Ban this user!
Old 02-01-2011, 10:04 AM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

Originally Posted by QUALMACH1 View Post
worked great except for this, when it finishes the G03 it go's up in Y...thats not a good thing. Here is what im doing. I have a part that is 4.5" thick, it has na hole burned in it that is 6.875" in dia. I am milling it out to 7" using a 1.5" inserted cutter, thenim gonna finish bore it to size. The program is starting Y2.5, then it G03's back to Y2.5, then for some reason it starts feeding on up in Y. Why is this...how do I get it to stop at Y2.5?

Program so far...
O1570;
G40G80G90;
G54;
M08;
M3S1200;
G0X0Y2.75;
G0Z.1;
G1Z0F1.5;
M98P0001L45;
G0G90Z.1Y0;
M05;
M09;
M00;
----------------
(HELICAL SUB)
O0001;
G91G03I0J-2.75F10.;
M99;

Any suggestions??
I don't see how the program could stop at Y2.5 when the 6th block positions to Y2.75, and the G03 helix ends at Y2.75. Please re-check the program.
Reply With Quote

  #8   Ban this user!
Old 02-01-2011, 10:42 AM
 
Join Date: Mar 2006
Location: US
Posts: 97
sld4121 is on a distinguished road

Looks like your helical sub is missing a negative Z value.
Otherwise, it should only be able to go to Y0 at the end of the 45 loops.

If it still does not work, try the following,

(HELICAL SUB)
O0001;
G91G03X0Y-2.75Z-.05I0J-2.75F10.;
Y2.75Z-.05J2.75;
M99;

This should just break the arcs into segments
Reply With Quote

  #9   Ban this user!
Old 02-01-2011, 11:06 AM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

Oops... my bad.

(HELICAL SUB)
O0001;
G91 G03 I0 J-2.75 Z-0.1 F10.;
M99;
Reply With Quote

  #10   Ban this user!
Old 02-01-2011, 11:50 AM
 
Join Date: Nov 2010
Location: USA
Posts: 16
QUALMACH1 is on a distinguished road

Originally Posted by dcoupar View Post
I don't see how the program could stop at Y2.5 when the 6th block positions to Y2.75, and the G03 helix ends at Y2.75. Please re-check the program.
Yea...my bad, I had it programmed to go y2.5 in the sub program i forgot it was in G91...It now has a Z-, and it working great!!!! Thanks, guys. This machine had not been used at all hardly in our shop, due to no one knowing how to correctly program it. we are now using it daily thanks to you good pepole! Godbless you ALL!
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 02-01-2011, 02:23 PM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

Originally Posted by QUALMACH1 View Post
Yea...my bad, I had it programmed to go y2.5 in the sub program i forgot it was in G91...It now has a Z-, and it working great!!!! Thanks, guys. This machine had not been used at all hardly in our shop, due to no one knowing how to correctly program it. we are now using it daily thanks to you good pepole! Godbless you ALL!
Glad we could help. Good luck.
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
Need Help!- Radial Helical Mill with Live Tool Puma 700LM bdyenter Daewoo/Doosan 2 01-22-2010 12:35 AM
Helical interpolate vs. drill then open with mill Brian FRF General Metal Working Machines 1 08-07-2009 02:27 PM
Need help lathe on a mill helical or not bigtoad170 General Metalwork Discussion 5 07-30-2008 12:09 PM
Fanuc 6mb do I need a BTR?? Also it wont helical mill ? mt92 Fanuc 3 10-18-2006 10:25 PM
Fagor 8055 Mill Sample Code and Helical Interpolation sailcam G-Code Programing 3 10-12-2006 06:37 AM




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