G83 Peck Cycle.

Slides:



Advertisements
Similar presentations
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)
Advertisements

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 Processes
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.
VQC Probe Templates.
Drilling machine.
Chapter 20 Fundamentals of Machining/Orthogonal Machining (Part I Review) EIN 3390 Manufacturing Processes Spring,
Cutting Technology –chip removing –the largest class of manufacturing activities in engineering production –~1.87 million machine tools –~$168 billion.
Feasibility of 3-D Surface Machining by Dry EDM 1/15 班級 : 碩研奈米一甲 學號 :M98R0105 報告者:陳致維 報告日期: 06/04/2010.
Counter Bore. Spot Facing – Provides a true bearing surface for a washer. Counter boring – Provides a recess for a bolt head, bushing or pin.
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
CNC Machinery Module Objectives: Define Machining.
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.
Machining: Family of Material Removal Processes  Material is removed from a starting work part to create a desired geometry.
……………..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
Automated Machining Adv. MMP
ENM208 INTRODUCTION to MACHINING ANADOLU UNİVERSITY Industrial Engineering Department.
ELEMENTS OF MECHANICAL ENGINEERING
Name _______ Class _______ No. _______
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
Machining: Family of Material Removal Processes
Precision Measurement
Drilling machine Presented By: JAIN YASHKUMAR K
IENG 475: Computer-Controlled Manufacturing Systems Lathe Operations
Manual Process Planning
Manual Process Planning
Mold base production solutions
Hole Machining Operations
Parul Institute of Engineering & Technology
Milling machines.
Special motion types Special interpolation types Helical motion
G-Code Primer Quick review G0 X__ Z__ rapid traverse
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
Lathe.
M.A.L. Products HIGH PERFROMANCE MACHINING TECHNOLOGY from
Manufacturing Processes
IENG 475: Computer-Controlled Manufacturing Systems
Lathe Coordinate System
Drilling machine.
Computing Thread Parameters
G-Code Primer - Review Quick review G00 X__ Z__ rapid traverse
Machining: Family of Material Removal Processes
Manual Process Planning
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 : ,
Presentation transcript:

G83 Peck Cycle

Custom Drilling “Cycle”

ID Boring - spot drill - drill - rough bore - finish bore

ID Boring Example (SPOT DRILL) G00 T0505 G97 S1000 G99 G00 X0 Z[#501 + 2.0] M03 M08 G01 X0 Z[#501 - 2.0] F0.5 G01 X0 Z[#501 + 2.0] F2.0 M09 M05 G28 U0 W0 M01

ID Boring (cont) (ROUGH BORE) IF [#522 GE 19.0] GOTO 66 (#522 IS ID) M0 (ERROR - BORE SMALLER THAN TOOL) N66 G0 T0707 (19MM END MILL, TOOL 7) G50 S1000 (CLAMP AT 1000) G96 S#502 (CSS) G99 G00 X19.0 Z[#501 + 2.0] (START POINT) M3 M8 G71 U2.0 R0.5 (2MM DOC, 0.5MM RETRACT) G71 P20 Q25 U-0.7 W0.0 F#503 (NOTE -0.7 FOR U = INTERNAL) N20 G00 X#522 Z[#501 + 2.0] G01 X#522 Z[#501] F#504 G01 X#522 Z[#501 – 10.0] (10MM DEEP BORE) N25 G00 U-0.4 (MOVE DOWN 0.4MM OFF BORE) M9 M5 G28 U0 W0

ID Boring (cont) (FINISH BORING) G00 T0707 G50 S1200 G96 S#502 G99 G00 X12.7 Z[#501 + 2.0] M03 M08 G70 P20 Q25 G00 Z[#501 + 2.0] M09 M05 G28 U0 W0

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) = 0.866025*Pitch Ext thread depth = (17/24)*H = 0.613435*Pitch Int thread depth = (5/8)*H = 0.541266*Pitch

Threading - G76

Threading - G76

G76 Pffppaa Qddd Rfff (first line of G76)‏ Threading - G76 G76 Pffppaa Qddd Rfff (first line of G76)‏ ff = # of finish passes (01-99)‏ pp = # revolutions for gradual pull-out (0.0- 9.9=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)‏

G76 Xxx Zzz Ppp Qqq Fff (2nd line)‏ 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)‏

Example: M24x2 external thread Threading - G76 Example: M24x2 external thread G00 X30.032 Z[#501 + 6.0] G76 P010060 Q005 R0.0 G76 X24.43 Z[#501-10.0] 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[#501 + 3 * #1 * #4] (START 3X LEAD AWAY)‏ WHILE [#5 LT #4] DO 1 G00 X30.032 Z[#501 + #1 * #5 + 3 * #1 * #4] G76 P100060 Q005 R0.0 G76 X23.39 Z[#501-10.0] P[FIX[#3*1000]] Q0544 F[#1*#4] #5 = #5 + 1 END 1