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! > MetalWorking Machines > Haas Mills


Haas Mills Discuss Haas machinery here!


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 09-22-2008, 05:44 PM
 
Join Date: Jun 2006
Location: usa
Posts: 236
kendo is on a distinguished road
"A" value in probe macro

We just got the Renishaw probe installed on our GR408 and Im trying to learn to write the macros myself instead of using VQC

I got the renishaw manual #H-2000-6222-OA I found in this forum but it says nothing about the "A" value I see in every macro generated by VQC

Im trying to do some program writing from home tonight and without the machine and its VQC to just copy from, Im stumped about what the A value should be and what its even used for

The manual also shows an X,Y, or Z value as compulsory input for a single surface measure cycle, which I know the VQC never generates.
I cant think of why the macro needs an X input for "surface position", when Im trying to use the probe to find that position in the first place, plus the stylus is positioned within .400 of the surface, and the macro number tells it wether to travel plus or minus to find the surface.

So, am I reading the wrong manual?
Are there two (or three) ways to do the same thing?
Can I forget about VQC and learn the method in this manual?
Is there a manual that explains the code output by VQC so I can learn it?
Whats the X,Y, or Z input for in a single surface measuring cycle?

Thanks,
Kendo
Reply With Quote

  #2   Ban this user!
Old 09-22-2008, 06:07 PM
 
Join Date: Nov 2003
Location: USA
Posts: 231
Haas_Apps is on a distinguished road

The values that are passed via any letter argument may not have anything to do with any axis position. The "A" argument is just a way to pass some value to the sub-programs. VQCPS is written by Renishaw and it is simply a front end for Inspection Plus. You do have the right manual. That is the same one I have. The easy way to figure out what the "A" value is used for it to see what VQCPS outputs to MDI. I suspect that it may be the WCO number.
Reply With Quote

  #3   Ban this user!
Old 09-22-2008, 09:04 PM
 
Join Date: Jun 2006
Location: usa
Posts: 236
kendo is on a distinguished road

-If this is the right manual for me, why doesn't it teach me what the A variable is?
-Why does it talk about variables that VQC doesn't generate?
-What is inspection plus and what do you mean by VQC is a "front end" for it?
-If I'm using VQC, and thats different from inspection plus, then why is this the right manual for me?
-Why didn't this probe show up with a comprehensive programming manual in the box?
Reply With Quote

  #4   Ban this user!
Old 09-23-2008, 10:05 AM
 
Join Date: Oct 2007
Location: usa
Posts: 16
PaintItBlue is on a distinguished road
The mysterious letter A

Hey there, I am just getting into programming too. I would reccomend turning setting #23 9xxx prog lock to off. This will give you access to the probng programs. Then copy the 9023 program and print it. Don;t forget to turn off the setting when done.

I highlighted all of the Nxxxx lines to pick out the steering.

Take a minute or two to study the O9023 if then statements concernng A (#1), it uses them to steer the program.

For example when A= 9.0 the probe will send the program to the Z face probing routnes, with the command "IF [ #1 EQ 9.0 ] GOTO16
also note with the Z probe option you only need A(probing op steering) and S(applicable woorkoffset)

now for x y web you will need more variables:
A:4.0
X or Y variable = to diam or length or width of part, again the machne will use an IF X eq # do the x web probe, if x is vacant or y has a value it will do the Y web probing.
S:work offset
Z: amoun to drop porbe during the web probing - I am using part blank heigth/2 +.100 approach allowance + .118 for probe ruby diam (.236)/2. This makes the ruby strike midpoint on heigth.



Study the 9023 program well, its will give you tons of tricks for programming.
My main part program looks more and more like the probing one every day.
Reply With Quote

  #5   Ban this user!
Old 09-23-2008, 03:07 PM
 
Join Date: Nov 2003
Location: USA
Posts: 231
Haas_Apps is on a distinguished road
Some Answers

Originally Posted by kendo View Post
-If this is the right manual for me, why doesn't it teach me what the A variable is?
-Why does it talk about variables that VQC doesn't generate?
-What is inspection plus and what do you mean by VQC is a "front end" for it?
-If I'm using VQC, and thats different from inspection plus, then why is this the right manual for me?
-Why didn't this probe show up with a comprehensive programming manual in the box?
Kendo,
Okay, you have raised a lot of questions that I will try to answer. Haas sells the Visual Quick Code Probe System. This product is intended to make setting up a machine easy. We partnered with Renishaw and they created the templates for VQCPS and supplied Inspection Plus as the engine. Haas does not sell inspection plus, Haas sells VQCPS. VQCPS does not need a manual because it is all visual - in the templates. What you initially asked was how to use the underlying macros to write your own probe routines. These macros are Inspection Plus and not VQCPS. If you really, really want to get to write your very own custom probe routines then you can use G31 and some custom macros to do whatever you want. I hope this clears up any confusion.
Attached Thumbnails
Click image for larger version

Name:	ainput.jpg‎
Views:	107
Size:	21.2 KB
ID:	66919  

Last edited by Haas_Apps; 09-23-2008 at 03:09 PM. Reason: added attachment with ref. to A
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 09-23-2008, 04:59 PM
extanker59's Avatar  
Join Date: Mar 2008
Location: USA
Age: 53
Posts: 426
extanker59 is on a distinguished road

I've been using the probe cycles in my programs but I'm taking a risk every time because I haven't been able to incorporate G31. It seems to skip it. Can you show me what I'm doing wrong?


N25 (PROBE)
T25 M06
G00 G90 G57 X0 Y0
G43 Z1. H25 T18

(PROBE Z)
M53 (PROBE ON)
G1 G31 Z.25 F12.
G65 P9023 A9. S57.

G00 Z3.
G53 Y0 Z0
M01

Thanks
Chris
Reply With Quote

  #7   Ban this user!
Old 09-23-2008, 07:35 PM
 
Join Date: Jun 2006
Location: usa
Posts: 236
kendo is on a distinguished road

Thanks for helping me figure this out,
Im not trying (yet) to write my own probing macros, I just want to get more familiar with the macros VQC is outputing so I can write them manually.

The Aa input your screenshot shows is associated with an angled surface measure cycle according to the manual, not the same Aa I was trying to figure out.

I realized the VQC uses P9023 for every cycle and the Aa "steers" it internally to use all the macros I'd like to learn.

extanker,

from my reading (not experience), I think you need a protected positioning move there which looks like:

G43 H25 Z1.
G65 P9832 - PROBE ON
G65 P9810 Z.25 F12. - PROTECTED MOVE
G65 P9811 Z0. S57 - SINGLE SURFACE MEASURE
Reply With Quote

  #8   Ban this user!
Old 09-24-2008, 06:55 AM
extanker59's Avatar  
Join Date: Mar 2008
Location: USA
Age: 53
Posts: 426
extanker59 is on a distinguished road

Thanks Kendo, I'll try it. I gather that the G31 is in the body of the sub programs? I'll look. Again, thanks.
Chris.
Reply With Quote

  #9   Ban this user!
Old 09-24-2008, 09:17 AM
 
Join Date: May 2004
Location: United Kingdom
Posts: 75
guypb is on a distinguished road

Indeed, macro 9023 is part of the Renishaw "EasySet" set of software. The A value indicates whether it is a Bore/Boss etc. Macro 9023 is used ONLY for part setting not for part inspection.

I have developed a set of VQCPS templates specifically aimed at Part Inspection which also allows input of tolerances on sizes and positions. You can also probe one feature in one WCS and update a seperate WCS with the output.

The templates tackle all the same areas as the standard VQC cycles and a few extras like 3 point bore / boss with definable probing angles & probing a number of holes on a PCD.

It also strings together the probing cycles with protected moves so you don't need to use the hand wheel and can incorporate them into your metal cutting programs.

The templates work in conjunction with my CNC Reporter software to generate Inspection Reports & SPC charts in Excel on a PC connected via RS232.

If you can use Haas / Renishaw's standard VQCPS for part setting, you can use what I call VQCPS+ for part inspection.

I already have a few Haas end users using the templates and they love them!.

The down side is that it is not quite (but nearly) as straight forward as just distributing the VQC templates - there are a couple of other minor tweaks required on a few macros - these are required to make the application and it's resultant output bullet proof.

It is also not officially sanctioned by Haas but then as Haas_Apps says, the VQCPS called macros are actually Renishaw's code anway.

I can point you in the direction of someone who can help with the templates if you are interested.

If I knew how to post images on here I would show you what I've done. I have a Haas CNC Simulator so everything is fully tested.
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
"low end" HF Spindle or "high end" router for about $1000? biomed_eng DIY-CNC Router Table Machines 14 01-06-2012 12:15 AM
The "I" macro variable Shizzlemah Fadal 11 11-27-2010 08:30 AM
Macro to read machine "power on" jakk100 G-Code Programing 9 04-12-2007 09:15 AM
Macro alarm "009 ILLEGAL ADDRESS INPUT" theemudracer Fanuc 7 12-26-2006 09:57 AM
"A" Axis Substitution Macro Programming For Fanuc xleng G-Code Programing 5 12-08-2006 01:52 PM




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