Cycle drilling problem [Decket Dialog 112 - Post Processor]

Cycle drilling problem [Decket Dialog 112 - Post Processor]

Anonymous
Not applicable
574 Views
2 Replies
Message 1 of 3

Cycle drilling problem [Decket Dialog 112 - Post Processor]

Anonymous
Not applicable

Hello HSM PP Forum,

 

Im experiencing a cycle drilling problem with the "Deckel dialog 112" Post Processor, when i drill multiple holes, hole number one drills fine but from number 2 hole it starts to drill the same hole twice..

 

I want to remove these below highlighted RED lines from the code:

 

What to i need to modify in the Post? (I don't have "Manufacturing Post Processor Utility"

 

Hope you can help me, Thanks in advance.. : )

 

O2000
(T1 D=8. CR=0. TAPER=118DEG - ZMIN=-10. - DRILL)
G90 G94 G17
G21
G28 G91 Z0.
G90
N1 M6 T1
S1090 M3
G54
G0 X15. Y-15.
G43 Z15. H1
Z5.
G98 G83 Z-10. R5. Q2. F87.
X-15.
Z-10. R5. Q2. F87.
Y15.
Z-10. R5. Q2. F87.
X15.
Z-10. R5. Q2. F87.
G80
Z15.
G28 G91 Z0.
G90
M33
M30
%

0 Likes
Accepted solutions (1)
575 Views
2 Replies
Replies (2)
Message 2 of 3

bob.schultz
Alumni
Alumni
Accepted solution

It is quite simple to remove the multiple Z...R... blocks from the cycle points.  In the onCyclePoint function add the following two lines.

  if (isFirstCyclePoint()) { // add this line
  switch (cycleType) {
  case "drilling":
...
...
  default:
    expandCyclePoint(x, y, z);
  }
  } // add this line
}


Bob Schultz
Sr. Post Processor Developer

Message 3 of 3

Anonymous
Not applicable

Thank you so much Bob!

That was exactly what I was looking for...👍

0 Likes