Programming example

Programing Example

prg_example

Mill rectangular pocket

 

T8 D8                        ( Tool data )

M6                           ( Tool change )

 

 

G54 G90 S6000 M03 F5000      ( Technology data )

 

#VAR

  ; input parameters:

  V.L.SurfacePosition  = 0   ( Z position of workpiece surface )

  V.L.RetractionPlane  = 50  ( Z position of retraction plane )

  V.L.SafetyClearance  = 2   ( relative value of safety clearance in Z )

  V.L.DepthOfPocket    = 12  ( depth of pocket )

  V.L.MaxIncrementZ    = 4   ( maximum infeed in Z )

  V.L.MaxIncrementXY   = V.G.WZ_AKT.R ( maximum infeed in XY )

  V.L.FeedRateZ        = 1000         ( plunging feed rate )

  V.L.PocketWidth      = 20           ( width of the pocket )

  V.L.PocketLength     = 20  ( length of the pocket )

#ENDVAR

 

 

G00 Z60

G00 X50 Y50                  ( Positioning to the starting point )

 

; polynomial contouring for smooth movements

#CONTOUR MODE [DEV, PATH_DEV = V.G.WZ_AKT.R / 100]

G261

 

L CYCLE [NAME=SysMillRectangularPocket.ecy  \

    @P1  = V.L.SurfacePosition              \

    @P2  = V.L.RetractionPlane              \

    @P3  = V.L.SafetyClearance              \

    @P4  = V.L.DepthOfPocket                \

    @P5  = V.L.MaxIncrementZ                \

    @P6  = V.L.MaxIncrementXY               \

    @P21 = V.L.FeedRateZ                    \

    @P31 = "Roughing"                       \

    @P72 = V.L.PocketLength                 \

    @P73 = V.L.PocketWidth                  \

    ]

 

G260

M05

M30