All pastes #781660 Raw Edit

Stuff

public text v1 · immutable
#781660 ·published 2007-11-18 23:12 UTC
rendered paste body
%
(11-18-07 small c-clamp 1 inch deep X .6 inch wide throat )

(Mount blank 3/8 X 1.5 tall steel workpiece vertically in vise)

(With 1+ inch sticking up. TP cuts vertically downward in rectangular )

(loop .01 inch per pass. 25 IPM and .01 per pass works well for steel.)
(TP length 2.85 Inches. At 25 IPM = .4167 IPS Est time is)
(6.84 seconds / pass, X 100 passes  = 684 sec=11.4 minutes.)

(left front corner is 0,0)
(Touch x left, y front, z top)

(tool radius)
( var$RADIUS$ #1 )

(corners of tool path)
( var$X1$ #2 )
( var$X2$ #3 )
( var$Y1$ #4 )
( var$Y2$ #5 )
( var$X0$ #6 )
( var$Y0$ #7 )
( var$Z0$ #8 )
( var$MAX_DEPTH$ #9 )
( var$ZINC$ #10 )
( var$LOOPZ$ #11 )
( var$SAFEZ$ #12 )

#1 = 0.1875
#12=1.0

#2=0.5875
#3=0.8125
#4=-0.4
#5=0.8
#9=-1.0
#10=0.01

G92 Z0 X[0-#1] Y[0-#1]

G00 Z #12

G00 X #2 Y #4
G00 Z 0.0000

(start cutting donward in rectangular path)
#11 =0.0000
O101 while [#11 gt #9]
   #11=#11-#10
   G00 Z #11
   G01 X #2 Y #5
   G00 X #3 Y #5
   G01 X #3 Y #4
   G00 X #2 Y #4
O101 endwhile

G00 Z #12
G00 X[0-#1] Y[0-#1]

%