Presentation is loading. Please wait.

Presentation is loading. Please wait.

G-Code Primer Quick review G0 X__ Z__ rapid traverse

Similar presentations


Presentation on theme: "G-Code Primer Quick review G0 X__ Z__ rapid traverse"— Presentation transcript:

1 G-Code Primer Quick review G0 X__ Z__ rapid traverse
G1 X__ Z__ F__ feed w/ linear interpolation G2/G3 X__ Z__ I__ K__ F__ circular interpolation G28 U0 W return home G50 S____ limit max speed G96/G97 S__ const. surf. speed/fixed speed G99/G feed per rev/feed per min G metric units M3/M spindle on/off M8/M coolant on/off M0/M1/M stop/optional stop/program end

2 G-Code Primer Quick review
G blocks are modal – G0 is rapid traverse mode, G1 is linear feed mode. G0 X10.0 Z20.0 Z10.0 X15.0 G1 F0.1 X4.5 Z12.0 M codes are on/off, only one per line M3 M8

3 G-Code Primer Variables: #1-33 (local vars for macros)
# (zeroed on power cycle) #500 to 999 (survive power cycle) Don't change vars above #1000: these are system variables. math: [# ] [#500 + #510] [#500 + [#510/2]]

4 G-Code Primer NEVER DO A TOOL CHANGE AWAY FROM HOME! (G28 U0 W0)‏ ALWAYS PUT A DECIMAL POINT AFTER DIMENSIONAL NUMBERS (no decimal --> microns)‏ USE ALL CAPS IN YOUR PROGRAM (lowercase gets dropped)‏ DON'T GET “OHS” AND “ZEROS” MIXED UP. PROGRAM NUMBER STARTS WITH “OH”, NOT ZERO

5 Planning a Program Critical dimensions
if your most critical dimension is an OD, do OD turning first if your most critical dimension is an ID, do boring first Machining ID Drill, rough bore (with end mill), finish bore (with boring bar) be very careful retracting from ID operations. It is too easy to crash a tool inside the part and break the tool. ID tools are much more expensive as well as much more fragile than OD tools.

6 Planning a Program Finish passes
if your tolerance is tight or your part is slender (so it may deflect noticeably), run multiple finish passes at the same diameter.

7 G-Code Looping & Branching
Loops: WHILE [#500 GT #510] DO 1 G01 ... #500 = #500 – 0.2 END 1 Conditionals: IF [#502 LE #515] GOTO N100 ... N100

8 ROUGHING CYCLE - G71

9 Roughing Cycle - G72

10 Finishing Cycle - G70

11 G71/G70 Cycle (OD example) G0 T0101 M09 G50 S2000 M05 G96 S#502
G0 X[# ] Z[# ] (CLOSE) M3 G0 X#500 Z[# ] (INITIAL POINT) M8 G71 U2.0 R0.75 (2MM DOC, 0.75MM RET) G71 P100 Q110 U0.5 W0.25 F#503 (LEAVE 0.5MM ON OD 0.25MM ON FACES) N100 G0 X0.0 Z[# ] (START POINT) G1 Z#501 F#504 X10.0 Z7.0 X14.0 Z5.0 Z-3.2 N110 G0 X[# ] (EXIT) M09 M05 G28 U0 W0 G0 T0202 G50 S4000 G96 S#502 G99 G0 X[# ] Z[# ] (CLOSE) M3 G0 X#500 Z[# ] (INITIAL POINT) M8 G70 P100 Q110 (EXACT PROFILE FOR FINISH) M9 M5

12 Arcs G2 = CW arc G3 = CCW arc Parameters: X,Z = end point of arc
I,K = distance to center point of arc from start (I is in radius units, not diameter units) F = feedrate

13 Convex Arc Example G0 X0.0 Z19.0 (START POINT) G3 X38.0 Z0.0 I0.0 K-19.0 F0.1 (CCW)

14 Convex Arc Example G71 U2.0 R0.75 (2MM DOC, 0.75MM RETRACT)
G71 P100 Q110 U0.5 W0.25 F#503 N100 G00 X0.0 Z (ENTRANCE POINT) G03 X38.0 Z0.0 I0.0 K-19.0 F#504 G01 X38.0 Z-3.2 N110 G00 X[# ] (EXIT) G70 P100 Q110 F# (FINISH PASS)

15 Concave Arc Example - Drill center hole - Use boring tool to rough and finish cavity G0 X0.0 Z15.0 G2 X30.0 Z10.0 I0.0 K25.0 F0.2

16 Threading Cycle Threading requires multiple passes in perfect synchronization to reach final thread depth. Must make sure you are in constant spindle speed mode, not constant surface speed!

17 Computing Thread Parameters
Overall thread height H = Pitch*(0.5 / tan 30deg) = *Pitch Ext thread depth = (17/24)*H = *Pitch Int thread depth = (5/8)*H = *Pitch

18 Threading - G76

19 Threading - G76

20 G76 Pffppaa Qddd Rfff (first line of G76)‏
Threading - G76 G76 Pffppaa Qddd Rfff (first line of G76)‏ ff = # of finish passes (01-99)‏ pp = # revolutions for gradual pull-out ( =00-99)‏ aa = angle (60 degrees for us)‏ ddd = last depth of cut (min.cutting depth) (positive radial value, no decimal point – microns)‏ fff = finish allowance (mm, dec.point allowed)‏

21 G76 Xxx Zzz Ppp Qqq Fff (2nd line)‏
Threading - G76 G76 Xxx Zzz Ppp Qqq Fff (2nd line)‏ xx = last thread pass diameter zz = Z endpoint of thread pp = height of thread (pos.radial value, microns)‏ qq = 1st threading pass depth (max.cutting depth, pos.radial value, microns)‏ ff = feedrate (same as thread lead)‏

22 Example: M24x2 external thread
Threading - G76 Example: M24x2 external thread G00 X Z[# ] G76 P Q005 R0.0 G76 X24.43 Z[# ] P1360 Q0544 F2.0

23 Multistart Threading Example: M24x2 three start external thread
#1=2.0 (PITCH - MM)‏ #2=0.5/TAN[30.0] * #1 (H)‏ #3=#2 * 17.0/ (THREAD DEPTH)‏ #4=3 (NUMBER OF STARTS)‏ #5=0 (START NUMBER)‏ G00 X32.0 Z[# * #1 * #4] (START 3X LEAD AWAY)‏ WHILE [#5 LT #4] DO 1 G00 X Z[#501 + #1 * #5 + 3 * #1 * #4] G76 P Q005 R0.0 G76 X23.39 Z[# ] P[FIX[#3*1000]] Q0544 F[#1*#4] #5 = #5 + 1 END 1


Download ppt "G-Code Primer Quick review G0 X__ Z__ rapid traverse"

Similar presentations


Ads by Google