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)

Slides:



Advertisements
Similar presentations
Turning Objectives of machine tools (lathe)
Advertisements

HST Toolpaths.
Industrial Engineering Program King Saud University
CANNED CYCLES AND SUBROUTINES
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.
G-Code Primer - Review Quick review –G00 X__ Z__ rapid traverse –G01 X__ Z__ F__ feed w/ linear interpolation –G28 U0 W0 return home –G50 S____ limit max.
1 USING MOLLART SPRAY MIST SYSTEM. 2 SETTING UP IN CONVENTIONAL MANNER DATUM YOUR PART AS NORMAL PROCEDURE.
Manufacturing Automation
ROUGHING CYCLE - G71. Finishing Cycle - G70 G71/G70 Cycle (OD example) G00 T0101 G50 S2000 (MAX 2000RPM) G96 S#502 (CONST SURF SPEED) G99 (FEED PER REV)
Industrial Engineering Department King Saud University
337: Materials & Manufacturing Processes
…………..Continued Recap Machine tool Lathe machine Basic components
IENG 475: Computer-Controlled Manufacturing Systems Lathe Operations
G-Code Primer - Review Quick review –G00 X__ Z__ rapid traverse –G01 X__ Z__ F__ feed w/ linear interpolation –G28 U0 W0 return home –G50 S____ limit max.
Computing Thread Parameters Overall thread height –H = Pitch*(0.5 / tan 30deg) = *Pitch –Ext thread depth = (17/24)*H = *Pitch –Int thread.
Drilling machine.
Lathe Practice & Milling
Lathe Practice.
Manufacturing Techniques
BMFS 3373 CNC TECHNOLOGY Lecture 9
Chapter 20 Fundamentals of Machining/Orthogonal Machining (Part I Review) EIN 3390 Manufacturing Processes Spring,
LATHE OPERATIONS The various operations that can be performed on a lathe are: Turning. Step turning. Taper turning. Thread cutting. Facing. Knurling Chamfering.
Sherline Model 4000 lathe 4000A shown includes 3-jaw chuck, tailstock drill chuck and standard accessories.
Cutting Technology –chip removing –the largest class of manufacturing activities in engineering production –~1.87 million machine tools –~$168 billion.
LATHE MACHINE OPERATION - FACING
Chapter 20 Fundamentals of Machining/Orthogonal Machining (Part I Review) EIN 3390 Manufacturing Processes Fall, 2010.
First Year, Mechanical Engineering Dept., Faculty of Engineering, Fayoum University Dr. Ahmed Salah Abou Taleb 1 Manufacturing Processes 1 (MDP 114)
Introduction To CNC-Programming
Setting up correctly Different types and their use
Autodesk Inventor Autodesk Inventor EdgeCAM – Part 2 EdgeCAM – Part 2 CNC Motion CNC Motion Prolight CNC Mill Prolight CNC Mill CNC Box.
Milling Circles and Arcs and Milling with Canned Cycles 04/23/08.
……………..Continued Recap Grinding Machine Operations on grinding machine 1.
Speeds and Feeds. Spindle speeds given in RPM Revolutions Per Minute.
Dr. HABEEB HATTAB HABEEB Dr. HABEEB HATTAB HABEEB Office: BN-Block, Level-3, Room Ext. No.: 7292 UNITEN.
1 Manufacturing process-1 ( ) Lathe Operations Guided By:Prepared By: Prof. Stany R. Ghadiyali
ENM208 INTRODUCTION to MACHINING ANADOLU UNİVERSITY Industrial Engineering Department.
M EASUREMENT AND OPTIMIZATION OF DRILLING PROCESS PARAMETERS Presented by:  Rahul Bhat  Hardik Thummar  Maunik.
Machining Module 5: Lathe Setup and Operations. Parallel (Straight) Turnning Parallel turning is to move the cutting tool parallel to the longitudinal.
UNIT-II TURNING MACHINES
DRILLING Dept. of Mech & Mfg. Engg..
IENG 475: Computer-Controlled Manufacturing Systems Lathe Operations
SNS COLLEGE OF ENGINEERING
Different Types of Lathe Operations And Alignment Test
Special motion types Special interpolation types Helical motion
An Introduction to Process Planning and G-Code
Abrasive Machining and
Lathe Practice.
G-Code Primer Quick review G0 X__ Z__ rapid traverse
Part Programming Turning Applications.
DRILLING Drilling is a metal cutting process carried out by a rotating cutting tool to make circular holes in solid materials. Tool which makes hole is.
IENG 475: Computer-Controlled Manufacturing Systems Lathe Operations
IENG 475: Computer-Controlled Manufacturing Systems
G83 Peck Cycle.
Lathe Coordinate System
Lathe Practice.
ЧПУ Delta Electronics G-коды. Примеры
Drilling machine.
Computing Thread Parameters
G-Code Primer - Review Quick review G00 X__ Z__ rapid traverse
CNC Machine Language گرد آورنده: بابک دلخون
Primary Machining Parameters
IENG 475: Computer-Controlled Manufacturing Systems
IENG 475: Computer-Controlled Manufacturing Systems Lathe Operations
Threading Cycle Threading requires multiple passes in perfect synchronization to reach final thread depth. Must make sure you are in constant spindle.
IENG 475: Computer-Controlled Manufacturing Systems Lathe Operations
Primary Machining Parameters
G-Code Primer - Review Quick review G00 X__ Z__ rapid traverse
CNC Turning Cross 11, Tapovan Enclave Nala pani Road, Dehradun : ,
Milling Circles and Arcs and Milling with Canned Cycles
Presentation transcript:

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

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

Convex Arc Example G00 T0202 (15DEG DIAMOND TOOL, TOOL 2) G50 S2000 (CLAMP SPEED AT 2000) G96 S#502 (CONST SURF SPEED) G99 (FEED PER REV) G00 X[# ] Z[# ] (GET CLOSE) M03 (SPINDLE ON) G00 X[#500] Z20.0 (INITIAL POINT FOR ROUGHING) M08 (TURN ON COOLANT) G71 U2.0 R0.75 (2MM DOC, 0.75MM RETRACT) G71 P100 Q110 U0.5 W0.25 F#503 N100 G00 X0.0 Z19.0 (ENTRANCE POINT) G03 X38.0 Z0.0 I0.0 K-19.0 F#504 G01 X38.0 Z-3.2 N110 G00 X[# ] (EXIT) G00 X[# ] Z[# ] (GET CLOSE) G00 X[#500] Z20.0 (INITIAL POINT FOR FINISHING) G70 P100 Q110 F#504 (FINISH PASS) G00 X[# ] (BACK OFF) M09 M05 G28 U0 W0

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

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!

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

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)‏

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)‏

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

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/24.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