Typical work configuration

Slides:



Advertisements
Similar presentations
Machining Overview All products that we use in our everyday life have been machined in one way or another. Our modern civilization depends on machining.
Advertisements

Industrial Engineering Program King Saud University
CANNED CYCLES AND SUBROUTINES
NC and CNC machines and Control Programming
Computer Integrated Manufacturing CIM
CNC Programming “Milling”
MILLING.
1 GRASP SAAST 2005 Robotics University of Pennsylvania Dave Cappelleri Piston Project: Machining Basics.
Know the Code… Students will participate in an activity that will help them understand CNC programming and how machines read programmed information.
ENGR480 Manufacturing Systems Spring ENGR480 Manufacturing Systems Class MWF 10:00 (CSP165) Lab Tue 2:00 (KRH105) Read Syllabus for other info.
Manufacturing Automation
Old Main Group. Design Issues There are no changes to the overall Design It will remain the way it is The Attachment Issue is resolved Going to screw.
Industrial Engineering Department King Saud University
HAAS LATHE PANEL TUTORIAL
Winter term 00/01 Industrial Applications of Computers Computer Aided Manufacturing (CAM) Computer Numerical Control (CNC)
Advanced Tool Management Information Module Advanced Tool Management Information Module.
Machinability The enemies: –heat –vibration. Vibration (chatter)
VQC Probe Templates.
CNC Programming for Mill Example CNC program - bores a center hole and drills bolt circle Haas manual at: k:\class\engr\480\haas\usermanual.pdf or at
Ch. Devi Lal Memorial Govt. Engg. College
Computer Numerical Control CNC by Anil Gajjar. Computer Numerical Control Computer Numerical control is a method of automatically operating a manufacturing.
Features of CNC Machining Centers
AUTOMATIC LATHES These are machine tools in which components are machined automatically. The working cycle is fully automatic that is repeated to produce.
Lesson One: Machine Configurations Turning Center Programming And Operation Copyright 2002, CNC Concepts, Inc.
Resource 2 Manufacturing Techniques Machining Operations & Techniques.
Fabrication II By Ryan Sharp and Andrew Keisic. Topics How to machine a simple part. Things to Keep in Mind When Designing Parts Tooling Setup CNC.
H4CL-M M-codes and G-Codes
Machining Center Programming & Operation Copyright 2002, CNC Concepts, Inc.
CNC Programming Prepared by Reza.
Motion Statements G00Linear Movement (rapid) G01Linear Movement (feed) G02Circular Movement (cw feed) G03Circular Movement (ccw feed) CNC Programming.
Preparatory NC Codes G00Linear Movement (rapid) G01Linear Movement (feed) G02Circular Movement (cw) G03Circular Movement (ccw) G70Inch units G71Metric.
Intuitive Programming System For The Mill
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.
Milling with the Lab-Volt 5600
ENGR480 Manufacturing Systems Spring ENGR480 Manufacturing Systems Class MWF 10:00 (CSP165) Lab Thur 2:00 (KRH105) Read Syllabus for other info.
Manufacturing the Base Plate #2. Contents of this presentation are for the machinist to view the best method of producing this foundational part to the.
1 Manufacturing Projects Flexible Manufacturing Copyright © Texas Education Agency, All rights reserved.
Numerical Control Programming
Introduction To CNC-Programming
Drilling Drills produces deep holes. Drilling machine Insert drill
Autodesk Inventor Autodesk Inventor EdgeCAM – Part 2 EdgeCAM – Part 2 CNC Motion CNC Motion Prolight CNC Mill Prolight CNC Mill CNC Box.
Milling Su-Jin Kim Milling Machine 0. Old milling:
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.
Autodesk Inventor Autodesk Inventor EdgeCAM EdgeCAM CNC Motion - Part 3 CNC Motion - Part 3 Prolight CNC Mill Prolight CNC Mill CNC Box.
1 Manufacturing process-1 ( ) Lathe Operations Guided By:Prepared By: Prof. Stany R. Ghadiyali
Autodesk Inventor – Part 1 Autodesk Inventor – Part 1 EdgeCAM EdgeCAM CNC Motion CNC Motion Prolight CNC Mill Prolight CNC Mill CNC Box.
Study of Operational Concepts of Conventional and CNC Machines - Lathe & Milling Pratik Basu Final year B.E student Lingaya’s Inst. Of Mgmt. & Tech.
CNC Codes and Letters NOTE: The following will be a listing and description of Computer Numerical Control (CNC) Codes and Letter designations. We will.
H, I & PLUS BEAM FABRICATION LINE WITH MATERIAL HANDLING
SNS COLLEGE OF ENGINEERING
Chip Forming Operations
G-Code 101 With the Mike Mattera
Features of CNC Machining Centers
Some Additional G code Features
Features of CNC Machining Centers
Vertical Milling.
CNC Programming for Mill
Lathe Coordinate System
NC,CNC machines and Control Programming.
Doing Vertical Milling
CNC Programming for Mill
Paul Freund Mark Radio Chad Swanson
Doing Vertical Milling
NC and CNC machines and Control Programming
Doing Vertical Milling
CNC Programming for Mill
CNC Machine Language گرد آورنده: بابک دلخون
Doing Vertical Milling
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:

Typical work configuration CNC Milling Typical work configuration - bar stock, cut to length - gripped in step jaw Typical machining process - face top - profile edge - machine top features - flip part, face bottom - machine bottom features - flip part to edges needing machining ops

Simple bracket machining CNC Milling Simple bracket machining - rectangular bar stock, sawed to length - no facing or profiling - spot and drill holes - machine pockets and bores

CNC Programming for Mill Example CNC program – drills four holes Haas manual at: k:\class\engr\480\haas\usermanual.pdf or at http://engr.wallawalla.edu/engr480/docs/Haas

G-Codes for Milling G00 Rapid positioning G01 Linear interpolation (feeding) G02 CW Circular interpolation G03 CCW Circular interpolation G04 Dwell G20 Inch system G21 Metric system G28 Return to reference point G43 Tool Length Compensation

G-Codes for Milling G54-G59 Select work coord system G65 Macro call Bolt circle cycle G81 Drill canned cycle G83 Peck drill canned cycle G84 Tapping canned cycle G90 Absolute coordinates G91 Incremental coordinates G98 Initial point return

M-Codes for Milling M00 Program Stop M01 Opt. Program Stop (panel controlled) M03 Start spindle (normal rotation) M04 Start spindle (reverse rotation) M05 Stop spindle M06 Tool change M08 Start coolant M09 Stop coolant M30 Program end

Example Program % O01001 (DRILL EXAMPLE - 2013-04-05) (OP1- TOP SIDE) (STOCK- 2IN X 2IN X 1/4IN) (G54 ZERO- LEFT FRONT TOP) G54 G00 G40 G90 G17 G20 (SPOT DRILL HOLES) T7 M6 G43 H7 S2000 M3 M8 G0 X0.50 Y0.50 Z0.1 G81 Z-0.1 R0.1 F10.; (CANNED DRILL CYCLE) X0.50 Y1.00 X1.00 Y1.00 X1.00 Y0.50 G80 G00 Z0.1;(CANCEL CANNED CYCLE) M9 M5 (DRILL 1/4IN HOLES) T9 M6 G43 H9 S2000 M3 M8 G0 X0.50 Y0.50 Z0.1 G83 Z-0.35 Q0.1 R0.1 F10.0 X0.50 Y1.00 X1.00 Y1.00 X1.00 Y0.50 G80 G00 Z0.1 G00 Z6.0 M9 M5 M30 %

Loading CNC Program Copy to K:\class\engr\cnc as haascode.txt Press List Prog Type program number (O01234) Press RECV RS232