586,946 active members*
2,640 visitors online*
Register for free
Login
Results 1 to 20 of 56

Hybrid View

  1. #1
    Join Date
    Dec 2015
    Posts
    111

    Re: FED UP with UCCNC

    Here is the actual code with all the irrelevant stuff removed. There are actually three areas that were not read by the UCCNC. N05, N06, N54682, N54683, N59740, N59740. Each of those areas go back to what has been discussed in this thread. However if there appears to be another reason than already discussed this may help to identify any other issue causing UCCNC not reading it. I did notice in job4 that the G90, G54, and the G43 where not used. With job4 i did not change out the tool, i just changed the depth of the start point.

    (BEGIN PREDATOR NC HEADER)
    (MACH_FILE=HAAS - 3XVMILL.MCH)
    (MTOOL T1 S7 D.5625 H2.25 A60. C0. DIAM_OFFSET 1 = .2813)
    (MTOOL T2 S2 D.25 H2.5 A0. C.125 DIAM_OFFSET 2 = .125)
    (MTOOL T3 S2 D.125 H2. A0. C.0625 DIAM_OFFSET 3 = .0625)
    (SBOX X0. Y-7.75 Z-.75 L6.25 W7.75 H.75)
    (END PREDATOR NC HEADER)

    %
    O100
    (PROGRAM NUMBER)
    (PROGRAM NAME - BORDER AND CROSS.NC)
    (POST - MACH 3 MILL NO ATC)
    (DATE - SAT. 03/05/2016)
    (TIME - 08:05AM)
    N01 G20 G40 G49 G54 G80 G90 G91.1
    N02 G53 Z0.
    (JOB 1 V-CARVING)
    (FEATURE V-CARVE)
    N03 T1 M6
    N04 S1113 M03
    N05 G00 G90 G54 X2.3612 Y-6.2963
    N06 G43 H1 Z.1
    N07 G01 Z-.0552 F20.
    N08 X2.36 Y-6.2974 Z-.0531 F24.
    N54674 X4.4949 Y-3.2581 Z0.
    N54675 G00 Z.1
    N54676 M05
    N54677 G53 Z0.
    N54678 G53 X0. Y0.
    N54679 M00
    (JOB 2 ZLEVEL ROUGH)
    (FEATURE Z-LEVEL ROUGH)
    N54680 T2 M6
    N54681 S5011 M03
    N54682 G90 G54 X4.6743 Y-2.4774
    N54683 G43 H2 Z.1 M08
    N54684 G00 Z.12
    N54685 G01 Z-.0302 F40.
    N54686 X4.6761 Y-2.4821
    N59729 X3.1597 Y-1.1017
    N59730 X3.1253
    N59731 G00 Z.12
    N59732 Z.1
    N59733 M09
    N59734 M05
    N59735 G53 Z0.
    N59736 G53 X0. Y0.
    N59737 M00
    (JOB 3 ZLEVEL FINISH)
    (FEATURE Z-LEVEL UPPER FINISH)
    N59738 T3 M6
    N59739 S10000 M03
    N59740 G90 G54 X4.5853 Y-2.9421
    N59741 G43 H3 Z.1
    N59742 G01 Z-.0002 F40.
    N59743 Y-3.3424 F48.
    N59744 X4.5849 Y-3.3455
    N141930 X1.889 Y-2.001
    N141931 X1.8793 Y-2.0008
    N141932 X1.8683 Y-2.0167
    N141933 G00 Z.1
    (JOB 4 ZLEVEL FINISH)
    (FEATURE Z-LEVEL FINISH)
    N141934 S10000
    N141935 X1.6427 Y-2.3614
    N141936 G01 Z-.3002 F40.
    N194186 X2.4956 Y-1.563
    N194187 X2.4831 Y-1.5693
    N194188 G00 Z.1
    N194189 M05
    N194190 G53 Z0.
    N194191 G53 X0 Y0.

    (END OF PROGRAM)

    N194192 M30
    %

  2. #2
    Join Date
    Jan 2005
    Posts
    15362

    Re: FED UP with UCCNC

    [QUOTE=jcarpenter2;1846244]Here is the actual code with all the irrelevant stuff removed. There are actually three areas that were not read by the UCCNC. N05, N06, N54682, N54683, N59740, N59740. Each of those areas go back to what has been discussed in this thread. However if there appears to be another reason than already discussed this may help to identify any other issue causing UCCNC not reading it. I did notice in job4 that the G90, G54, and the G43 where not used. With job4 i did not change out the tool, i just changed the depth of the start point.[QUOTE]

    Try this you have to make changes to your post processor to correct these lines of code, they are not correct
    %
    O100
    N01 G20 G40 G49 G80 G90 G91.1 ( Removed the G54 this is no place for it)
    N02 G0 Z0. (Removed the G53 some controls will not run this )
    G54 ( Can be anywhere but on a line by it's self )
    N03 T1 M6
    N04 S1113 M03
    N05 G00 G90 X2.3612 Y-6.2963 (Removed the G54 from this line )
    N06 G43 H1 Z.1
    N07 G01 Z-.0552 F20.
    N08 X2.36 Y-6.2974 Z-.0531 F24.
    N54674 X4.4949 Y-3.2581 Z0.
    N54675 G00 Z.1
    N54676 M05
    N54677 G53 Z0.
    N54678 G53 X0. Y0.
    N54679 M00
    (JOB 2 ZLEVEL ROUGH)
    (FEATURE Z-LEVEL ROUGH)
    N54680 T2 M6
    G54
    N54681 S5011 M03
    N54682 G90 X4.6743 Y-2.4774 (You have no action in this line you would need a G0 or a G1 Etc )
    N54683 G43 H2 Z.1 M08
    N54684 G00 Z.12
    N54685 G01 Z-.0302 F40.
    N54686 X4.6761 Y-2.4821
    N59729 X3.1597 Y-1.1017
    N59730 X3.1253
    N59731 G00 Z.12
    N59732 Z.1
    N59733 M09
    N59734 M05
    N59735 G53 Z0.
    N59736 G53 X0. Y0.
    N59737 M00
    (JOB 3 ZLEVEL FINISH)
    (FEATURE Z-LEVEL UPPER FINISH)
    N59738 T3 M6
    G54
    N59739 S10000 M03
    N59740 G90 X4.5853 Y-2.9421 (You have no action in this line you would need a G0 or a G1 Etc )
    N59741 G43 H3 Z.1
    N59742 G01 Z-.0002 F40.
    N59743 Y-3.3424 F48.
    N59744 X4.5849 Y-3.3455
    N141930 X1.889 Y-2.001
    N141931 X1.8793 Y-2.0008
    N141932 X1.8683 Y-2.0167
    N141933 G00 Z.1
    (JOB 4 ZLEVEL FINISH)
    (FEATURE Z-LEVEL FINISH)
    N141934 S10000
    N141935 X1.6427 Y-2.3614
    N141936 G01 Z-.3002 F40.
    N194186 X2.4956 Y-1.563
    N194187 X2.4831 Y-1.5693
    N194188 G00 Z.1
    N194189 M05
    N194190 G53 Z0.
    N194191 G53 X0 Y0.
    N194192 M30
    %
    Mactec54

Similar Threads

  1. UCcnc CAM
    By vmax549 in forum UCCNC Control Software
    Replies: 4
    Last Post: 09-16-2016, 04:19 PM
  2. UCCNC and arcs
    By jcarpenter2 in forum UCCNC Control Software
    Replies: 30
    Last Post: 02-28-2016, 11:11 PM
  3. UCCNC & UC300
    By camivic in forum UCCNC Control Software
    Replies: 2
    Last Post: 10-27-2015, 08:45 PM
  4. UCCNC Wizards (;-)
    By vmax549 in forum UCCNC Control Software
    Replies: 6
    Last Post: 09-20-2015, 02:35 AM
  5. Has anyone really used UCCNC?
    By greggv in forum UCCNC Control Software
    Replies: 3
    Last Post: 08-16-2015, 10:45 AM

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
  •