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 07-23-2010, 01:55 PM
 
Join Date: Jul 2010
Location: USA
Posts: 8
YTMBOSS is on a distinguished road
Fanuc 18M Help!

I have a Johnford SV 45 with a Fanuc 18-M control. Just recently downloaded the parameters and now I can't get it to run a program. It gives me an 011 no feed rate alarm at my first G00 rapid move. We havn't ran this machine, we just set it in shop as we bought it used. Also with the swing arm tool changer on it, should there be a table that tells you what tool is in what pocket? I can't find a table for it. And I can't find a tool table to give it cutter offset size for using cutter comp.
Reply With Quote

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

One question at a time please!

G00 does not require a feedrate. You must have used some other code needing feedrate. Specify it and the problem would go.
Reply With Quote

  #3   Ban this user!
Old 07-26-2010, 07:48 AM
 
Join Date: Jul 2010
Location: USA
Posts: 8
YTMBOSS is on a distinguished road

I know G00 doesn't require a feed rate, but the machine will not do the move. It gives me a 011 alarm (No feedrate). I'm stumped.
Reply With Quote

  #4   Ban this user!
Old 07-26-2010, 08:05 AM
 
Join Date: Feb 2006
Location: india
Posts: 1,187
sinha_nsit is on a distinguished road

The block next to G00 might be requiring feedrate.
Post your program, without editing.
Reply With Quote

  #5   Ban this user!
Old 07-26-2010, 09:18 AM
 
Join Date: Jul 2010
Location: USA
Posts: 8
YTMBOSS is on a distinguished road

Here is the first few lines of my program. It alarms out on the G00 Z2.0 line. Is there a parameter that you have to set to tell the machine how fast to rapid?


%

G90
G54
M06 T1 (1/4 EMILL)
M03 S2600
G43 H1 D1
G00 Z2.0
X0. Y0.
Z.1
X1.Y1.
G01Z-0.125F1.5
Y0.76F6.0 G41
G03Y1.24I0.J0.24
Y0.76I0.J-0.24
G01Y1. G40
Z-0.25F1.5
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 07-26-2010, 11:02 AM
 
Join Date: Jul 2010
Location: USA
Posts: 8
YTMBOSS is on a distinguished road

Also how do you change the D values for cutter comp in this control? I really appreciate any help.
Reply With Quote

  #7   Ban this user!
Old 07-26-2010, 04:48 PM
 
Join Date: Apr 2010
Location: Australia
Posts: 43
FrankCNC is on a distinguished road
Fanuc 18M

D & H cannot use the same offset number one will overwrite the other in the offset table, so if using tool 20 use offset 20 for H and offset 120 for D, most post processors are set up that way to make D+10 or 100 of the tool offset number.
Cutter offsets use the same table as tool length offsets just different offset numbers as stated above.
Try placing the D offset code in the line with the G41 (which I believe is normal programming practice) and not in the same line with the H length offset code.

I've found some of the Fanuc T controllers need an F code somewhere near the start of the program before a G1, but haven't come across that with any Fanuc M controllers yet.

Regards,
Frank.

Last edited by FrankCNC; 07-26-2010 at 07:13 PM.
Reply With Quote

  #8   Ban this user!
Old 07-27-2010, 03:45 AM
 
Join Date: Feb 2006
Location: india
Posts: 1,187
sinha_nsit is on a distinguished road

Execute G91 G00 Z1.0; in MDI mode and look for any error message. The tool should move up by 1.0 inch (in inch mode) at rapid rate.
Reply With Quote

  #9   Ban this user!
Old 07-27-2010, 06:28 AM
 
Join Date: Mar 2010
Location: USA
Posts: 5
rward1961 is on a distinguished road

If I was writing the program it would look like this and yes you cannot have the H & D on the same line

G0 G17 G40 G80 G90 G98
G90 G54
T1 M6
GOO X1. Y1. S2600 M3
G43 H1 Z2.
Z.1
G01 Z-0.125 F1.5
G41 Y0.76 F6. D21
G03 Y1.2 I0. J0.24
Y0.76 I0. J-0.24
G01 Y1. G40
Z-0.25 F1.5

The only thing you do and I dont is I dont cancle the cutter comp just to move in the Z
I leave it on so I dont have to call It up again. Good Luck.
Reply With Quote

  #10   Ban this user!
Old 07-27-2010, 08:33 AM
 
Join Date: Jul 2010
Location: USA
Posts: 8
YTMBOSS is on a distinguished road

Thanks for all the help. I played around with program yesterday and got the startup codes right. I had to move the G0 towards the top, I guess so it knew it was all ready in rapid mode before I gave it G0 X Y line to rapid home. I'm used to running Haas, Fadal, and different conversational controls. This is my first dealings with an actual Fanuc control. I also didn't know about the different offsets. My machine has 0-99. I'm used to having a tool table with length and radius offset side by side using H1 and D1 for T1. I did a search yesterday afternoon and figured out how to use the Fanuc offsets. I have 1-24 as length and 31-54 as cutter offset.

Also I have always programmed with an H and D on my G43 line. I just do that so I know where it is and I can quickly tell if I'm using cutter comp or not. I know the Haas control will accept this. I did change that for this Fanuc control to two different lines. Your right it won't accept them on the same line.

I really appreciate the help. I was about to pull my hair out with this machine.
Reply With Quote

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

Originally Posted by FrankCNC View Post
D & H cannot use the same offset number one will overwrite the other in the offset table, so if using tool 20 use offset 20 for H and offset 120 for D, most post processors are set up that way to make D+10 or 100 of the tool offset number.
Cutter offsets use the same table as tool length offsets just different offset numbers as stated above.
Try placing the D offset code in the line with the G41 (which I believe is normal programming practice) and not in the same line with the H length offset code.

I've found some of the Fanuc T controllers need an F code somewhere near the start of the program before a G1, but haven't come across that with any Fanuc M controllers yet.

Regards,
Frank.
This will depend on what offset memory that you have. You can use the same value for D and for H. One does not override the other. If you have the offset memory for length and for geometry then you do not need to specify a different number for one or the other.

Look in your offset page and if you have a column for length and another for geometry you can put the length value in (Z) and the geometry (radius of tool) in the other all under the same tool number. You can then proceed to use G43H1, G41D1.

Stevo
Reply With Quote

  #12   Ban this user!
Old 07-27-2010, 03:36 PM
 
Join Date: Apr 2010
Location: Australia
Posts: 43
FrankCNC is on a distinguished road

Stevo1 is right, I forgot about Memory B and Memory C as our machines only have Memory A with one page for all offsets and I got use to programming with different offsets for H and D.

If you haven't already got it you should get the book 'Fanuc CNC Custom Macro' by 'Peter Smid'
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
GE Fanuc & FANUC proprietary posts CNCadmin Fanuc 44 01-05-2012 08:54 AM
FANUC & GE FANUC Repairs RRL Product Announcements & Manufacturer News 1 04-17-2011 11:50 AM
can fanuc ac digital servo amplifiers be run by a controller other than fanuc? js412000 Servo Motors and Drives 5 03-09-2011 09:11 AM
Fanuc & GE Fanuc Repairs RRL Product Announcements & Manufacturer News 0 10-01-2008 12:42 PM




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