We just upgraded to V22 from an older version and I have a few questions on the out put. We have a Haas TM2 and a couple of Techno routers that we program for. One of the things I have to program for the routers is to cut a center hole out of a block plastic. So when I do this in V22 I get the following code.
Now first thing I don't like is that it does a sub prgram for the cut. Is there a way to get it to not use the sub program when posting and just put the code for the cut in the main program?%
O100 (BOBCAD1.NC)
N01 (TUE. 02/19/2008 09:39AM)
N02 ( TECHNO )
N03 ( T1 ENDMILL ROUGH , Diameter = .3125 , Length = 5.)
N04 G17 G20 G49 G54 G80 G90
N05 (JOB 1 CONTOUR)
N06 (TOOL #1 0.3125 ENDMILL ROUGH)
N07 T1 M06
N08 S5000 M03
N09 G00 X-2.8438 Y0.
N10 G43 H1 Z.1
N11 M08
N12 G01 X0. Z-.375 F40.
N13 M98 P10 ( SUBPROGRAM CALL )
N14 G00 X0. Z.1
N15 M09
N16 M05
N17 M30
%
O10 (SUBPROGRAM OF O100)
G03 X-2.8438 Y0. I2.8438 J0. F60.
G01 X0. Z-.75 F40.
G03 X-2.8438 Y0. I0. J0. F60.
G01 X0. Z-1.125 F40.
G03 X-2.8438 Y0. I0. J0. F60.
M99 ( SUBPROGRAM RETURN )
Also, we generally use a G02 instead of the G03 when cutting circles in plastic so we can go clockwise and pull the cutter into the material. Is there a way to get it to go the oppsite direction?
So basically when I cut the 6" diameter hole I would like to se the following from the post
Anyone know how to get it to do this? Thanks%
O100 (BOBCAD1.NC)
N01 (TUE. 02/19/2008 09:39AM)
N02 ( TECHNO )
N03 ( T1 ENDMILL ROUGH , Diameter = .3125 , Length = 5.)
N04 G17 G20 G49 G54 G80 G90
N05 (JOB 1 CONTOUR)
N06 (TOOL #1 0.3125 ENDMILL ROUGH)
N07 T1 M06
N08 S5000 M03
N09 G00 X-2.8438 Y0.
N10 G43 H1 Z.1
N11 M08
N12 G01 X0. Z-.375 F40.
G02 X-2.8438 Y0. I2.8438 J0. F60.
G01 X0. Z-.75 F40.
G02 X-2.8438 Y0. I0. J0. F60.
G01 X0. Z-1.125 F40.
G02 X-2.8438 Y0. I0. J0. F60.
N14 G00 X0. Z.1
N15 M09
N16 M05
N17 M30
%