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 08-20-2011, 03:41 AM
 
Join Date: Aug 2011
Location: Japan
Posts: 5
fujisan is on a distinguished road
continuous macro operation

Hi all,

I'm new to FANUC macro programming and wondered wether it is possible to keep a macro running in the background, whilst other NC code is being executed?
What comes closest for me, is to call the macro at every speed changing command, but it's still not exactly what I need.

Does any one know, wether the C language executor can do that? I haven't found a lot of information about it, so I'm not sure what the differences are except using another language.

Thanks a lot for your help!!
Reply With Quote

  #2   Ban this user!
Old 08-20-2011, 05:44 AM
 
Join Date: Feb 2006
Location: india
Posts: 1,187
sinha_nsit is on a distinguished road

Macro calculations do continue in advance while the preceding NC statement is being executed.
Reply With Quote

  #3   Ban this user!
Old 08-20-2011, 06:44 AM
christinandavid's Avatar  
Join Date: Aug 2009
Location: New Zealand
Posts: 573
christinandavid is on a distinguished road

Look up info on 'realtime' macro commands, they may suffice - sorry, never used them myself...everytime I try to get my head around them all the Zs make me feel tired

DP
Reply With Quote

  #4   Ban this user!
Old 08-22-2011, 01:07 AM
 
Join Date: Aug 2011
Location: Japan
Posts: 5
fujisan is on a distinguished road

what are real-time commands? i have the book fanuc cnc custrom macros from peter smid. it has got a few years on its back, so i'm not sure wether it's too old, but i can't find any info in it.

are there any good resources on fanuc macro programming? because also on the net, i couldn't find any.
Reply With Quote

  #5   Ban this user!
Old 08-22-2011, 06:40 AM
christinandavid's Avatar  
Join Date: Aug 2009
Location: New Zealand
Posts: 573
christinandavid is on a distinguished road

From what I can gather you can use them to interrupt current cycle when a condition is met (don't ask me what the typical use is, but from the examples my guess is probing). The format seems to involve a //Z before the normal phrases, with a distinct notation for the RTM variables used.

Hopefully, someone else can chip in who has actually used them...I don't know how extensively they are used, I only know they are mentioned in my 31i manual.

DP
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 08-24-2011, 09:30 PM
 
Join Date: Mar 2005
Location: Silicon Valley, CA
Posts: 982
psychomill is on a distinguished road

It might help for us to know ..... What do you need the macro to run while code is running? What is the macro tracking?
__________________
It's just a part..... cutter still goes round and round....
Reply With Quote

  #7   Ban this user!
Old 08-25-2011, 01:46 AM
MysticMonkey's Avatar  
Join Date: Mar 2009
Location: Australia
Posts: 366
MysticMonkey is on a distinguished road
WHILE

Can you use the while command and program a while for each condition you might need in a program?
Attached Thumbnails
Click image for larger version

Name:	Fanuc while statement.JPG‎
Views:	30
Size:	47.2 KB
ID:	140768  
__________________
***********************************************************
*~~Darwinian Man, though well-behaved, At best is only a monkey shaved!~~*
***********************************************************
*__________If you feel inclined to pay for the support you receive__________*
*_______Please give to charity http://www.oxfam.org/en/getinvolved_______*
***********************************************************
Reply With Quote

  #8   Ban this user!
Old 08-25-2011, 02:05 AM
 
Join Date: Aug 2011
Location: Japan
Posts: 5
fujisan is on a distinguished road

i want to monitor values as servo/spindle speed, position, load etc. and create a history of the machines usage.

G66 is not that bad, because it can call the macro at every axis moving command, but still it requires each program to include the command to have all data of the machines history
Reply With Quote

  #9   Ban this user!
Old 08-26-2011, 10:49 PM
 
Join Date: Mar 2005
Location: Silicon Valley, CA
Posts: 982
psychomill is on a distinguished road

What machine is this? You would be far better off to look into Data Collection software. This type of software can pull such data from the machine every second it is running or not running and create graphs, history, charts... whatever you want. This is commonly used for what we call OEE.
Then you don't need to write any macros or use up variable to store the data or have to print it out constantly.

Some machine controls monitor this anyway so it's just a matter of you setting up the outputs accordingly.
__________________
It's just a part..... cutter still goes round and round....
Reply With Quote

  #10   Ban this user!
Old 08-29-2011, 07:25 AM
 
Join Date: Aug 2011
Location: Japan
Posts: 5
fujisan is on a distinguished road

thanks for the reply.

its not for a factory machine, but for a research machine. i guess that such a data collection software costs money, right? or is there one freely available?

it would be nice to monitor all data, but its not necessary to save everything. i only need to store a few variables (<10) so it shouldn't be too much of a problem.
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 08-29-2011, 08:46 PM
BobWarfield's Avatar  
Join Date: May 2005
Location: USA
Posts: 2,395
BobWarfield is on a distinguished road

fujisan, not clear you can monitor everything you want in g-code, but let's assume you can. In other words, if you go through the programming manual for your machine's controller, everything you want to see is accessible either directly (e.g. you know the spindle speed is 6000 rpm because you executed an "S6000") or indirectly via a # system variable.

If you controller has a means of monitoring these variables directly, great. OTOH, a lot of data collection is done using a DPRNT statement in the g-code. You see this for monitoring cycle times or for tool life management, for example.

DPRNT just writes out whatever you want it to via the serial port. You use DNC software that has the ability to collect this information to gather it into a file. You can then analyze the file using Excel, a Basic program, or whatever tool is most convenient.

For example, let's say you want to monitor which programs ran, which tools in the changer where accessed, how long each was accessed, and at what feeds and speeds the tool ran. You can get all that by instrumenting the "O", "S", "F", and "T" words.

What I mean by instrumenting, is you'd go through the g-code and for each of those words you'd add a DPRNT that sends the value out the serial port.

This is not too hard to do with search and replace (well, you'd better have regular expression capability!). But, some g-code editors can do it too. For example, G-Wizard has a "Monitor Revision" that lets you add a particular string to the g-code after a particular word, or a particular word followed by a particular address.

The output might look something like this:

Program O0100
Spindle S6000
Feed F110
Tool T12
...
etc.

Hopefully you can get a timestamp on those entries or output one as part of the DPRNT.

So, that's another way to go about it. Several of the machine data collection software programs are based on this kind of approach.

Best,

BW
__________________
Try G-Wizard Machinist's Calculator for free:
http://www.cnccookbook.com/CCGWizard.html
Reply With Quote

  #12   Ban this user!
Old 08-30-2011, 08:52 PM
 
Join Date: Jun 2008
Location: United States
Posts: 1,507
stevo1 is on a distinguished road

Originally Posted by psychomill View Post
This is commonly used for what we call OEE.
Wow.....you don't hear that very often. Operating Equipment Efficiency. We got a new CI guy a few years ago and have been doing this for some time. It is hard to really use the data as the standards for most jobs are not that accurate.

We looked at software like this thru a company called Enet DNC and it was not cheap. I don't know what is out there but this required some additional hardware in the machines.

Stevo
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
Problem- Citizen won't run in continuous mode gizmo_454 CNC Swiss Screw Machines 3 11-22-2010 10:07 AM
How to make continuous polyline? 1ctoolfool Rhino 3D 2 03-13-2009 10:20 AM
can't continuous jog in mach 3 fbmstar Mach Software (ArtSoft software) 7 11-18-2007 07:56 PM
Continuous thread G32 macro dcrace G-Code Programing 3 05-29-2007 02:23 PM
Maxnc10cl continuous nightmare originator Benchtop Machines 11 06-11-2006 02:37 PM




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