Numerical Control Programming

Slides:



Advertisements
Similar presentations
Unit 5 Numerical Control
Advertisements

NC and CNC machines and Control Programming Introduction to NC and CNC machines CNC controls and RS274 programming.
Introduction to G-Code Programming
Computer Numeric Control
Industrial Engineering Program King Saud University
CANNED CYCLES AND SUBROUTINES
NC and CNC machines and Control Programming
Circular interpolation
Computer Integrated Manufacturing CIM
CNC Programming “Milling”
G-Code Fundamentals.
Ch 7 Numerical Control Sections: Fundamentals of NC Technology
Know the Code… Students will participate in an activity that will help them understand CNC programming and how machines read programmed information.
Numerical Control Instructor: Dr Haris Aziz TA: Mian Wasif 2.
CNC Lathe Machine Nurfaizey b. Abdul Hamid 26 February 2008.
CNC Programming / Robotic Integration
The code which controls the CNC machine.
Manufacturing Automation
5300 CNC CONTROL TRAINING GUIDE. 1. Turning the Control ON After the control has been turned ON press F10 to continue. Then press ENTER to select CNC.
Industrial Engineering Department King Saud University
IENG 475: Computer-Controlled Manufacturing Systems
IE433 CAD/CAM Computer Aided Design and Computer Aided Manufacturing Part-8 Industrial Engineering Department King Saud University.
Winter term 00/01 Industrial Applications of Computers Computer Aided Manufacturing (CAM) Computer Numerical Control (CNC)
Rapid Prototyping Computer Numerical Control Programming (CNC) Some Machines: –Vertical machining Centers –CNC Turret lathes –Gantry Machines Geometric.
Industrial Engineering Department King Saud University
Computer Integrated Manufacturing CIM
BMFS 3373 CNC TECHNOLOGY Lecture 2
Computer Numerical Control CNC by Anil Gajjar. Computer Numerical Control Computer Numerical control is a method of automatically operating a manufacturing.
Advanced Manufacturing Laboratory Department of Industrial Engineering Sharif University of Technology Session # 15.
CAM Systems & CNC Machine Overview
Outline 1. Introduction to CNC machine 2. Component and Function of CNC 3. Coordinate System.
Module 1: Introduction to CNC Turning
CNC Programming.
Computer Numerical Control
Introduction to Computer Numerical control
Computer Numerical Control
Numerical Control I NC Numerical Control - Software control of manufacturing processes. NC - Numerical Control - Software control of manufacturing processes.
CNC Router Programming Some basics for FIRST Robotics.
CNC Programming Prepared by Reza.
Alpha numerical program input
Inventables CNC Machine M. Neilsen. Synthetos gShield + Arduino with grbl.
G & M Codes Computer Integrated Manufacturing
(0,0) The Cartesian Coordinate System I IV III II +,- -,- +,+ -,+ Y+ Y- Z+ Z- X+ X- Basis for plotting all machine table positions The left/right axis.
Introduction To CNC-Programming
The Cartesian Coordinate System
Lathe Operations. Numerical Control CNC or Computer Numerical Control is a term derived from NC or Numerical Control. NC refers to Control of a process.
BMFS 3373 CNC TECHNOLOGY Lecture 10
CNC Letters NOTE: The following will be a listing and description of Computer Numerical Control (CNC) Codes and Letter designations. We will try to stick.
CNC Codes and Letters NOTE: The following will be a listing and description of Computer Numerical Control (CNC) Codes and Letter designations. We will.
SNS COLLEGE OF ENGINEERING
CNC CONTROL SYSTEM AND PART PROGRAMMING
Visit for more Learning Resources
G-Code 101 With the Mike Mattera
Special motion types Special interpolation types Helical motion
An Introduction to Process Planning and G-Code
COMPUTER INTEGRATED MANUFACTURING
Numerical Control Sections: Fundamentals of NC Technology
Part Programming Turning Applications.
IENG 475: Computer-Controlled Manufacturing Systems
Prepared by: Dr. Mohamed Ahmed Awad
CNC Programming for Mill
NC,CNC machines and Control Programming.
ЧПУ Delta Electronics G-коды. Примеры
CNC Programming for Mill
Computer Integrated Manufacturing
NC and CNC machines and Control Programming
CNC Programming for Mill
CNC Machine Language گرد آورنده: بابک دلخون
CAM Systems & CNC Machine Overview - Lecture 3
Prepared by Reza. Motivation and uses To manufacture complex curved geometries in 2D or 3D was extremely expensive by mechanical means (which usually.
Presentation transcript:

Numerical Control Programming

6.1 NC PART PROGRAMMING Introduction Coordinate Systems NC Words

6.1.1 Coordinate System Z // rotating spindle Z AXIS workpiece-rotating machine: Z is parallel to the spindle tool-rotating machine: Z is parallel to the tool axis Z Z Z

6.1.1 Coordinate System X // table X AXIS workpiece-rotating machine: X is the direction of tool movement horizontal milling machine : X axis is parallel to the table vertical machine : +X axis points to the right when the programmer is facing the machine. X Z X Z Z X

6.1.5 NC Words N, G, X, Y Z, A, B, C, I, J, K, F, S, T, R, M N: specify the sequence number G: preparatory word to prepare for control functions (the motion of each axis, coordinate system, coordinate plane, cutter radius compensation, tool length offset……) M: miscellaneous word to control miscellaneous functions (spindle on/off, start/stop the machine, turn on/off the coolant, change the tool, and rewind the program tape)

6.1.5 NC Words Traverse, Circular, dwell, acceleration, deceleration, metric format,

6.1.5 NC Words M CODES M00 Program stop M06 Tool change M01 Optional stop M07 Flood coolant on M02 End of program M08 Mist coolant on M03 Spindle CW M09 Coolant off M04 Spindle CCW M30 End of tape

6.1.5 NC Words Modal codes and non modal codes/ modal functions Modal functions stay active until some other command changes it. Modal commands are arranged in sets called “modal groups”, and only one member of a modal group may be in forces at any given time. non-modal functions Non-modal functions have effect only on the lines on which they occur.

6.1.5 NC Words modal groups traverse

6.1.5 NC Words M CODES modal groups M00 Program stop M06 Tool change Optional stop M07 Flood coolant on M02 End of program M08 Mist coolant on M03 Spindle CW M09 Coolant off M04 Spindle CCW M30 End of tape

6.1.5 NC Words N, G, X, Y , Z, A, B, C, I, J, K, F, S, T, R, M F: feed rate of the tool motion S: cutting-speed T: tool number

6.1.5 NC Words N, G, X, Y , Z, A, B, C, I, J, K, F, S, T, R, M X, Y, Z, A, B, C: provide the coordinate positions of the tool. X, Y, and Z define the three translational (Cartesian) axes of a machine. A, B and C are used for the three rotational axes about the X, Y, and Z axes. I, J, K: specify the center for circular motion

6.1.5 NC Words N, G, X, Y, Z, A, B, C, I, J, K, F, S, T, R, M R: specify the clearance height in canned-cycle N0010 G81 X1.000 Y2.000 Z0.000 R1.300 Operations in drill cycle G81 : 1. Rapid to location (1,2,2). 2. Rapid down to the R plane:(1,2,1.3) 3. Feed to the Z point, the bottom of the hole:(1,2,0) 4. Operation at the bottom of the hole . 5. Rapid or feed to either the R plane or the initial height.

NC Words

G codes Unit selection: Coordinates selection: G70 (inch), G71(metric) Coordinates selection: G90(absolute), G91(incremental) Working plane selection: G17(X-Y), G18(Z-X), G19(Y-Z)

Set up working coordinate 25.2 23 Z X G92 X25.2 Z23.0 Machine zero is unchangeable and usually is set up with the machine Working coordinate (is decided by the offset from the machine zero) G92 Be defined in program MDI: Multi-Document Interface Machine zero G55 G54 G56 G57 G58 G59

G90: absolute coordinates Rapid traverse: G00 G00: to make the machine move at maximum speed. It is used for positioning motion. G90 G00 X20.0 Y10.0 G90: absolute coordinates Start End (20,10) (10,10) (0,0)

Linear interpolation: G01 linear interpolation at feed speed. G91 G0l X200.0 Y100.0 F200.0 G91: incremental coordinates Y 100.0 X Start End 200.0

Circular interpolation: G02, G03 For circular interpolation, the tool destination and the circle center are programmed in one block G02 is clockwise interpolation, G03 is counterclockwise interpolation End point Circle center, radius

Circular interpolation: G02, G03 Specify Center with I, J, K I, J, K are the incremental distance from the start of the arc; Viewing the start of arc as the origin, I, J, K have positive or negative signs. Center Y Start End X i j

Circular interpolation: G02, G03 N0010 G92 X200.0 Y40.0 Z0; N0020 G90 G03 X140.0 Y100.0 R60.0 F300; N0030 G02 X120.0 Y60.0 R50.0; G92: To define working coordinate G90: absolute coordinates R60 R50 90 120 140 200 100 60 40 O Y X

Circular interpolation: G02, G03 Annotation for Circular Interpolation I0.0, J0.0, and K0.0 can be omitted. If X,Y,Z are all omitted in the program, that means start and end of arc are same points. N0020 G02 I20.0 (a full circle) If I, J, K, and R all appears in circular interpolation instruction, R is valid and I, J, and K are invalid

Return to Machine Zero: G28 The machine passes by the specified point, and then move to the machine zero. G91 G28 X_, Y_, Z_ X,Y,Z are the coordinate of specified point that is saved in memory of machine. Usually this instruction is used in the beginning and end of program. G91: incremental coordinates A Machine Zero Specified point

Return to the Specified point : G29 The machine passes from the machine zero by the point that is specified in G28, and then move to the new specified point. G29 X_, Y_, Z_ X, Y, Z are the coordinate of new specified point G28,G29 are usually used to change tool Specified point in G28 A Machine Zero New specified point in G29

M code miscellaneous word miscellaneous functions: turn the spindle on/off start/stop the machine turn on/off the coolant change the tool rewind the program (tape)

M code modal groups M00 Program stop M06 Tool change M01 Optional stop Flood coolant on M02 End of program M08 Mist coolant on M03 Spindle CW M09 Coolant off M04 Spindle CCW M30 End of tape modal groups

M code: M00, M01 M00 and M01 both stop the machine in the middle of a program. M01 is effective only when the optional stop button on the control panel is depressed. The program can be resumed through the control panel.

M code: M03, M04, M05 M03 turns on the spindle clockwise. M04 turns the spindle on counterclockwise. (The spindle rpm must be specified in the same line or in a previous line. ) M05 turns off the spindle.

M code: M07, M08, M09 M07 and M08 turn on different modes of coolant. M07: flood coolant on M08: mist coolant on M09 turns off the coolant.

M code: M06 M06 signals the tool-change operation. On a machine equipped with an automatic tool changer, it stops the spindle, retracts the spindle to the tool-change position, and then changes the tool to the one specified in the T-code.

M code: M02, M30 M02 marks the end of the program. M30 marks the end of the tape. It stops the spindle and rewinds the program (tape)

Example A 2.0-in 2.0-in. square is to be milled using a 1/2-in. end milling cutter (end mill). Write an NC part program to make the square.

Example Part program Explanation N0010 G41 S1000 F5 M03 N0020 G00 X6.000 Y6.000 N0030 G01 Z-1.000 N0040 G01 Y8.000 N0050 G01 X8.000 M96 N0060 G01 Y6.000 M96 N0070 G01 X6.000 M96 N0080 G01 Z1.000 N0090 G40 M30 Begin compensation(left), set feed and speed, spindle on (CW) Move to lower left corner Plunge down the tool Cut to upper left corner Cut to upper right corner with external curve Cut to lower right corner with external curve Cut to lower left corner with external curve Lift the tool End the composition, stop the machine

G codes with animations http://www.cncezpro.com/gcodes.cfm

Manual Part Programming Example Tool size = 0.25 inch, Feed rate = 6 inch per minute, Cutting speed = 300 rpm, Tool start position: 2.0, 2.0 Programming in inches Motion of tool: p0  p1  p2  p3  p4  p5  p1  p0

1. Set up the programming parameters Programming in inches Use absolute coordinates Feed in ipm N010 G70 G90 G94 G97 M04 Spindle speed in rpm Spindle CCW

2. Set up the machining conditions Machine moves in XY-plane Use full-circle interpolation Feed rate Spindle speed N020 G17 G75 F6.0 S300 T1001 M08 Tool no. Flood coolant ON

3. Move tool from p0 to p1 in straight line Linear interpolation target coordinates N030 G01 X3.875 Y3.698

4. Cut profile from p1 to p2 N040 G01 X3.875 Y9.125 or N040 G01 Y9.125 Linear interpolation target coordinates N040 G01 X3.875 Y9.125 or N040 G01 Y9.125 X-coordinate does not change  no need to program it

5. Cut profile from p2 to p3 N050 G01 X5.634 Y9.125 Linear interpolation target coordinates N050 G01 X5.634 Y9.125

6. Cut along circle from p3 to p4 circular interpolation, CCW motion target coordinates N060 G03 X7.366 Y9.125 I6.5 J9.0 coordinates of center of circle N060 G03 X7.366 Y9.125 I0.866 J-0.125

7. Cut from p4 to p5 N070 G01 X9.302 Linear interpolation target coordinates (Y is unchanged) N070 G01 X9.302

8. Cut from p5 to p1 N080 G01 X3.875 Y3.698 Linear interpolation target coordinates (see step 3) N080 G01 X3.875 Y3.698

9. Return to home position, stop program Linear interpolation target coordinates (see step 3) N090 G01 X2.0 Y2.0 M30 end of data N100 M00 program stop

10. Complete RS-274 program N010 G70 G90 G94 G97 M04 N020 G17 G75 F6.0 S300 T1001 M08 N030 G01 X3.875 Y3.698 N040 G01 X3.875 Y9.125 N050 G01 X5.634 Y9.125 N060 G03 X7.366 Y9.125 I0.866 J-0.125 N070 G01 X9.302 N080 G01 X3.875 Y3.698 N090 G01 X2.0 Y2.0 M30

Automatic Part Programming Software programs can automatic generation of CNC data Define Tool CNC data Make 3D model Simulate cutting

Automatic part programming and DNC Very complex part shapes  very large NC program NC controller memory may not handle HUGE part program computer feeds few blocks of NC program to controller When almost all blocks executed, controller requests more blocks

Assignment (Learn this software) CNC Simulator Download from http://cnc-simulator.com/download/get.php?f=CncSetup453.exe

Direct Numerical Control (DNC): A system in which a central computer downloads the NC programs block by block to many NC machine tools simultaneously is called Direct Numerical Control (DNC) system. 2004

DNC Direct numerical control (DNC) – control of multiple machine tools by a single (mainframe) computer through direct connection and in real time 1960s technology Two way communication Distributed numerical control (DNC) – network consisting of central computer connected to machine tool MCUs, which are CNC Present technology

Direct Numerical Control (DNC): This system used to work with the early NC machine tools which can not read more than a block of information at a time. The central computer feed the program information one block at a time. When the machine execute the information, the next block of information would be fed. 2004

Distributed Numerical Control (DNC): Distributed NC is known by the same acronym as Direct Numerical Control (DNC). After the introduction of CNC, the machine tools have had the capability of storing large amount of information. Therefore, there have been no need to have drip feed information system, like, Direct Numerical Control. Instead, Distributed Numerical Control is introduced. In such a system, a host computer communicate with many CNC machine tools via networks and download or upload programs. 2004

Distributed Numerical Control (DNC): With Distributed Numerical Control systems, it is possible to monitor the activities in individual CNC machine tools on host computer. Therefore, better shop floor control can be achieved. 2004

TYPES of CNC CONTROL SYSTEMS Open-loop control Closed-loop control 2004

OPEN-LOOP CONTROL SYSTEM In open-loop control system step motors are used Step motors are driven by electric pulses Every pulse rotates the motor spindle through a certain amount By counting the pulses, the amount of motion can be controlled No feedback signal for error correction Lower positioning accuracy 2004

CLOSED-LOOP CONTROL SYSTEMS In closed-loop control systems DC or AC motors are used Position transducers are used to generate position feedback signals for error correction Better accuracy can be achieved More expensive Suitable for large size machine tools 2004