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 10-01-2007, 02:13 PM
1ctoolfool's Avatar  
Join Date: Jan 2004
Location: KY
Posts: 201
1ctoolfool is on a distinguished road
G71 error

using visual quick code, when I try to run the G71 that is generated I get the following error "non monotonous PQ blocks in Z"

what is the problem?

thanks,
joev
Reply With Quote

  #2   Ban this user!
Old 10-01-2007, 03:03 PM
 
Join Date: Sep 2007
Location: USA
Posts: 116
SeymourDumore is on a distinguished road

Joe

Can you post a snippet of your code starting a block before the G71 call to a block after the Q block?
There are a few little things that can be wrong, and I think quick code can make a mistake ( though I have never used it)
Reply With Quote

  #3   Ban this user!
Old 10-01-2007, 03:55 PM
 
Join Date: Jul 2005
Location: Canada
Posts: 11,565
Geof will become famous soon enough

It means somewhere within the P-Q block you have the Z backing up or your first Z position is ahead of your start position that is set before the G71 command.

Either post your code or a picture of what you are doing. I use G71/72/70 a lot on my TL1 and may be able to give some hints.
__________________
An open mind is a virtue...so long as all the common sense has not leaked out.
Reply With Quote

  #4   Ban this user!
Old 10-02-2007, 08:18 AM
1ctoolfool's Avatar  
Join Date: Jan 2004
Location: KY
Posts: 201
1ctoolfool is on a distinguished road
bad code

Below is the code
I used the VQC number 8, just a simple OD turn with 2 outside radius blends. Same tool for rough and finish.
.5" OD to .75" OD each .5" long.
VQC generates a G72 face rough, a G71 OD rough and G70 finish
Alarm is at the G71
thanks


%
O00300
(G71 OD W/Rounding 8)
(RghToolN = 1)
(MaxRpm = 1000)
(SpdleRpm = 1000)
(SurfSpd = 300)
(RghFeed = 0.01)
(FinToolN = 1)
(FinFeed = 0.002)
(DIA1 = 0.5)
(DIA2 = 0.75)
(Z1 = 0.5)
(Z2 = 0.5)
(R1 = 0.1)
(R2 = 0.1)
(FaceStk = 0.05)
(StkDia = 1.)
(G71 OD DOC = 0.025)
(G72 FACE DOC = 0.025)

T1
G50 S1000
G97 S1000 M03
G96 S300 M08
G00 Z2.05
G00 X1.1 Z0.07
G72 P101 Q102 D0.025 U0.02 W0.004 F0.01
N101 G00 Z0
G01 X-0.07
N102 G00 W0.1
G71 P103 Q104 D0.025 U0.02 W0.004 F0.01
N103 G00 X0.2
G01 G42 Z0
G01 X0.3
G03 X0.5 Z-0.1 R0.1
G01 Z-0.5
G01 X0.55
G03 X0.75 Z-0.6 R0.1
G01 Z-0.5
G01 X1.1
N104 G40 X1.2
G97 S1000 M09
G28
M01

T1
G50 S1000
G97 S1000 M03
G96 S300 M08
G00 Z2.05
G00 X0.6 Z0.15
G01 Z0 F0.05
X-0.07 F0.005
G00 X1.1 W0.1
G70 P103 Q104 F0.002
G97 S1000 M09
G00 G28
Reply With Quote

  #5   Ban this user!
Old 10-02-2007, 08:36 AM
 
Join Date: Jul 2005
Location: Canada
Posts: 11,565
Geof will become famous soon enough

Just a quick glance and I have not put it in a machine but your problem could be here.

Notice on the second line down Z-0.5 then further down Z-0.6 followed by Z-0.5 meaning it is trying to back up.

Make this Z -0.6 or -0.7 and see what happens.

G03 X0.5 Z-0.1 R0.1
G01 Z-0.5
G01 X0.55
G03 X0.75 Z-0.6 R0.1
G01 Z-0.5
G01 X1.1
__________________
An open mind is a virtue...so long as all the common sense has not leaked out.
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 10-02-2007, 09:17 AM
1ctoolfool's Avatar  
Join Date: Jan 2004
Location: KY
Posts: 201
1ctoolfool is on a distinguished road
bad code

yes, z should be -1.0 after the 2nd G03 inside the G71, but why is it doing this?

runs fine when I manually change this in the program

do i have something set wrong somewhere or is this a VQC glitch?

thanks
joev
Reply With Quote

  #7   Ban this user!
Old 10-02-2007, 09:37 AM
 
Join Date: Jul 2005
Location: Canada
Posts: 11,565
Geof will become famous soon enough

Originally Posted by 1ctoolfool View Post
... but why is it doing this?....
do i have something set wrong somewhere or is this a VQC glitch?

thanks
joev
These questions I cannot answer. I took one look at VQC, came to the conclusion it was a lot of gobbledy-gook I did not need to know and went straight to G-code. I just have what I call template programs that have the G71 blocks numbered and all I need to do is enter the coordinates for what I am doing. Very quick, simple and I know what I am telling the machine to do and if there is an error I know it is in my entry not coming from someplace that I cannot control.
__________________
An open mind is a virtue...so long as all the common sense has not leaked out.
Reply With Quote

  #8   Ban this user!
Old 10-02-2007, 10:04 AM
 
Join Date: Sep 2007
Location: USA
Posts: 116
SeymourDumore is on a distinguished road

Yup, that Z-move appears bogus.
I'd say it looks to be a simple enough path to draw it in CAD and then pick the dims off of it, so Geof is right on with VQC being a little hokey.
Specially when you're using G42 in the G71 block, you can get exact results every time.
The only thing I'd add though is whenever I use comp inside the rough cycle, I prefer to put it in before the cycle starts and get out of it after. This way I seem to get better tool control in tight spaces such as neck-downs behind threads and such.
Reply With Quote

  #9   Ban this user!
Old 10-02-2007, 10:10 AM
 
Join Date: Jul 2005
Location: Canada
Posts: 11,565
Geof will become famous soon enough

Regarding the G42 inside the G71 block you should check your manual. I know my TL1 ignores tool comp inside the G71 but reads it at the final pass using G70. It is necessary to make the U and W values large enough to cover the tool comp difference.

I found it very handy to sit down at the machine and play with different values and commands in graphics and see what is happening. Because the Haas editor is so easy to use you can write a program then duplicate an entire section below itself. In the duplicated section you do the changes you want to look at and then single block through in graphics. This way you can follow the trace when it is running through the duplicated but altered version of the program and see what is going on and how it differs from the unaltered version. Very useful for getting a handle on tool comp and tool vectors.
__________________
An open mind is a virtue...so long as all the common sense has not leaked out.
Reply With Quote

  #10   Ban this user!
Old 10-02-2007, 04:40 PM
 
Join Date: Sep 2007
Location: USA
Posts: 116
SeymourDumore is on a distinguished road

Geof

I have and SL10 and a MiniLathe. They both work with comp inside the canned cycle, and do so as intended.
One word of caution though, if you're programming realt part dims, and you're working both sides of the tool (such as in the case of the aforementioned neck-down) you do not want to specify a W. It causes overcut in the direction it was specified in. Absolutely fine with front and back tapers, just need to be careful with faces and walls.
But the short story is: G41/42 is functional withing G71 cycles.
Reply With Quote

Sponsored Links
  #11   Ban this user!
Old 10-02-2007, 08:01 PM
1ctoolfool's Avatar  
Join Date: Jan 2004
Location: KY
Posts: 201
1ctoolfool is on a distinguished road
quick code, my error

my entry caused the problem, absolute vs. relative Z depth
I agree quick code is pretty plain,
thanks
joev
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
tl-2 program integrity error and program data error alarm #'s 212 250 need help CNChelp Haas Mills 12 03-14-2010 08:19 PM
Help Help Help Error 367!!!!! DSL PWR Haas Mills 12 07-30-2007 07:08 AM
What is this ERROR? Capt Crunch Mastercam 6 06-02-2007 04:49 AM
help p/s 224 error pwe169 Bridgeport and Hardinge Mills 3 05-24-2007 06:44 AM
I am getting a error now fastolds GibbsCAM 2 08-28-2005 07:18 PM




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