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 > G-Code Programing


G-Code Programing Discuss G-code programing and problems here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 08-30-2006, 01:17 PM
 
Join Date: Apr 2006
Location: Ireland
Posts: 26
Navigator is on a distinguished road
Macros.How to work with it?

Hi. I'd like to start working with macros,but don't know how. If anybody knows something on this subject please give me an advice. Thank you in advance for any information on this matter.
Reply With Quote

  #2   Ban this user!
Old 08-30-2006, 02:24 PM
 
Join Date: Mar 2005
Location: Silicon Valley, CA
Posts: 982
psychomill is on a distinguished road

What control? If you have a FANUC (and others do as well) programming manual, it has some simple examples of macros and functions to start with. The rest of it, live and learn....

You can download lots of written macro programs online from many sources. These may be hard to follow but might give you the idea once you understand the basics. Not sure if there are more basic macros available online to go through with you step by step unless you pay for it. Someone might know though....
__________________
It's just a part..... cutter still goes round and round....
Reply With Quote

  #3   Ban this user!
Old 08-30-2006, 03:14 PM
 
Join Date: Apr 2006
Location: Ireland
Posts: 26
Navigator is on a distinguished road

Thank you for reply. That is the problem,I can't catch basic yet. Do you know any sources about macros?,I couldn't find... For example Some words like NE,FUP,LT what does it mean? I have Fanuc GE 0M series and I wouldn't say it's the best to learn macros with it... Old scrap. Manual is from another machine and the first problem I've faced is how to type them in? It doesn't accept #variable sign in a front of line only after any other sign,why? Brackets,can't find how to print them,"shift" is not very helpfull... so you see,I'm in the sea and where have I swim to... Help,I'm sinking...
Reply With Quote

  #4  
Old 08-31-2006, 01:21 AM
tobyaxis's Avatar
Moderator
 
Join Date: Jan 2006
Location: USA
Posts: 4,396
tobyaxis is on a distinguished road

Learning Macros is a bit tricky and NCPlot offers a Macro Calculator where you can write and execute Fanuc Macros. There is also a Help file that explains the basics. This may help you.

www.ncplot.com
__________________
Toby D.
"Imagination and Memory are but one thing, but for divers considerations have divers names"
Schwarzwald

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)

www.refractotech.com
Reply With Quote

  #5   Ban this user!
Old 08-31-2006, 09:28 AM
 
Join Date: Mar 2005
Location: Silicon Valley, CA
Posts: 982
psychomill is on a distinguished road

For example Some words like NE,FUP,LT what does it mean?
I'll try to touch on some here....

NE : Not Equal
FUP : round up
LT : Less Than

here's some others that are common...

GT : Greater than
LE : Less than or equal to
GE : greater than or equal to
ABS : Absolute value (drops the negative "-" sign)
FIX : round down
EQ : equals to

And there are others but this will get you started. Some examples.....

'IF' and 'GOTO' statements are the most common usage of macros.

IF[#503EQ#100]GOTO3333

which means, If variable 503 is equal to varable 100, then go to 3333. In this case, the program jumps to (searches) for a line number "N3333" and starts from there. You can also use real values.....

IF[#500EQ2.653]GOTO200

And for negative values...

IF[#500GT-1.500]GOTO200

Other math.....

#100=4.0 (you can use an "=" sign here)
#101=2.0
IF[[#100/#101]EQ2.0]GOTO300

N300
.
.
.

I have Fanuc GE 0M series and I wouldn't say it's the best to learn macros with it... Old scrap. Manual is from another machine and the first problem I've faced is how to type them in? It doesn't accept #variable sign in a front of line only after any other sign,why?
No, the OM is not the best and its a pain in the arse to type in commands. I haven't seen an OM board in 15 years so I'm not much help for you in getting macros to work on that board. Maybe someone else will ring in and give you some pointers on typing them in on this board...

__________________
It's just a part..... cutter still goes round and round....
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 09-01-2006, 05:55 AM
gar gar is offline
 
Join Date: Mar 2005
Location: USA
Posts: 1,498
gar is on a distinguished road

060831-2048 EST USA

Navigator:

The word MACROS in the CNC field really means additional functions added to the basic G-code language (MACROS are an extension of the language). This is quite different than the meaning of MACRO in the computer field.

My reference is HAAS and this is largely based on Fanuc. HAAS MACROS add math functions, formula calculation, assignment of values to variables, logical operations, subroutine calling with parameters, access to many internal variables in the machine, and DPRNT capability.

On-line you can access the HAAS web site and download a copy of either or both the mill and lathe manuals. In the manual there is a section MACROS.

www.haascnc.com , site map, customer service, manual updates scroll down to mill 96-8000 and pick this. It is a 12 meg file. or directly
http://www.haascnc.com/customer_serv...mc/96-8000.pdf
If you go directly to this address you get a mostly blank screen in Internet Explorer and a long wait. At the lower left you will see the progress.
HAAS page 80 is the start of MACROS (Adobe p 87 of 213), search for "Macros add capabilities and", but do not use the double quotes.

FIX[] obtains the interger portion of a decimal value in HAAS and produces an integer value. This is quite different than ROUND[].

The HAAS MACROS chapter is also where you find a limited definition of many #-variables.

Your capability is greatly enhanced with MACROS.

.
Reply With Quote

  #7   Ban this user!
Old 09-02-2006, 12:47 PM
 
Join Date: Apr 2006
Location: Ireland
Posts: 26
Navigator is on a distinguished road

Thank you very much... Now another question,if I can't find brackets sign on the operational panel ([) does it mean that macros unavailable on that controler type? It's GE Fanuc 0M series but it has macros options I've checked that.
Reply With Quote

  #8  
Old 09-02-2006, 12:51 PM
tobyaxis's Avatar
Moderator
 
Join Date: Jan 2006
Location: USA
Posts: 4,396
tobyaxis is on a distinguished road

Originally Posted by Navigator View Post
Thank you very much... Now another question,if I can't find brackets sign on the operational panel ([) does it mean that macros unavailable on that controler type? It's GE Fanuc 0M series but it has macros options I've checked that.
The brackets may be in the Variable Listing Screen Window executed by a softkey.
__________________
Toby D.
"Imagination and Memory are but one thing, but for divers considerations have divers names"
Schwarzwald

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)

www.refractotech.com
Reply With Quote

  #9   Ban this user!
Old 09-02-2006, 06:42 PM
 
Join Date: Apr 2006
Location: Ireland
Posts: 26
Navigator is on a distinguished road

You are a great man Tobyaxis,thanks. I sitting now in a front of monitor and try to think up where to use these macros,I mean what the benefits I would get of it? Using them instead of main programme or support the main programm, what the application it could be used for? I know only one at the moment, it;s bolt holes circle. But it means that for every new group of parts I will have to change variables while main programm is permanent... I know that with macros I can get big support,but I'm just thinking where and how... Don't be cross with me,I'm a beginner yet... Very simple manufacturing,small workshop and lack of information...
Reply With Quote

  #10  
Old 09-02-2006, 11:24 PM
tobyaxis's Avatar
Moderator
 
Join Date: Jan 2006
Location: USA
Posts: 4,396
tobyaxis is on a distinguished road

Originally Posted by Navigator View Post
You are a great man Tobyaxis,thanks. I sitting now in a front of monitor and try to think up where to use these macros,I mean what the benefits I would get of it? Using them instead of main programme or support the main programm, what the application it could be used for? I know only one at the moment, it;s bolt holes circle. But it means that for every new group of parts I will have to change variables while main programm is permanent... I know that with macros I can get big support,but I'm just thinking where and how... Don't be cross with me,I'm a beginner yet... Very simple manufacturing,small workshop and lack of information...
I'm not that Great. I just look for the simple answers and ways to do things. Now I'll be honest, I never use Macros for anything that a Sub-Program can do. Subs can be applied to any program without changing Variables. Unless your doing a family of Like parts or complex geometry like End Mill Grinding you won't need macros. Plus I use CAD/CAM.

__________________
Toby D.
"Imagination and Memory are but one thing, but for divers considerations have divers names"
Schwarzwald

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)

www.refractotech.com
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 09-03-2006, 09:27 AM
gar gar is offline
 
Join Date: Mar 2005
Location: USA
Posts: 1,498
gar is on a distinguished road

060903-0818 EST USA

Navigator:

Here are several specific links with my perspective based on HAAS machines:

A tool change subroutine that requires MACROS.
http://www.cnczone.com/forums/archiv...p/t-12545.html

MACROS used to eliminate a long list of IF statements.
www.cnczone.com/forums/printthread.php?t=12158

Next is a sort of useful discussion because it addresses inadequate definitions.
http://www.cnczone.com/forums/archiv...p/t-14613.html

A long discussion, but if you can follow thru there is useful information.
http://www.cnczone.com/forums/archiv...p/t-20564.html

.

Last edited by gar; 09-03-2006 at 07:35 PM.
Reply With Quote

  #12   Ban this user!
Old 09-03-2006, 10:16 AM
 
Join Date: Nov 2003
Location: Indiana
Posts: 98
bob1371 is on a distinguished road

Originally Posted by Navigator View Post
You are a great man Tobyaxis,thanks. I sitting now in a front of monitor and try to think up where to use these macros,I mean what the benefits I would get of it? Using them instead of main programme or support the main programm, what the application it could be used for? I know only one at the moment, it;s bolt holes circle. But it means that for every new group of parts I will have to change variables while main programm is permanent... I know that with macros I can get big support,but I'm just thinking where and how... Don't be cross with me,I'm a beginner yet... Very simple manufacturing,small workshop and lack of information...

We use macros to track tool life counters.
To monitor machine idle time. If idle x amount of time first cycle will run warmup program x # of times then goto main program and cut part. This works well on several lathes we do small parts on. When the operator returns from break the first couple of parts would be bad before doing this macro. We have it set up to track time and account for daylight savings and leap year.

Bob
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





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