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-29-2011, 01:35 PM
 
Join Date: Jul 2008
Location: Finland
Posts: 22
polarbeer is on a distinguished road
Question Fanuc 6M model B - parameter details?

Hi,

I have started to learn Fanuc macro programming. I'm currently using an old Kitamura CNC-mill with Fanuc 6M model B -control.

I've read that for Fanuc 21iMB-control parameters are grouped like this:

#0 <Empty>
#1-#33 Local Parameters
#100-#149 (#199) Common Parameters
#500-#531 (#999) Common Parameters
#1000- System Parameters

1. Are these groups valid for 6M model B -control also?

2. If I have understood right, Local and Common parameters can be used by a programmer to make his own macro program. System parameters are used to read and store data like tool location, compensation etc. System parameter numbers can differ slightly between Fanuc control versions (6M, 10M, 0M, 18M, 21M etc.). Does any one of you have an exact list of Fanuc 6M model B (system) parameters?

3. I have so far found PARAM-softkey, which takes me to a parameter list. The first list starts at #0000 and ends at #3127. After I have pressed the PARAM-softkey, I can press PC-softkey, which takes me to another list of PC PARAMETER. The second list starts at #0000 and ends at #0063. If I press DGNOS-softkey, screen shows the third list of DIAGNOSE parameters. It starts at #0000 and eds at #0890.

Does any of these three lists of parameters actually contain System Parameters? If not, can I view the current values of System Parameters by any means?

Thanks for your help!

-pb
Reply With Quote

  #2   Ban this user!
Old 11-29-2011, 03:18 PM
 
Join Date: Sep 2010
Location: Australia
Posts: 733
angelw is on a distinguished road

Originally Posted by polarbeer View Post
Hi,

I have started to learn Fanuc macro programming. I'm currently using an old Kitamura CNC-mill with Fanuc 6M model B -control.

I've read that for Fanuc 21iMB-control parameters are grouped like this:

#0 <Empty>
#1-#33 Local Parameters
#100-#149 (#199) Common Parameters
#500-#531 (#999) Common Parameters
#1000- System Parameters

-pb
pb,
The above are not parameters, but are actually Variables used in a programming language called User Macro B. There are two versions of User Macro supplied by Fanuc, A and B. B is the friendlier, and most desirable of the two, and as stated, the above Variables relate to the "B" version.

For the variables to be relevant, the control must be equipped with the User Macro executable. Its an option, but most 6 Series, model "B" controls on upmarket machines were supplied with this option. So the first thing you need to determine is if your control has the User Macro Option. The simplest way to do this is to look for a Macro Variable Page. From memory, I believe this is accessible via the Offset button, and then Page buttons. Check this out and post back to the Forum if you require further help with using the User Macro option on your machine.

Regards,

Bill
Reply With Quote

  #3   Ban this user!
Old 11-30-2011, 06:43 AM
fordav11's Avatar  
Join Date: Aug 2011
Location: Fordaville
Posts: 939
fordav11 is on a distinguished road

damn! there was a page on 6M for macro variables? I ran a Fanuc Tape Center with 6M back in 1987/88/89 and used macro extensively while making injection dies.
I had to keep track of the variables on a piece of paper not knowing there was a display screen for them!
Reply With Quote

  #4   Ban this user!
Old 11-30-2011, 08:18 AM
 
Join Date: Jul 2008
Location: Finland
Posts: 22
polarbeer is on a distinguished road

Originally Posted by angelw View Post
pb,
The above are not parameters, but are actually Variables used in a programming language called User Macro B. There are two versions of User Macro supplied by Fanuc, A and B. B is the friendlier, and most desirable of the two, and as stated, the above Variables relate to the "B" version.

For the variables to be relevant, the control must be equipped with the User Macro executable. Its an option, but most 6 Series, model "B" controls on upmarket machines were supplied with this option. So the first thing you need to determine is if your control has the User Macro Option. The simplest way to do this is to look for a Macro Variable Page. From memory, I believe this is accessible via the Offset button, and then Page buttons. Check this out and post back to the Forum if you require further help with using the User Macro option on your machine.

Regards,

Bill
Thanks Bill for your input. I was able to find user variables and how to view them (by reading 6M model B operator's manual ). From the main softkey panel just push SET-button (two or three times if once isn't enough). This shows user variables.

Variable numbers shown were:
#1-#33
#100-#149
#500-#511
#512-#559

I was also able to input a super short macro program, which I was able to call using G65-command.

One questions comes into mind at this stage. Can user easily check/view values of system variables (#1000-) or are they always hidden?


-pb
Reply With Quote

  #5   Ban this user!
Old 11-30-2011, 02:51 PM
 
Join Date: Sep 2010
Location: Australia
Posts: 733
angelw is on a distinguished road

Originally Posted by polarbeer View Post
Thanks Bill for your input. I was able to find user variables and how to view them (by reading 6M model B operator's manual ). From the main softkey panel just push SET-button (two or three times if once isn't enough). This shows user variables.

Variable numbers shown were:
#1-#33
#100-#149
#500-#511
#512-#559

I was also able to input a super short macro program, which I was able to call using G65-command.

One questions comes into mind at this stage. Can user easily check/view values of system variables (#1000-) or are they always hidden?


-pb
Hi pb,
Some System Variables can be written to, but all are able to be read. Reading the System Variable is quite straight forward as the following example will show:

#1 = #1000

If you execute the above block, the value of #1000 can be viewed in #1 via the Macro Variable page. If you put this in a short program to test, don't let the program read M30, as M30 is normally tied to the Reset function. Local Variables and Common Variables #100 - #149 are reset to vacant on Reset (parameters can be set to avoid this, but is not always desirable). You can also test this block in MDI.

In a Macro program, you can also set conditional statements based on the value of any Variable, System Variables included.
For example:

IF[#1000 EQ 1] GOTO100

In the above case, if the value of #1000 was 1, then the program would branch to the program block with the sequence number N100

Regards,

Bill
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 12-01-2011, 01:09 AM
 
Join Date: Jul 2008
Location: Finland
Posts: 22
polarbeer is on a distinguished road

Thanks for the tips Bill!

I had wished, that user could directly and easily view system variables (#1000-) like those local and common variables from some settings page, but apparently that is not possible.

-pb
Reply With Quote

Reply

Tags
6m model b, fanuc, macro, parameter




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
Problem- HITACH SEIKI MODEL 25D DOUBLE TURRET MACHINE, ONLY DATA TABLE PARAMETER NEEDED rajesh_1355 Fanuc 0 04-16-2011 01:17 PM
details engines details azroyhelmy I.C. Engines 2 03-28-2011 07:47 PM
Fanuc RAM Cord. Want to buy. Read for details. cncdigital Want To Buy...Need help! 0 06-17-2009 02:10 PM
Fanuc 300iS-Model A B'Lash parameter 1851 and 1852 working for all axes but B axis LogicalFool Fanuc 0 06-02-2009 06:32 PM
Does anyone have a Parameter Manual for Fanuc 21i Model A Eagle View General Metalwork Discussion 0 01-25-2008 03:52 PM




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