All pastes #781732 Raw Edit

Untitled

public text v1 · immutable
#781732 ·published 2007-11-18 23:47 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> ) 
 
(corners of tool path) 
( var #<_x1> ) 
( var #<_x2> ) 
( var #<_y1> ) 
( var #<_y2> ) 
( var #<_x0> ) 
( var #<_y0> ) 
( var #<_z0> ) 
( var #<_max_depth> ) 
( var #<_zinc> ) 
( var #<_loopz> ) 
( var #<_safez> ) 
 
#<_radius> = 0.1875 
#<_safez>=1.0 
 
#<_x1>=0.5875 
#<_x2>=0.8125 
#<_y1>=-0.4 
#<_y2>=0.8 
#<_max_depth>=-1.0 
#<_zinc>=0.01 
 
G92 Z0 X[0-#<_radius>] Y[0-#<_radius>] 
 
G00 Z #<_safez> 
 
G00 X #<_x1> Y #<_y1> 
G00 Z 0.0000 
 
(start cutting donward in rectangular path) 
#<_loopz> =0.0000 
O101 while [#<_loopz> gt #<_max_depth>] 
   #<_loopz>=#<_loopz>-#<_zinc> 
   G00 Z #<_loopz> 
   G01 X #<_x1> Y #<_y2> 
   G00 X #<_x2> Y #<_y2> 
   G01 X #<_x2> Y #<_y1> 
   G00 X #<_x1> Y #<_y1> 
O101 endwhile 
 
G00 Z #<_safez> 
G00 X[0-#<_radius>] Y[0-#<_radius>] 
 
%