This is an old revision of this page, as edited by Blazotron (talk | contribs) at 04:32, 10 April 2006 (→Example: small math error). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 04:32, 10 April 2006 by Blazotron (talk | contribs) (→Example: small math error)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff) This article is about the machine tool programming language. For the video recorder programming system, see Video recorder scheduling code.G-code is a common name for the programming language that is used for NC and CNC machine tools. It is defined in EIA RS-274-D.
G-code is also the name of any word in a CNC program that begins with the letter G, and generally is a code telling the machine tool what type of action to perform, such as:
- rapid move
- controlled feed move in straight line or arc
- series of controlled feed moves that would result in a hole being bored, a workpiece cut (routed) to a specific dimension, or a decorative profile shape added to the edge of a workpiece.
- change a pallet
- Set tool information such as offset.
There are other codes; the type codes can be thought of like registers in a computer
- X position
- Y position
- Z position
- M code (another "action" register or Machine code(*))
- F feed rate
- S spindle speed
- N line number
- R Radius
- T Tool selection
- I Arc data X axis
- J Arc data Y axis.
- K Arc data Z axis.
(*) M Codes control the overall machine, causing it to stop, start, turn on coolant, etc. Whereas other codes pertain to the path traversed by cutting tools.
Different machine tools, however, may use the same code to perform different functions: even machines that use the same CNC control. Some may have said that "Fanuc" G-code is standard, but that is a myth.
G00 | Fast positioning |
G01 | Linear interpolation |
G02 | CW circular interpolation |
G03 | CCW circular interpolation |
G17 | X-Y plan selection |
G18 | X-Z plan selection |
G19 | Y-Z plan selection |
G20 | Programming in inches |
G21 | Programming in mm |
G33 | Constant pitch threading |
G34 | Variable pitch threading |
G40/G41/G42 | Tool radius compensation |
G90 | Absolute programming |
G91 | Incremental programming |
G94/G95 | Feed |
G96/G97 | Constant cutting speed/Constant rotation speed |
A standardized version of G-code known as BCL is used, but only on very few machines.
G-code is understood by Gerber photoplotters, machine tool controls, and some machinists.
G-code files are output by CAM software such as Smartcam, Gibbscam, Featurecam, Edgecam, Mastercam, etc. G-code is also output by specialized CAD systems used to design printed circuit boards. Such software must be customized for each type of machine tool that it will be used to program.
Some CNC machines use "Conversational" programming, which is a wizard-like programming mode that either hides G-code or completely bypasses the use of G-code.
Example
This is a generic program that demonstrates the use of G-Code to turn a 1" diameter X 1" long part. Assume that a bar of material is in the machine and that the bar is slightly oversized in length and diameter and that the bar protrudes by more than 1" from the face of the chuck. (Caution: This is generic, it might not work on any real machine! Pay particular attention to point 5 below.)
N01 M216 | (Turn on load monitor) |
N02 G00 X20 Z20 | (Rapid move away from the part, to ensure the starting position of the tool) |
N03 G50 S2000 | (Set Maximum spindle speed) |
N04 T03 | (Choose tool #3 from the carousel) |
N05 G96 S854 M42 M03 M08 | (Variable speed cutting, 854 ft/min, High spindle gear, Start spindle CW rotation, Turn the coolant on) |
N06 G00 X1.1 Z1.1 T0303 | (Rapid feed to a point 0.1" from the end of the bar and 0.05" from the side, Use offset values for tool #3) |
N07 M01 | (Optional Stop) |
N08 G01 Z1.0 F.05 | (Feed in horizontally until the tool is standing 1" from the datum) |
N09 X0.0 | (Feed down until the tool is on center - Face the end of the bar) |
N10 G00 Z1.1 | (Rapid feed 0.1" away from the end of the bar) |
N11 X1.0 | (Rapid feed up until the tool is standing at the finished OD) |
N12 G01 Z0.0 | (Feed in horizontally cutting the bar to 1" diameter all the way to the datum) |
N13 G00 X1.1 | (Rapid feed 0.05" away from the surface of the part) |
N14 G00 X20 Z20 | (Rapid feed back out away from the work) |
N15 M05 M09 | (Stop the spindle, Turn off the coolant) |
N16 M215 | (Turn the load monitor off) |
N17 M02 | (End of program) |
Several points to note:
- There is room for some programming style, even in this short program. The grouping of codes in line N05 could have been put on multiple lines. Doing so may have made it easier to follow program execution.
- Many codes are "Modal" meaning that they stay in effect until they are cancelled or replaced by a contradictory code. For example, once variable speed cutting had been selected (G97), it stayed in effect until the end of the program. In operation, the spindle speed would increase as the tool neared the center of the work in order to maintain a constant cutting speed. Similarly, once rapid feed was selected (G00) all tool movements would be rapid until a feed rate code (G01, G02, G03) was selected.
- It is common practice to use a load monitor with CNC machinery. The load monitor will stop the machine if the spindle or feed loads exceed a preset value that is set during the set-up operation. The job of the load monitor is to prevent damage in the event of tool breakage. Furthermore, to some extent it can warn of a tool that that is becoming dull and needs to be replaced or sharpened.
- It is common practice to bring the tool in rapidly to a "safe" point that is close to the part - in this case 0.1" away - and then start feeding the tool. How close that "safe" distance is, depends on the skill and comfort level of the programmer.
- If the program is wrong, there is a high probability that the machine will crash! That can be very costly. It is wise to intersperse the program with optional stops (M01 code) which allow the program to be run piecemeal. This gives the programmer a better view of the overall progress of the cutting cycle. The optional stops remain in the program but they are skipped during the normal running of the machine.
See also
External links
Template:Metalworking - CNC, CAD, and CAM