Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. %
  2.  
  3. ( Author: taiden )
  4. ( Date: 6/23/2012 )
  5. ( Keep up the good work! )
  6.  
  7.  
  8. ( G2 inside radius )
  9. ( G3 outside radius )
  10.  
  11.  
  12. G17 ( z axis on xy plane )
  13. G90.1 ( relative IJK coordinates - I0 J0 centered arc )
  14. F60 ( feed rate 60 inches/min )
  15.  
  16. T1 ( change tool - 1/4" carbide end mill )
  17. M06 ( machine code change tool )
  18. G40 ( NO tool compensation )
  19.  
  20. M03 ( start spindle )
  21. G0 X0 Y0 Z0.5 ( rapid safe zero which is center of piece )
  22.  
  23.  
  24.  
  25. ( 1st inner radius )
  26.  
  27.  
  28. G1 X-0.75 Y0 Z0 ( cut to helix start - bore radius 0.75")
  29. G2 I0 J0 Z-1.50 P15 ( rough inside radius - depth 1.50" - DOC 0.100" )
  30. G2 I0 J0 X0.75 Y0 ( finish bore base )
  31. G2 I0 J0 X-0.75 Y0
  32.  
  33. G0 Z0.5 ( rapid to safe height )
  34. G0 X0 Y0 Z0.5 ( rapid to safe zero )
  35.  
  36.  
  37.  
  38. ( 2nd inner radius )
  39.  
  40. G1 X-0.875 Y0 Z0 ( cut to helix start )
  41. G2 I0 J0 Z-1.1 P11 ( rough middle radius - depth 1.1" - DOC 0.1" )
  42. G2 I0 J0 X0.875 Y0 ( finish bore base )
  43. G2 I0 J0 X-0.875 Y0
  44.  
  45. G0 Z0.5 ( rapid to safe height )
  46. G0 X0 Y0 Z0.5 ( rapid to safe zero )
  47.  
  48.  
  49.  
  50. ( 3rd inner radius )
  51.  
  52. G1 X-0.925 Y0 Z0 ( cut to helix start )
  53. G2 I0 J0 Z-0.375 P4 ( rough 3rd radius - depth 0.375" - DOC 0.09375" )
  54. G2 I0 J0 X0.925 Y0 (finish bore base )
  55. G2 I0 J0 X-0.925 Y0
  56.  
  57.  
  58. G0 Z0.5 ( rapid to safe height )
  59. G0 X0 Y0 Z0.5 ( rapid to safe zero )
  60.  
  61.  
  62.  
  63.  
  64.  
  65. ( 1st outer radius )
  66.  
  67.  
  68. G1 X1.075 Y0 Z0 ( cut to helix start )
  69. G3 I0 J0 Z-0.75 P8 ( rough 1st outer radius - depth 0.75" - DOC 0.09375" )
  70. G3 I0 J0 X-1.075 Y0 ( finish bore base )
  71. G3 I0 J0 X1.075 Y0
  72.  
  73.  
  74. G0 Z0.5 ( rapid to safe height )
  75. G0 X0 Y0 Z0.5 ( rapid to safe zero )
  76.  
  77.  
  78. ( clean up )
  79.  
  80. G0 Z0.5 ( rapid to safe height )
  81. G0 X0 Y0 Z0.5 ( rapid to safe zero )
  82. M5 ( stop spindle )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement