Lesson Twelve Text
Lesson Twelve Text
Note that single direction positioning is modal and can be used in conjunction with
canned cycles (normally a boring cycle). When finished machining the last hole, you
must remember to place the machine back in the normal cutting mode (with G64). In
essence, G64 cancels the single direction positioning mode. Here is a program that
machines the workpiece in the last drawing.
10
11
12
13
Drawing shows the words used with G76 for taper threading
Notice the addition of an I word. The I word specifies the distance and direction from the
end point of the thread to the starting point of the thread along the X axis. For outside
diameter taper threads, I will always be negative. For inside diameter taper threads, I will
always be positive.
The actual value of I requires trigonometry to calculate. I will be equal to the tangent
of the taper angle (usually 3.718 degrees) times the overall length in Z of the threading
pass. This length must include the approach distance (usually 0.200 inch).
If, for example, your external thread is 1.0 inch long and you have a 0.2 inch approach,
the value of the I word will be I-0.0779 (tangent of 3.718 times 1.2)
Multiple start threads
Multiple start threads are required when mating workpieces require the smooth fit of a
fine thread with the axial motion of a coarse thread. Multiple start threads require more
than one lead to be machined. The next drawing shows an example of a four start thread.
14
The drawing on the left shows what the thread will look like after the first start is
machined. Notice that the lead of the thread (.5 inch in this case) is measured over one
start (this will be the feedrate in the G76 command/s). The drawing on the right shows
the balance of thread starts filled in.
Most controls allow multiple start threads to be easily machined by cross threading in a
controlled manner. In essence, you will be machining four independent thread starts,
meaning four separate G76 commands. The feedrate used for each thread start must be
the overall lead of the thread (0.5 inch in our case).
One way to machine this thread that will work on all controls is to physically move the
tool in Z by a value equal to the overall lead (.5 in our case) divided by the number of
thread starts (4 in our case) in between G76 commands. The move-over amount after
each start is machined in our case will be 0.125 inch. This will force the tool to cross
thread in a highly controlled manner.
Here is a program that uses this technique to machine the four start thread shown in the
last drawing.
Program:
O0018 (Program number)
N003 G20 G23 G40 (Ensure that initialized states are still in effect)
N004 G50 S4000 (No need for limiting, limit to machines maximum speed)
N005 T0101 M41 (Select threading tool and low spindle range)
N010 G97 S500 M03 (Turn spindle on CW at 500 RPM)
N015 G00 X4.2 Z0.2 M08 (Rapid to convenient starting position to machine
first start, start coolant)
N020 G99 G76 X3.826 Z-1.9 K0.087 D0160 A60 F0.500 (Machine first start)
N025 G00 Z0.325 (Move over to starting position for second start)
N030 G76 X3.826 Z-1.9 K0.087 D0160 A60 F.500 (Machine second start)
15
16
17
18