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 10-06-2009, 08:09 AM
 
Join Date: Oct 2005
Location: Portugal
Posts: 114
fomaz is on a distinguished road
MDI help; someone using Fanuc should know

I am asking several questions since I do not have experience with Fanuc.
I have a machine center, where I am able to jog and to zero the machine. I was unable to do anything else.
My next "jump" is to try that the machine would move following some gcode in MDI mode (appers to be the most basic). I have read the manual, but I must be missing something. What did I did:

1) Power, and zero all axis
2) I went to MDI mode, and typed G00 X100
3) Pressed INPUT
4) This line was entered to the text box (as in the picture)
5) Pressed START, but nothing happens (using the interlock switch, since I did not mounted the door of the machine). I have notice that the led behind the start stays on for one brief instant, then goes off. Machine does not move.

I have read another program in machine memory, and I notice that all the lines end with ";" I do not know how to input this or to go to a new line in MDI mode. I know, those are basic questions, but I need to ask them.

I have attached a picture, that is the state before and after I press START. No alarm is displayed or anything else.

Any ideia or sugestion is very welcome.
Thank you
Attached Thumbnails
Click image for larger version

Name:	PA060143_cnczone.jpg‎
Views:	93
Size:	98.8 KB
ID:	90570  
Reply With Quote

  #2   Ban this user!
Old 10-06-2009, 09:14 AM
 
Join Date: Jun 2008
Location: United States
Posts: 1,507
stevo1 is on a distinguished road

Yes you need the end of block(EOB) “;” in the line of your code. The control looks like a 18 series. You should have a button labeled EOB.

There is no way to get to the next line. The lines will be split up based on the EOB. So just keep typing. Example is if you type at the bottom of the screen. G0X100;Y50;Z100; and when you press input it will enter the code into the control as:
G0X100;
Y50;
Z100;
And it will execute these lines one at a time.

Stevo
Reply With Quote

  #3   Ban this user!
Old 10-06-2009, 11:13 AM
 
Join Date: Aug 2007
Location: USA
Posts: 339
Boots is on a distinguished road

You are trying to tell the machine to move but you do not say where to move to and from where to move from. A G91 is required to move incrimentally (from where it is) and a G90 tells it to move 100 in the X from your Absolute home position.
Try this instead. G0 G91 X100;
OR if you have a work offset for G54 position then use this code.
GO G90 G54 X100 Y0;
Be sure your manual feed over rides are not shut off.
__________________
We all live in Tents! Some live in content others live in discontent.
Reply With Quote

  #4   Ban this user!
Old 10-06-2009, 11:51 AM
 
Join Date: Jun 2008
Location: United States
Posts: 1,507
stevo1 is on a distinguished road

No extra code is needed. G0X100 should work just fine. If you take a look through your parameter book it will tell you the settings for which codes are the default codes. Some G-code lists in the back of the manuals will tell you the same thing shaded black as the designated default code within the group.

There is no code to deactivate G90 and G91 at the same time. So if it is not programmed in the code it is whichever active/default (typically G90) is. If you go to the program check screen it will tell you which codes are active. This goes the same for the work coordinates. G54 is typically default so it is always active after reset or program end as is G90. So if these are the defaults on your control then a G0X100 will move the machine in G90 mode in relation to the setting in G54 coordinates even though you did not program them.

One thing you might want to do is put a decimal in the X100. Just in case your parameters are set up as conventional input instead of calculator input. If that is the case and you want to change it then it is parameter 3401.0 =0for conventional and =1 for calculator. I set all my machines to calculator. By the look of your CRT in the picture I ass u me that it is a 18series fanuc control and that is the parameter for that control.

Stevo
Reply With Quote

  #5   Ban this user!
Old 10-06-2009, 12:57 PM
 
Join Date: Oct 2005
Location: Portugal
Posts: 114
fomaz is on a distinguished road

Thank you for the replays,

about the line input, yes with the EOB key, now I can input lines in a good manner. About the modal mode, I am currently in G90 (in the screen we can see the current mode). Tested with the point and without the point in the coordinate, and result was the same. About the G54 it is set to X0 Y0 Z0.

Now (after the code that I have inputed) when I press start cycle, the start cycle led goes on and stays on, and I can see that the running program timer counts (in the picture 1min 37sec), it really appears that the machine is processing something. Another thing that I have notice is that the when start is pressed, the line showing currently being processed, passes from the program name "O0000" to the 1st line of code and stays there (see picture).
I do not have the feedrate in zero, I have it in 100%.
Controller is 21i-m model A.

I feel that I am close, too close
Once again any sugestion is welcome.
Filipe - Portugal
Attached Thumbnails
Click image for larger version

Name:	PA060145_cnczone.jpg‎
Views:	53
Size:	106.7 KB
ID:	90593  
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 10-06-2009, 01:06 PM
beege's Avatar  
Join Date: Feb 2008
Location: USA
Posts: 518
beege is on a distinguished road

Do you have a "Machine Lock" inhibiting axis movement? Rapid override set to 0? (not the same as "feedrate override")
Reply With Quote

  #7   Ban this user!
Old 10-06-2009, 02:09 PM
 
Join Date: Oct 2005
Location: Portugal
Posts: 114
fomaz is on a distinguished road

Rapid override set to 0?

I do not think so, but I have tested with G1 X100 F1000, and the result was the same, this is no movement, so I do not belive that rapid overdrive is set to zero, or if it is, that is not the problem for now.

About "Machine Lock". There is no key on machine about this, so I suspect that you are refering to some parameter or logic of the machine, I do not quite know were to look, but I took a picture of the diagnostic screen during the execution of the program that does not move. Were we can see that the machine is in "motion" and that interlock start lock is also true, I do not know if I should have true here or false...

Keep giving something to lookfor, that I will !
Attached Thumbnails
Click image for larger version

Name:	PA0601495_cnczone.jpg‎
Views:	53
Size:	116.9 KB
ID:	90594  
Reply With Quote

  #8   Ban this user!
Old 10-06-2009, 02:53 PM
 
Join Date: Jun 2008
Location: United States
Posts: 1,507
stevo1 is on a distinguished road

This can also be caused by not having all of the axis referenced. Are you positive that you have ALL of them referenced? What kind of model/make machine is this?

I think Beege was referring to “machine lock” which is usually a hard key on the control for running a program without physical movement. I ass u med this as well but the display numbers should be moving. If you press the softkey “ALL” when you are in the program check screen it should display the distance to go. Is there a value in there?

You have no doors open correct?

Stevo
Reply With Quote

  #9   Ban this user!
Old 10-06-2009, 06:07 PM
 
Join Date: Jun 2009
Location: usa
Posts: 81
JimBoyce is on a distinguished road

Try this and let us know what happens

S500 M3;
M8;
Reply With Quote

  #10   Ban this user!
Old 10-06-2009, 10:32 PM
 
Join Date: Mar 2008
Location: Australia
Posts: 4
kevinl2375 is on a distinguished road

You also may need to call up a tool first..
I would try moving all axis away from there home position manually.
and then:

G0 G28 U0.0 W0.0 Y0.0 T0:
G0 G54 T0101 ( this being whatever tool you want)
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 10-07-2009, 12:49 AM
dcoupar's Avatar  
Join Date: Mar 2003
Location: USA
Posts: 2,312
dcoupar is on a distinguished road

Originally Posted by kevinl2375 View Post
You also may need to call up a tool first..
I would try moving all axis away from there home position manually.
and then:

G0 G28 U0.0 W0.0 Y0.0 T0:
G0 G54 T0101 ( this being whatever tool you want)
This looks like lathe stuff. He's got a machining center, and this will more than likely cause an alarm.
Reply With Quote

  #12   Ban this user!
Old 10-07-2009, 08:20 AM
 
Join Date: Feb 2009
Location: USA
Posts: 64
James L is on a distinguished road
Feedrate

Just as you may or may not have to put a decimal after X100, you may also have to put in in the feedrate. On my machines a feedrate without a decimal will run but it takes forever. Try F20. or something. If your machines behaves like mine f20. will move many times faster than f1000 without the decimal. Also, have you tried jogging your machine to a random location and type G28X0.Y0.; and run that?
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 10:01 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