Need Help! i need solution... Fanuc 16i-LB


Results 1 to 11 of 11

Thread: i need solution... Fanuc 16i-LB

  1. #1
    Registered
    Join Date
    Apr 2013
    Location
    Turkey
    Posts
    6
    Downloads
    0
    Uploads
    0

    Unhappy i need solution... Fanuc 16i-LB

    Hi Dears,


    I have a problem. Very slow cutting sheet metal thicker than 6 millimeters. There is an error and I can not figure out piercing operation.
    ...
    M98P9997
    ...
    using this macro. I need an alternative to macro for piercing. Please help me. How to write a macro? Is it necessary to make changes in pmc-sb? "Beam on during approach" method, where can I find? is added to the machine I use? Thank you very much!

    Working video:


    Using macro's code:
    Code:
    N309 M98P9020
    N310 M98P9003
    N311 G90
    N312 G68 R#509
    N313 G32P2Q2
    N314 G00X627.27Y214.87
    N315 E001
    N316 E101
    N317 M98P9997
    N318 G01X629.84Y213.67
    N319 G03X629.83Y214.48I-1.19J0.38
    N320 G01X629.76Y214.67
    N321 G03X628.16Y215.42I-1.17J-0.43
    N322 G01X626.92Y214.96
    N323 G03X625.92Y214.6I-0.04J-1.45
    N324 G01X624.68Y214.15
    N325 G03X623.93Y212.55I0.43J-1.17
    N326 G01X624.Y212.36
    N327 G03X625.6Y211.61I1.18J0.43
    N328 G01X626.85Y212.07
    N329 G03X627.84Y212.43I0.03J1.44
    N330 G01X629.08Y212.88
    N331 G03X629.79Y213.53I-0.43J1.17
    N332 G03X628.79Y213.99I-0.5J0.23
    N333 M98P9998
    N334 G00X611.Y194.93
    N335 E003
    N336 E102
    N337 M98P9986
    N338 G01X613.02Y192.91
    N339 G03X603.58Y202.14I-4.78J4.56
    N340 G03X612.91Y192.81I4.66J-4.67


    Similar Threads:


  2. #2
    Gold Member
    Join Date
    Aug 2011
    Location
    Fordaville
    Posts
    2517
    Downloads
    0
    Uploads
    0

    Default

    If sub program 9997 is the piercing macro and you want to change it you need to save it first. It could be locked and not visible in CNC program list. change parameter 3202 bit #4 (NE9) to 0 to unlock 9000-series programs. Then punch out all programs (O-9999 PUNCH) and keep them as a back-up.
    If you need help changing a macro program post the macro program here.



  3. #3
    Registered
    Join Date
    Apr 2013
    Location
    Turkey
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    Thank you for answer first. Save the macro, put it here. Then I'm waiting for your help ...



  4. #4
    Registered
    Join Date
    Apr 2013
    Location
    Turkey
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    Dear fordav11;

    My 9997 macro ;
    Code:
    % 
    O9997(AUTOFOCUS SWITCH ON LASER) 
    G32L2
    G90
    M41
    M71
    #599=[[-100]*[#532+#534]]+600
    #600=#599/1000 
    #601=[[-100]*[#533+#534]]+600
    #602=#601/1000 
    N05IF[#599LT2000]GOTO15
    N10M62 
    N15IF[#599GT0000]GOTO25
    N20M62 
    N25IF[#601LT2000]GOTO35
    N30M62 
    N35IF[#601GT0000]GOTO45
    N40M62 
    N45
    M60
     
    N50WHILE[#1000EQ0]DO1
     
    N65END1
    G13
    G32L2
    G24
    M61
     
    N70WHILE[#1000EQ0]DO2
     
    N80END2
    G13
    G32L1
    M99
    %




  5. #5
    Gold Member
    Join Date
    Aug 2011
    Location
    Fordaville
    Posts
    2517
    Downloads
    0
    Uploads
    0

    Default

    Can you tell us exactly what your problem is? In your first post you say there is an error but not what the error is.
    I'm guessing because the material is thicker that the piercing operation needs to be a longer time.
    The '+600' looks like a constant that is added to a previously set variable in memory. Maybe a timer dwell? Try changing it to 1200 or 2400 and run the program above the material and see if there is any change in the piercing time.
    If yes change 600 to suit your required piercing time. I have no experience with lasers so you will have to work out the time yourself.

    If that doesn't fix it we need to fully understand what the program is doing.
    You need to list the meaning of all of the M codes in that macro. Also #1000 is used and that's a machine-specific Data In (DI) signal. It may be necessary to know what the signal actually is.
    But first a listing of the M codes and non-standard G codes (G13/G24/G32) is needed.

    Last edited by fordav11; 04-15-2013 at 02:24 PM.


  6. #6
    Registered
    Join Date
    Apr 2013
    Location
    Turkey
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by fordav11 View Post
    Can you tell us exactly what your problem is? In your first post you say there is an error but not what the error is.
    I'm guessing because the material is thicker that the piercing operation needs to be a longer time.
    The '+600' looks like a constant that is added to a previously set variable in memory. Maybe a timer dwell? Try changing it to 1200 or 2400 and run the program above the material and see if there is any change in the piercing time.
    If yes change 600 to suit your required piercing time. I have no experience with lasers so you will have to work out the time yourself.

    If that doesn't fix it we need to fully understand what the program is doing.
    You need to list the meaning of all of the M codes in that macro. Also #1000 is used and that's a machine-specific Data In (DI) signal. It may be necessary to know what the signal actually is.
    But first a listing of the M codes and non-standard G codes (G13/G24/G32) is needed.
    G13: arc interpolation with definition of radius ( counter clockwise )
    G24: work area limit lower boundary
    G32 thread cutting, constant pitch



  7. #7
    Gold Member
    Join Date
    Aug 2011
    Location
    Fordaville
    Posts
    2517
    Downloads
    0
    Uploads
    0

    Default

    Really? Thread cutting on a laser machine? WOW!!! Please post the program for that. Thanks!



  8. #8
    Registered
    Join Date
    Apr 2013
    Location
    Turkey
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    Sample Program
    Code:
    %
    O2550
    N200 (NOZZLE 1.0 mm)
    N201 (LENS 5.0'')
    N202 (SHEET PLATE X=1110 Y=960)
    N203 (DATE 02.05.2013 )
    N204 (1.5MM ST 42)
    N205 #532=0 (FOCAL POINT PIERCING)
    N206 #533=0 (FOCAL POINT CUTTING)
    N207 #534=1 (FOCAL POINT OFFSET)
    N208 #535=5.0 (Z FAST PIERC DISPLACEMENT)
    N209 #537=60.0 (Z HEAD UP DISPLACEMENT)
    N210 (--- NORMAL PIERCING E101 ---)
    N211 #6500=1500(POWER)
    N212 #6501=20(FREQUENCY)
    N213 #6502=20(INITIAL DUTY)
    N214 #6503=5(INCREMENT FRQ)
    N215 #6504=5(INCREMENT DUTY)
    N216 #6505=50(STEP TIME)
    N217 #6506=3(STEP COUNT)
    N218 #6507=150(PIERCING TIME)
    N219 #6508=10(ASSIST GAS PRESS)
    N220 #6509=1(GAS TYPE)
    N221 #6510=0(ASSIST GAS SETTING TIME)
    N222 #6511=1000(STANDARD SHIFT DEFL)
    N223 (--- FAST PIERCING E102 ---)
    N224 #6515=2000(POWER)
    N225 #6516=2000(FREQUENCY)
    N226 #6517=100(INITIAL DUTY)
    N227 #6518=0(INCREMENT FRQ)
    N228 #6519=0(INCREMENT DUTY)
    N229 #6520=0(STEP TIME)
    N230 #6521=0(STEP COUNT)
    N231 #6522=100(PIERCING TIME)
    N232 #6523=8(ASSIST GAS PRESS)
    N233 #6524=1(GAS TYPE)
    N234 #6525=0(ASSIST GAS SETTING TIME)
    N235 #6526=1000(STANDARD SHIFT DEFL)
    N236 (--- SLOW CUTTING E001 ---)
    N237 #6300=2000(FEEDRATE)
    N238 #6301=1600(POWER)
    N239 #6302=1000(FREQUENCY)
    N240 #6303=40(DUTY)
    N241 #6304=10(ASSIST GAS PRESS)
    N242 #6305=1(GAS TYPE)
    N243 #6306=0(ASSIST GAS SETTING TIME)
    N244 #6307=1000(STANDARD SHIFT DEF)
    N245 #6308=0(CUTTER COMPENSATION)
    N246 #6309=0(EDGE)
    N247 #6310=0(STARTUP)
    N248 #6311=0(POWER CONTROL)
    N249 (--- MEDIUM CUTTING E002 ---)
    N250 #6315=4500(FEEDRATE)
    N251 #6316=1600(POWER)
    N252 #6317=1500(FREQUENCY)
    N253 #6318=75(DUTY)
    N254 #6319=10(ASSIST GAS PRESS)
    N255 #6320=1(GAS TYPE)
    N256 #6321=0(ASSIST GAS SETTING TIME)
    N257 #6322=1000(STANDARD SHIFT DEF)
    N258 #6323=0(CUTTER COMPENSATION)
    N259 #6324=0(EDGE)
    N260 #6325=0(STARTUP)
    N261 #6326=0(POWER CONTROL)
    N262 (--- FAST CUTTING E003 ---)
    N263 #6330=6200(FEEDRATE)
    N264 #6331=1600(POWER)
    N265 #6332=2000(FREQUENCY)
    N266 #6333=100(DUTY)
    N267 #6334=15(ASSIST GAS PRESS)
    N268 #6335=1(GAS TYPE)
    N269 #6336=0(ASSIST GAS SETTING TIME)
    N270 #6337=1000(STANDARD SHIFT DEF)
    N271 #6338=0(CUTTER COMPENSATION)
    N272 #6339=0(EDGE)
    N273 #6340=0(STARTUP)
    N274 #6341=0(POWER CONTROL)
    N275 (--- MARKING E010 ---)
    N276 #6435=5000(FEEDRATE)
    N277 #6436=1500(POWER)
    N278 #6437=2000(FREQUENCY)
    N279 #6438=20(DUTY)
    N280 #6439=10(ASSIST GAS PRESS)
    N281 #6440=1(GAS TYPE)
    N282 #6441=3(ASSIST GAS SETTING TIME)
    N283 #6442=1000(STANDARD SHIFT DEF)
    N284 #6443=0(CUTTER COMPENSATION)
    N285 #6444=0(EDGE)
    N286 #6445=0(STARTUP)
    N287 #6446=0(POWER CONTROL)
    N288 (--- GENERAL EDGE/START-UP E201 ---)
    N289 #6700=0(ANGLE)
    N290 #6701=1000(PIERCING POWER)
    N291 #6702=500(PIERCING FREQUENCY)
    N292 #6703=10(PIERCING DUTY)
    N293 #6704=100(PIERCING TIME)
    N294 #6705=15(PIERCING ASSIST GAS PRESS)
    N295 #6706=1(PIERCING ASSIST GAS TYPE)
    N296 #6707=500(RETURN DISTANCE)
    N297 #6708=1600(RETURN FEEDRATE)
    N298 #6709=1000(RETURN FREQUENCY)
    N299 #6710=40(RETURN DUTY)
    N300 #6711=1000(TRACING DISPLACEMENT)
    N301 (--- POWER CONTROL E901 ---)
    N302 #6550=750(MIN POWER)
    N303 #6551=750(ZERO POWER)
    N304 #6552=750(MIN FREQUENCY)
    N305 #6553=750(ZERO FREQUENCY)
    N306 #6554=60(MIN DUTY)
    N307 #6555=60(ZERO DUTY)
    N308 #6556=20(ALLOWABLE VARIATION IN FEEDRATE)
    N309 M98 P9020
    N310 G90G92X0.Y0.Z0.
    N311 G32P1Q1
    N312 M98P9003
    N313 G90
    N314 G68 R#509
    N315 G00X26.29Y13.73
    N316 E002
    N317 M98P9981
    N318  
    N319 G01X28.31Y11.7
    N320 G02X22.79Y17.41I-2.71J2.9
    N321 G02X28.41Y11.79I2.81J-2.81
    N322  
    N323  
    N324 G00X38.56Y12.66
    N325 
    N326 E002
    N327 M98P9981
    N328  
    N329 G01X40.41Y10.81
    N330 G02X36.8Y14.6I-1.76J1.94
    N331 G02X40.5Y10.9I1.85J-1.85
    N332  
    N333  
    N334 G00X63.42Y27.3
    N335 
    N336 E002
    N337 M98P9981
    N338  
    N339 G01X65.44Y25.27
    N340 G02X60.06Y30.84I-2.64J2.83
    N341 G02X65.54Y25.36I2.74J-2.74
    N342  
    N343  
    N344 G00X87.26Y12.66
    N345 
    N346 E002
    N347 M98P9981
    N348  
    N349 G01X89.11Y10.81
    N350 G02X85.5Y14.6I-1.76J1.94
    N351 G02X89.2Y10.9I1.85J-1.85
    N352  
    N353  
    N354 G00X101.09Y13.73
    N355 
    N356 E002
    N357 M98P9981
    N358  
    N359 G01X103.11Y11.7
    N360 G02X97.59Y17.41I-2.71J2.9
    N361 G02X103.21Y11.79I2.81J-2.81
    N362  
    N363  
    N364 G00X116.97Y16.59
    N365 
    N366 E003
    N367 M98P9981
    N368  
    N369 G01X119.09Y18.71
    N370 G01X121.13Y20.75
    N371 G01X121.13Y34.85
    N372 G01X119.05Y36.93
    N373 G01X109.63Y36.93
    N374 G01X109.63Y38.13
    N375 G01X93.37Y38.13
    N376 G01X93.37Y17.13
    N377 G01X69.03Y17.13
    N378 G01X69.03Y34.63
    N379 G01X56.67Y34.63
    N380 G01X56.67Y17.13
    N381 G01X32.63Y17.13
    N382 G01X32.63Y38.13
    N383 G01X16.37Y38.13
    N384 G01X16.37Y36.93
    N385 G01X6.95Y36.93
    N386 G01X4.87Y34.85
    N387 G01X4.87Y20.75
    N388 G01X6.95Y18.67
    N389 G01X16.37Y18.67
    N390 G01X16.37Y16.93
    N391 G01X13.37Y16.93
    N392 G01X13.37Y4.87
    N393 G01X112.63Y4.87
    N394 G01X112.63Y17.13
    N395 G01X109.63Y17.13
    N396 G01X109.63Y18.67
    N397 G01X119.Y18.67
    N398 G01X122.Y18.67
    N399 M01
    N400  
    N401  
    N402 G00X146.29Y13.73
    N403 
    N404 E002
    N405 M98P9981
    N406  
    N407 G01X148.31Y11.7
    N408 G02X142.79Y17.41I-2.71J2.9
    N409 G02X148.41Y11.79I2.81J-2.81
    N410  
    N411  
    N412 G00X158.56Y12.66
    N413 
    N414 E002
    N415 M98P9981
    N416  
    N417 G01X160.41Y10.81
    N418 G02X156.8Y14.6I-1.76J1.94
    N419 G02X160.5Y10.9I1.85J-1.85
    N420  
    N421  
    N422 G00X183.42Y27.3
    N423 
    N424 E002
    N425 M98P9981
    N426  
    N427 G01X185.44Y25.27
    N428 G02X180.06Y30.84I-2.64J2.83
    N429 G02X185.54Y25.36I2.74J-2.74
    N430  
    N431  
    N432 G00X207.26Y12.66
    N433 
    N434 E002
    N435 M98P9981
    N436  
    N437 G01X209.11Y10.81
    N438 G02X205.5Y14.6I-1.76J1.94
    N439 G02X209.2Y10.9I1.85J-1.85
    N440  
    N441  
    N442 G00X221.09Y13.73
    N443 
    N444 E002
    N445 M98P9981
    N446  
    N447 G01X223.11Y11.7
    N448 G02X217.59Y17.41I-2.71J2.9
    N449 G02X223.21Y11.79I2.81J-2.81
    N450  
    N451  
    N452 G00X236.97Y16.59
    N453 
    N454 E003
    N455 M98P9981
    N456  
    N457 G01X239.09Y18.71
    N458 G01X241.13Y20.75
    N459 G01X241.13Y34.85
    N460 G01X239.05Y36.93
    N461 G01X229.63Y36.93
    N462 G01X229.63Y38.13
    N463 G01X213.37Y38.13
    N464 G01X213.37Y17.13
    N465 G01X189.03Y17.13
    N466 G01X189.03Y34.63
    N467 G01X176.67Y34.63
    N468 G01X176.67Y17.13
    N469 G01X152.63Y17.13
    N470 G01X152.63Y38.13
    N471 G01X136.37Y38.13
    N472 G01X136.37Y36.93
    N473 G01X126.95Y36.93
    N474 G01X124.87Y34.85
    N475 G01X124.87Y20.75
    N476 G01X126.95Y18.67
    N477 G01X136.37Y18.67
    N478 G01X136.37Y16.93
    N479 G01X133.37Y16.93
    N480 G01X133.37Y4.87
    N481 G01X232.63Y4.87
    N482 G01X232.63Y17.13
    N483 G01X229.63Y17.13
    N484 G01X229.63Y18.67
    N485 G01X239.Y18.67
    N486 G01X242.Y18.67
    N487 M01
    N488  
    N489  
    N490 G00X266.79Y13.73
    N491 
    N492 E002
    N493 M98P9981
    N494  
    N495 G01X268.81Y11.7
    N496 G02X263.29Y17.41I-2.71J2.9
    N497 G02X268.91Y11.79I2.81J-2.81
    N498  
    N499  
    N500 G00X279.06Y12.66
    N501 
    N502 E002
    N503 M98P9981
    N504  
    N505 G01X280.91Y10.81
    N506 G02X277.3Y14.6I-1.76J1.94
    N507 G02X281.Y10.9I1.85J-1.85
    N508  
    N509  
    N510 G00X303.92Y27.3
    N511 
    N512 E002
    N513 M98P9981
    N514  
    N515 G01X305.94Y25.27
    N516 G02X300.56Y30.84I-2.64J2.83
    N517 G02X306.04Y25.36I2.74J-2.74
    N518  
    N519  
    N520 G00X327.76Y12.66
    N521 
    N522 E002
    N523 M98P9981
    N524  
    N525 G01X329.61Y10.81
    N526 G02X326.Y14.6I-1.76J1.94
    N527 G02X329.7Y10.9I1.85J-1.85
    N528  
    N529  
    N530 G00X341.59Y13.73
    N531 
    N532 E002
    N533 M98P9981
    N534  
    N535 G01X343.61Y11.7
    N536 G02X338.09Y17.41I-2.71J2.9
    N537 G02X343.71Y11.79I2.81J-2.81
    N538  
    N539  
    N540 G00X357.47Y16.59
    N541 
    N542 E003
    N543 M98P9981
    N544  
    N545 G01X359.59Y18.71
    N546 G01X361.63Y20.75
    N547 G01X361.63Y34.85
    N548 G01X359.55Y36.93
    N549 G01X350.13Y36.93
    N550 G01X350.13Y38.13
    N551 G01X333.87Y38.13
    N552 G01X333.87Y17.13
    N553 G01X309.53Y17.13
    N554 G01X309.53Y34.63
    N555 G01X297.17Y34.63
    N556 G01X297.17Y17.13
    N557 G01X273.13Y17.13
    N558 G01X273.13Y38.13
    N559 G01X256.87Y38.13
    N560 G01X256.87Y36.93
    N561 G01X247.45Y36.93
    N562 G01X245.37Y34.85
    N563 G01X245.37Y20.75
    N564 G01X247.45Y18.67
    N565 G01X256.87Y18.67
    N566 G01X256.87Y16.93
    N567 G01X253.87Y16.93
    N568 G01X253.87Y4.87
    N569 G01X353.13Y4.87
    N570 G01X353.13Y17.13
    N571 G01X350.13Y17.13
    N572 G01X350.13Y18.67
    N573 G01X359.5Y18.67
    N574 G01X362.5Y18.67
    N575 M01
    N576  
    N577  
    N578 G00X386.79Y13.73
    N579 
    N580 E002
    N581 M98P9981
    N582  
    N583 G01X388.81Y11.7
    N584 G02X383.29Y17.41I-2.71J2.9
    N585 G02X388.91Y11.79I2.81J-2.81
    N586  
    N587  
    N588 G00X399.06Y12.66
    N589 
    N590 E002
    N591 M98P9981
    N592  
    N593 G01X400.91Y10.81
    N594 G02X397.3Y14.6I-1.76J1.94
    N595 G02X401.Y10.9I1.85J-1.85
    N596  
    N597  
    N598 G00X423.92Y27.3
    N599 
    N600 E002
    N601 M98P9981
    N602  
    N603 G01X425.94Y25.27
    N604 G02X420.56Y30.84I-2.64J2.83
    N605 G02X426.04Y25.36I2.74J-2.74
    N606  
    N607  
    N608 G00X447.76Y12.66
    N609 
    N610 E002
    N611 M98P9981
    N612  
    N613 G01X449.61Y10.81
    N614 G02X446.Y14.6I-1.76J1.94
    N615 G02X449.7Y10.9I1.85J-1.85
    N616  
    N617  
    N618 G00X461.59Y13.73
    N619 
    N620 E002
    N621 M98P9981
    N622  
    N623 G01X463.61Y11.7
    N624 G02X458.09Y17.41I-2.71J2.9
    N625 G02X463.71Y11.79I2.81J-2.81
    N626  
    N627  
    N628 G00X477.47Y16.59
    N629 
    N630 E003
    N631 M98P9981
    N632  
    N633 G01X479.59Y18.71
    N634 G01X481.63Y20.75
    N635 G01X481.63Y34.85
    N636 G01X479.55Y36.93
    N637 G01X470.13Y36.93
    N638 G01X470.13Y38.13
    N639 G01X453.87Y38.13
    N640 G01X453.87Y17.13
    N641 G01X429.53Y17.13
    N642 G01X429.53Y34.63
    N643 G01X417.17Y34.63
    N644 G01X417.17Y17.13
    N645 G01X393.13Y17.13
    N646 G01X393.13Y38.13
    N647 G01X376.87Y38.13
    N648 G01X376.87Y36.93
    N649 G01X367.45Y36.93
    N650 G01X365.37Y34.85
    N651 G01X365.37Y20.75
    N652 G01X367.45Y18.67
    N653 G01X376.87Y18.67
    N654 G01X376.87Y16.93
    N655 G01X373.87Y16.93
    N656 G01X373.87Y4.87
    N657 G01X473.13Y4.87
    N658 G01X473.13Y17.13
    N659 G01X470.13Y17.13
    N660 G01X470.13Y18.67
    N661 G01X479.5Y18.67
    N662 G01X482.5Y18.67
    N663 M01
    N664  
    N665  
    N666 G00X549.83Y32.02
    N667 
    N668 E002
    N669 M98P9981
    N670  
    N671 G01X551.86Y29.99
    N672 G02X547.54Y34.49I-2.11J2.3
    N673 G02X551.96Y30.08I2.21J-2.2
    N674  
    N675  
    N676 G00X576.1Y51.69
    N677 
    N678 E002
    N679 M98P9981
    N680  
    N681 G01X578.13Y49.66
    N682 G02X572.18Y55.79I-2.93J3.11
    N683 G02X578.22Y49.75I3.02J-3.02
    N684  
    N685  
    N686 G00X599.83Y32.02
    N687 
    N688 E002
    N689 M98P9981
    N690  
    N691 G01X601.86Y29.99
    N692 G02X597.54Y34.49I-2.11J2.3
    N693 G02X601.96Y30.08I2.21J-2.2
    N694  
    N695  
    N696 G00X576.1Y10.72
    N697 
    N698 E002
    N699 M98P9981
    N700  
    N701 G01X578.13Y8.69
    N702 G02X572.18Y14.82I-2.93J3.11
    N703 G02X578.22Y8.78I3.02J-3.02
    N704  
    N705  
    N706 G00X640.63Y32.02
    N707 
    N708 E002
    N709 M98P9981
    N710  
    N711 G01X642.66Y29.99
    N712 G02X638.34Y34.49I-2.11J2.3
    N713 G02X642.76Y30.08I2.21J-2.2
    N714  
    N715  
    N716 G00X690.53Y32.02
    N717 
    N718 E002
    N719 M98P9981
    N720  
    N721 G01X692.56Y29.99
    N722 G02X688.24Y34.49I-2.11J2.3
    N723 G02X692.66Y30.08I2.21J-2.2
    N724  
    N725  
    N726 G00X718.Y59.7
    N727 
    N728 E003
    N729 M98P9981
    N730  
    N731 G01X715.Y59.7
    N732 G01X524.87Y59.7
    N733 G01X524.87Y4.87
    N734 G01X715.13Y4.87
    N735 G01X715.13Y59.57
    N736 G01X715.13Y62.57
    N737 M01
    N738  
    N739  
    N740 G00X744.43Y32.02
    N741 
    N742 E002
    N743 M98P9981
    N744  
    N745 G01X746.46Y29.99
    N746 G02X742.14Y34.49I-2.11J2.3
    N747 G02X746.56Y30.08I2.21J-2.2
    N748  
    N749  
    N750 G00X770.7Y51.69
    N751 
    N752 E002
    N753 M98P9981
    N754  
    N755 G01X772.73Y49.66
    N756 G02X766.78Y55.79I-2.93J3.11
    N757 G02X772.82Y49.75I3.02J-3.02
    N758  
    N759  
    N760 G00X794.43Y32.02
    N761 
    N762 E002
    N763 M98P9981
    N764  
    N765 G01X796.46Y29.99
    N766 G02X792.14Y34.49I-2.11J2.3
    N767 G02X796.56Y30.08I2.21J-2.2
    N768  
    N769  
    N770 G00X770.7Y10.72
    N771 
    N772 E002
    N773 M98P9981
    N774  
    N775 G01X772.73Y8.69
    N776 G02X766.78Y14.82I-2.93J3.11
    N777 G02X772.82Y8.78I3.02J-3.02
    N778  
    N779  
    N780 G00X835.23Y32.02
    N781 
    N782 E002
    N783 M98P9981
    N784  
    N785 G01X837.26Y29.99
    N786 G02X832.94Y34.49I-2.11J2.3
    N787 G02X837.36Y30.08I2.21J-2.2
    N788  
    N789  
    N790 G00X885.13Y32.02
    N791 
    N792 E002
    N793 M98P9981
    N794  
    N795 G01X887.16Y29.99
    N796 G02X882.84Y34.49I-2.11J2.3
    N797 G02X887.26Y30.08I2.21J-2.2
    N798  
    N799  
    N800 G00X912.6Y59.7
    N801 
    N802 E003
    N803 M98P9981
    N804  
    N805 G01X909.6Y59.7
    N806 G01X719.47Y59.7
    N807 G01X719.47Y4.87
    N808 G01X909.73Y4.87
    N809 G01X909.73Y59.57
    N810 G01X909.73Y62.57
    N811 M01
    N812  
    N813  
    N814 G00X938.43Y32.02
    N815 
    N816 E002
    N817 M98P9981
    N818  
    N819 G01X940.46Y29.99
    N820 G02X936.14Y34.49I-2.11J2.3
    N821 G02X940.56Y30.08I2.21J-2.2
    N822  
    N823  
    N824 G00X964.7Y51.69
    N825 
    N826 E002
    N827 M98P9981
    N828  
    N829 G01X966.73Y49.66
    N830 G02X960.78Y55.79I-2.93J3.11
    N831 G02X966.82Y49.75I3.02J-3.02
    N832  
    N833  
    N834 G00X988.43Y32.02
    N835 
    N836 E002
    N837 M98P9981
    N838  
    N839 G01X990.46Y29.99
    N840 G02X986.14Y34.49I-2.11J2.3
    N841 G02X990.56Y30.08I2.21J-2.2
    N842  
    N843  
    N844 G00X964.7Y10.72
    N845 
    N846 E002
    N847 M98P9981
    N848  
    N849 G01X966.73Y8.69
    N850 G02X960.78Y14.82I-2.93J3.11
    N851 G02X966.82Y8.78I3.02J-3.02
    N852  
    N853  
    N854 G00X1029.23Y32.02
    N855 
    N856 E002
    N857 M98P9981
    N858  
    N859 G01X1031.26Y29.99
    N860 G02X1026.94Y34.49I-2.11J2.3
    N861 G02X1031.36Y30.08I2.21J-2.2
    N862  
    N863  
    N864 G00X1079.13Y32.02
    N865 
    N866 E002
    N867 M98P9981
    N868  
    N869 G01X1081.16Y29.99
    N870 G02X1076.84Y34.49I-2.11J2.3
    N871 G02X1081.26Y30.08I2.21J-2.2
    N872  
    N873  
    N874 G00X1060.21Y62.57
    N875 
    N876 E003
    N877 M98P9981
    N878  
    N879 G01X1060.21Y59.7
    N880 G01X913.47Y59.7
    N881 G01X913.47Y4.87
    N882 G01X1103.73Y4.87
    N883 G01X1103.73Y59.7
    N884 G01X1060.34Y59.7
    N885 M01
    N886  
    N887  
    N888 G00X10.Y64.57
    N889 
    N890 E003
    N891 M98P9981
    N892  
    N893 M98P9600
    N894 G01X1100.Y64.57
    N895 M98P9601
    N896 M98P9988
    N897 M98P9980
    N898  
    N899 M98 P9021
    N900 M30
    %




  9. #9
    Gold Member
    Join Date
    Aug 2011
    Location
    Fordaville
    Posts
    2517
    Downloads
    0
    Uploads
    0

    Default

    G32 is a lathe G-code for screw-cutting threads.
    The use of G32 in that program is NOT for thread cutting. You can not cut threads on a laser so it must be used for something else.



  10. #10
    Member
    Join Date
    Sep 2010
    Location
    Australia
    Posts
    1230
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by ahmetsakar View Post
    Sample Program
    %
    N301 (--- POWER CONTROL E901 ---)
    N302 #6550=750(MIN POWER)
    N303 #6551=750(ZERO POWER)
    N304 #6552=750(MIN FREQUENCY)
    N305 #6553=750(ZERO FREQUENCY)
    N306 #6554=60(MIN DUTY)
    N307 #6555=60(ZERO DUTY)
    N308 #6556=20(ALLOWABLE VARIATION IN FEEDRATE)
    N309 M98 P9020
    N310 G90G92X0.Y0.Z0.
    N311 G32P1Q1
    N312 M98P9003
    N313 G90
    N314 G68 R#509
    The G32 in your program is related to the Shutter, Gas Type and Gas Flow Pattern

    P Specifies the Assist Gas Type
    Q Specifies the Gas Flow Pattern

    Regards,

    Bill



  11. #11
    Registered
    Join Date
    Apr 2013
    Location
    Turkey
    Posts
    6
    Downloads
    0
    Uploads
    0

    Default

    I do not know. I'm new at this. in this way the machine documents says. Thanks



Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


About CNCzone.com

    We are the largest and most active discussion forum for manufacturing industry. The site is 100% free to join and use, so join today!

Follow us on


Our Brands

i need solution... Fanuc 16i-LB

i need solution... Fanuc 16i-LB