SlideShare a Scribd company logo
AUTOMATICALLY PROGRAMMED TOOLS
(APT)
Submitted by:
Amit Kumar Chauhan
MT13IND001
INTRODUCTION OF APT
 The APT language was the product of MIT development work on NC
programming systems.
 Its development began in June 1956, and it was first used in production
around 1959.
 Today it is the most widely used language in NC part programming.
 Although first intended as a contouring language , modern versions of APT
can be used for both positioning and continuous path programming.
TYPES OF STATEMENTS IN APT
The four types of statements in the APT language are:
1. Geometry Statements: which define primitive elements such as points,
lines, circles, planes, cones and spheres. They are also sometimes called
definition statements
2. Motion Statements: which describe the tool path in relation to the part
geometry
3. Postprocessor Statements: which give specific machine tool code
information as well as feeds and speeds
4. Auxiliary Statements: which give part and tool tolerances
1. GEOMETRY STATEMENTS
 The general form of geometry statements is:
symbol = geometry type / descriptive data
An example of such statement is:
P1 = POINT/100.0, 200.0, 300.0
 The statement is made up of three sections.
 The first is the symbol use to identify the geometric element. Normally the
alphabet “P” is used for defining a Point, “C” for Circle, “L” for Line and
“Pl” for Plane.
 The second section of the geometry statement is an APT vocabulary word
that identifies the type of geometry element. e.g. POINT, LINE, CIRCLE,
PLANE, etc.
 The third section of the geometry statement is the descriptive data
DEFINITION OF POINT-1:
( COORDINATE VALUES )
P1 = POINT/2,2,2
X
Y
P1
2
2
DEFINITION OF POINT-2:
(INTERSECTION OF TWO PREVIOUSLY DEFINED
LINES)
P2 = POINT / INTOF,L1,L2
P2
L2
L1
DEFINITION OF POINT-3:
(INTERSECTION POINT OF A PREVIOUSLY DEFINED LINE
AND CIRCLE)
P3 = POINT / XSMALL, INTOF, L1, C1
Or P3 = POINT / YSMALL, INTOF, L1, C1
P4 = POINT / XLARGE, INTOF, L1, C1
Or P4 = POINT / YLARGE, INTOF, L1, C1
P3
C1
L1
P4
Y
X
DEFINITION OF POINT-4:
(INTERSECTION POINT OF TWO PREVIOUSLY
DEFINED CIRCLES)
P3 = POINT / XSMALL, INTOF,C1,C2
Or P3 = POINT / YLARGE, INTOF, C1,C2
P4 = POINT / XLARGE, INTOF, C1,C2
Or P4 = POINT / YSMALL, INTOF, C1,C2
P3
P4
C1
C2
Y
X
DEFINITION OF POINT-5: (ON THE CIRCUMFERENCE
OF A PREVIOUSLY DEFINED CIRCLE )
P2 = POINT / C1,ATANGL,75
P2
X
C1
75°
DEFINITION OF POINT-6:
(CENTER POINT OF A PREVIOUSLY DEFINED CIRCLE
)
P2 = POINT / CENTER, C1
C1
P2
DEFINITION OF LINE-1:
(PASSING THROUGH TWO PREVIOUSLY DEFINED
POINTS)
L1 = LINE/P1,P2
L1P2
P1
DEFINITION OF LINE-2:
(PASSING THROUGH A PREVIOUSLY DEFINED POINT AND
TANGENT TO A PREVIOUSLY DEFINED CIRCLE)
L3 = LINE / P1, RIGHT, TANTO, C1
L4 = LINE / P1, LEFT, TANTO, C1
The RIGHT or LEFT modifiers are applied by looking from the point to the
circle and deciding whether the line will pass to the right or left of the circle.
P1
C1
L3
L4
DEFINITION OF LINE-3:
(TANGENT TO TWO PREVIOUSLY DEFINED CIRCLES)
L1 = LINE / LEFT, TANTO, C1, LEFT, TANTO, C2
L1 = LINE / RIGHT, TANTO, C2, RIGHT, TANTO, C1
The RIGHT & LEFT modifiers are applied looking from the first circle
quoted to the second
L1
C2
C1
DEFINITION OF LINE-3: CONTD.
(TANGENT TO TWO PREVIOUSLY DEFINED CIRCLES)
L3 = LINE / LEFT, TANTO, C1, RIGHT, TANTO, C2
L4 = LINE / RIGHT, TANTO, C1, LEFT, TANTO, C2
C1
L4
L3
C2
DEFINITION OF LINE-4:
(PASSING THROUGH A PREVIOUSLY DEFINED POINT AT A
SPECIFIED ANGLE TO THE X-AXIS)
L2 = LINE / P1, ATANGL, 30
L2 = LINE / P1, ATANGL, -150
L2
30°P1
150°
Y
X
DEFINITION OF LINE-5:
(PASSING THROUGH A PREVIOUSLY DEFINED POINT,
PARALLEL TO A PREVIOUSLY DEFINED LINE)
L3 = LINE/P3,PARLEL,L2
L3
P3
L2
DEFINITION OF LINE-6:
(PASSING THROUGH A PREVIOUSLY DEFINED POINT,
PERPENDICULAT TO A PREVIOUSLY DEFINED LINE)
L3 = LINE/P1,PERPTO,L2
L3
L2
P1
DEFINITION OF CIRCLE-1:
(COORDINATES OF CENTER OF CIRCLE, WITH A GIVEN
RADIUS)
C1 = CIRCLE/X,Y,R
(X,Y)
C1
R
DEFINITION OF CIRCLE-2:
(PREVIOUSLY DEFINED CENTER POINT AND TANGENT TO
A PREVIOUSLY DEFINED LINE)
C2 = CIRCLE/CENTER,P1,TANTO,L2
P1
C2
L2
DEFINITION OF CIRCLE-3:
(PREVIOUSLY DEFINED CENTER POINT AND PASSING
THROUGH ANOTHER PREVIOUSLY DEFINED POINT)
C2 = CIRCLE/CENTER,P1,P2
P1
C2
P2
DEFINITION OF CIRCLE-4:
(PASSING THROUGH THREE PREVIOUSLY DEFINED
POINTS)
C3 = CIRCLE/P1,P2,P3
C3
P2
P3
P1
DEFINITION OF PLANE:
(BY THREE PREVIOUSLY DEFINED POINTS)
PL4 = PLANE/P1,P2,P3
2. MOTION STATEMENTS
 APT motion statements have a general format:
motion command / descriptive data
e.g. GOTO / P1
 At the beginning of the motion statements tool must be given a starting
point
FROM / P0
Or FROM / -2, -2, 0
 The FROM is an APT vocabulary word which indicates that this is the
initial point from which others will be referenced. The FROM statement
occurs only once at the start of the motion sequence.
 In APT there are two basic types of motion statements:
a) Point to Point motion
b) Contouring motion
A) POINT TO POINT MOTION
 There are only two basic point to point motion commands
GOTO:
The GOTO statement instructs the tool to go to a particular point location
specified in the descriptive data.
e.g. GOTO / P2
GOTO / 2, 7, 0
GODLTA:
The GODLTA command specifies an incremental move for the tool.
e,g, GODLTA / 2, 7, 0 instructs the tool to move from its
present position to 2 units in x-direction, 7 units in y-direction and 0 units
in z-direction
B) CONTOURING MOTION
 In contouring motion commands the tool position must be continuously
controlled throughout the move. For contouring movements, the tool is
directed along intersecting surfaces. These surfaces have specific names in
APT.
 Drive Surface (DS): the surface against which the edge of tool rides.
 Part Surface (PS) : the surface on which the bottom end of the tool rides.
 Check Surface (CS) : the surface at which the tool motion is stop.
HOW TO APPROACH THE CHECK
SURFACE
 Modifier words, such as TO, ON, PAST or TANTO, are used to govern the
position of the tool in relation to the check surface.
HOW TO USE THE DRIVE SURFACE
 Motion statements, GOLFT (go to the left), GOFWD (go forward) and
GORGT(go to the right), are also used to control the cutter motion.
3. POST PROCESSOR STATEMENT
Post processor command for a particular tool are :
MACHIN/ : use to specify the machine tool and call the post processor for the tool.
e.g.- MACHIN/DRILL,3
COOLNT/ : allow the coolant fluid to be turned on or off.
e.g.- COOLNT/OFF
COOLNT /ON
COOLNT/FLOOD
COOLNT/MIST
FEDRAT/: specifies the feed rate for moving the tool along the part surface in
inches per minutes:
e.g.- FEDRAT/4.5
SPINDL/: gives the spindle rotation speed in revolution per minute.
e.g.- SPINDL/ 850
FINI: end of program
4. AUXILIARY STATEMENTS
• It give part and tool tolerances.
• The statement used for this are
INTOL/0.0015
OUTTOL/0.001
Thank you

More Related Content

What's hot

Product design and value engineering (PDVE) Ch 1 introduction
Product design and value engineering (PDVE) Ch 1 introductionProduct design and value engineering (PDVE) Ch 1 introduction
Product design and value engineering (PDVE) Ch 1 introductionChirag Patel
 
Theory of Metal Cutting
Theory of Metal CuttingTheory of Metal Cutting
Theory of Metal Cutting
Kunduru Srinivasulu Reddy
 
Slip Gauges Information
Slip Gauges Information Slip Gauges Information
Slip Gauges Information
ajaymadhale
 
cnc machining
cnc machiningcnc machining
cnc machining
Nikhlesh Ranjan
 
MT-II UNIT I THEORY OF METAL CUTTING
MT-II UNIT I THEORY OF METAL CUTTINGMT-II UNIT I THEORY OF METAL CUTTING
MT-II UNIT I THEORY OF METAL CUTTING
Karthik R
 
Computer aided machine drawing manual
Computer aided machine drawing manualComputer aided machine drawing manual
Lapping Machine Process and Application
Lapping Machine Process and ApplicationLapping Machine Process and Application
Lapping Machine Process and Application
Guindy Machine Tools Ltd
 
Introduction to Milling Machines
Introduction to Milling MachinesIntroduction to Milling Machines
Introduction to Milling Machines
Nishant Narvekar
 
CNC Technology.pptx
CNC Technology.pptxCNC Technology.pptx
CNC Technology.pptx
cptghost
 
solidworks
solidworkssolidworks
solidworks
Amit Kamboj
 
Basic Mechanical Engineering drawing
Basic Mechanical Engineering drawingBasic Mechanical Engineering drawing
Basic Mechanical Engineering drawing
samchowdhury
 
Grinding machines.kbs
Grinding machines.kbsGrinding machines.kbs
Grinding machines.kbs
Kishan Suthar
 
Intro to CAD/CAM/CIM
Intro to CAD/CAM/CIMIntro to CAD/CAM/CIM
Intro to CAD/CAM/CIMAbhay Gore
 
Unit 1 Metal Cutting
Unit 1 Metal CuttingUnit 1 Metal Cutting
Unit 1 Metal Cutting
Mechbytes
 
Mechanics of chips formation
Mechanics of chips formationMechanics of chips formation
Mechanics of chips formation
Hashim Hasnain Hadi
 
04 metal cutting(1)
04 metal cutting(1)04 metal cutting(1)
04 metal cutting(1)
Thulasikanth Vaddi
 
Special machines Unit 3 PPT - Milling Machines and Gear Generating Process
Special machines Unit 3 PPT - Milling Machines and Gear Generating ProcessSpecial machines Unit 3 PPT - Milling Machines and Gear Generating Process
Special machines Unit 3 PPT - Milling Machines and Gear Generating Process
ARAVIND U
 
Limits Gauges
Limits GaugesLimits Gauges
Limits Gauges
Nouman Ali
 
Nme 503 metal cutting
Nme 503 metal cuttingNme 503 metal cutting
Nme 503 metal cutting
iukashyap
 

What's hot (20)

Product design and value engineering (PDVE) Ch 1 introduction
Product design and value engineering (PDVE) Ch 1 introductionProduct design and value engineering (PDVE) Ch 1 introduction
Product design and value engineering (PDVE) Ch 1 introduction
 
Theory of Metal Cutting
Theory of Metal CuttingTheory of Metal Cutting
Theory of Metal Cutting
 
Slip Gauges Information
Slip Gauges Information Slip Gauges Information
Slip Gauges Information
 
cnc machining
cnc machiningcnc machining
cnc machining
 
MT-II UNIT I THEORY OF METAL CUTTING
MT-II UNIT I THEORY OF METAL CUTTINGMT-II UNIT I THEORY OF METAL CUTTING
MT-II UNIT I THEORY OF METAL CUTTING
 
Computer aided machine drawing manual
Computer aided machine drawing manualComputer aided machine drawing manual
Computer aided machine drawing manual
 
Lapping Machine Process and Application
Lapping Machine Process and ApplicationLapping Machine Process and Application
Lapping Machine Process and Application
 
Introduction to Milling Machines
Introduction to Milling MachinesIntroduction to Milling Machines
Introduction to Milling Machines
 
CNC Technology.pptx
CNC Technology.pptxCNC Technology.pptx
CNC Technology.pptx
 
solidworks
solidworkssolidworks
solidworks
 
Basic Mechanical Engineering drawing
Basic Mechanical Engineering drawingBasic Mechanical Engineering drawing
Basic Mechanical Engineering drawing
 
Grinding machines.kbs
Grinding machines.kbsGrinding machines.kbs
Grinding machines.kbs
 
Intro to CAD/CAM/CIM
Intro to CAD/CAM/CIMIntro to CAD/CAM/CIM
Intro to CAD/CAM/CIM
 
Chapter 24 (cost optionization)
Chapter 24 (cost optionization)Chapter 24 (cost optionization)
Chapter 24 (cost optionization)
 
Unit 1 Metal Cutting
Unit 1 Metal CuttingUnit 1 Metal Cutting
Unit 1 Metal Cutting
 
Mechanics of chips formation
Mechanics of chips formationMechanics of chips formation
Mechanics of chips formation
 
04 metal cutting(1)
04 metal cutting(1)04 metal cutting(1)
04 metal cutting(1)
 
Special machines Unit 3 PPT - Milling Machines and Gear Generating Process
Special machines Unit 3 PPT - Milling Machines and Gear Generating ProcessSpecial machines Unit 3 PPT - Milling Machines and Gear Generating Process
Special machines Unit 3 PPT - Milling Machines and Gear Generating Process
 
Limits Gauges
Limits GaugesLimits Gauges
Limits Gauges
 
Nme 503 metal cutting
Nme 503 metal cuttingNme 503 metal cutting
Nme 503 metal cutting
 

Viewers also liked

Apt programming
Apt programmingApt programming
Apt programming
Vemulapalli Das
 
Lathe milling drilling_job
Lathe milling drilling_jobLathe milling drilling_job
Lathe milling drilling_job
Vemulapalli Das
 
أخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساء
أخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساءأخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساء
أخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساءMuhammadrusdee Almaarify
 
L1 cad and applications
L1 cad and applicationsL1 cad and applications
L1 cad and applicationsDat Hoang Tien
 
Apt programming
Apt programmingApt programming
Apt programming
Vemulapalli Das
 
4 computer assisted control and automation
4 computer assisted control and automation4 computer assisted control and automation
4 computer assisted control and automation
Nymphea Saraf
 
TAGUCHI- QUALITY GURU
TAGUCHI- QUALITY GURUTAGUCHI- QUALITY GURU
TAGUCHI- QUALITY GURURajeev Sharan
 
Seminar on Basics of Taguchi Methods
Seminar on Basics of Taguchi  MethodsSeminar on Basics of Taguchi  Methods
Seminar on Basics of Taguchi Methods
pulkit bajaj
 
Taguchi presentation
Taguchi presentationTaguchi presentation
Taguchi presentationbwyrwa
 
Taguchi method
Taguchi methodTaguchi method
Taguchi method
Chandrmouli Singh
 
Cnc Programming Basics
Cnc Programming BasicsCnc Programming Basics
Cnc Programming Basicsshlxtn
 
CNC PROGRAMMING FOR BEGAINER Part 1
CNC PROGRAMMING FOR BEGAINER Part 1CNC PROGRAMMING FOR BEGAINER Part 1
CNC PROGRAMMING FOR BEGAINER Part 1
Parveen Kumar
 
Introduction To Taguchi Method
Introduction To Taguchi MethodIntroduction To Taguchi Method
Introduction To Taguchi Method
Ramon Balisnomo
 
Quality control and inspection
Quality control and inspectionQuality control and inspection
Quality control and inspection
Samiksha Sawant
 

Viewers also liked (16)

Apt programming
Apt programmingApt programming
Apt programming
 
Lathe milling drilling_job
Lathe milling drilling_jobLathe milling drilling_job
Lathe milling drilling_job
 
أخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساء
أخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساءأخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساء
أخطاؤنا في رمضان... 5ـ الأخطاء الخاصة بالنساء
 
L1 cad and applications
L1 cad and applicationsL1 cad and applications
L1 cad and applications
 
Apt programming
Apt programmingApt programming
Apt programming
 
Cnc1
Cnc1Cnc1
Cnc1
 
4 computer assisted control and automation
4 computer assisted control and automation4 computer assisted control and automation
4 computer assisted control and automation
 
TAGUCHI- QUALITY GURU
TAGUCHI- QUALITY GURUTAGUCHI- QUALITY GURU
TAGUCHI- QUALITY GURU
 
Seminar on Basics of Taguchi Methods
Seminar on Basics of Taguchi  MethodsSeminar on Basics of Taguchi  Methods
Seminar on Basics of Taguchi Methods
 
Taguchi presentation
Taguchi presentationTaguchi presentation
Taguchi presentation
 
Taguchi method
Taguchi methodTaguchi method
Taguchi method
 
Taguchi method
Taguchi methodTaguchi method
Taguchi method
 
Cnc Programming Basics
Cnc Programming BasicsCnc Programming Basics
Cnc Programming Basics
 
CNC PROGRAMMING FOR BEGAINER Part 1
CNC PROGRAMMING FOR BEGAINER Part 1CNC PROGRAMMING FOR BEGAINER Part 1
CNC PROGRAMMING FOR BEGAINER Part 1
 
Introduction To Taguchi Method
Introduction To Taguchi MethodIntroduction To Taguchi Method
Introduction To Taguchi Method
 
Quality control and inspection
Quality control and inspectionQuality control and inspection
Quality control and inspection
 

Similar to amit chauhan apt presentation

Computer assisted part programming.pdf
Computer assisted part programming.pdfComputer assisted part programming.pdf
Computer assisted part programming.pdf
Ashok Mannava
 
APT Programming in CAD CAM CIM for CNC programming
APT Programming in CAD CAM CIM for CNC programmingAPT Programming in CAD CAM CIM for CNC programming
APT Programming in CAD CAM CIM for CNC programming
amitchaudhari65
 
Automatically programmed tool (ATP)
Automatically programmed  tool (ATP)Automatically programmed  tool (ATP)
Automatically programmed tool (ATP)
Manoj Gowda K
 
APT.ppt
APT.pptAPT.ppt
APT.ppt
dharma raja`
 
LAY OUT CALCULATIONS (1).pptx
LAY OUT CALCULATIONS (1).pptxLAY OUT CALCULATIONS (1).pptx
LAY OUT CALCULATIONS (1).pptx
AkhilVijay19
 
Unit-I_(L-7).pdf
Unit-I_(L-7).pdfUnit-I_(L-7).pdf
Unit-I_(L-7).pdf
ManishSoni893835
 
Location horizontal and vertical curves Theory
Location horizontal and vertical curves Theory Location horizontal and vertical curves Theory
Location horizontal and vertical curves Theory
Bahzad5
 
2.horizontal curves
2.horizontal curves2.horizontal curves
2.horizontal curvesfenta dejene
 
Curves in Civil Survey
Curves in Civil SurveyCurves in Civil Survey
Curves in Civil Survey
Aamir Rajput Khan
 
Performance evaluation of nested costas codes
Performance evaluation of nested costas codesPerformance evaluation of nested costas codes
Performance evaluation of nested costas codes
AnithaBhavani1
 
Are pocket structures
Are pocket structuresAre pocket structures
Are pocket structures
Taty Genda de Reynoso
 
Are pocket structures
Are pocket structuresAre pocket structures
Are pocket structures
Taty Genda de Reynoso
 
What is I/Q phase
What is I/Q phaseWhat is I/Q phase
What is I/Q phase
Seokseong Jeon
 
Curves.pdf
Curves.pdfCurves.pdf
Curves.pdf
Deepak37004
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-pptjemimajerome
 
Formula.pdf
Formula.pdfFormula.pdf
Formula.pdf
Shanesimps
 
Presentation1
Presentation1Presentation1
Presentation1emitche6
 
Circle
CircleCircle

Similar to amit chauhan apt presentation (20)

Computer assisted part programming.pdf
Computer assisted part programming.pdfComputer assisted part programming.pdf
Computer assisted part programming.pdf
 
APT Programming in CAD CAM CIM for CNC programming
APT Programming in CAD CAM CIM for CNC programmingAPT Programming in CAD CAM CIM for CNC programming
APT Programming in CAD CAM CIM for CNC programming
 
Automatically programmed tool (ATP)
Automatically programmed  tool (ATP)Automatically programmed  tool (ATP)
Automatically programmed tool (ATP)
 
APT.ppt
APT.pptAPT.ppt
APT.ppt
 
LAY OUT CALCULATIONS (1).pptx
LAY OUT CALCULATIONS (1).pptxLAY OUT CALCULATIONS (1).pptx
LAY OUT CALCULATIONS (1).pptx
 
Unit-I_(L-7).pdf
Unit-I_(L-7).pdfUnit-I_(L-7).pdf
Unit-I_(L-7).pdf
 
Location horizontal and vertical curves Theory
Location horizontal and vertical curves Theory Location horizontal and vertical curves Theory
Location horizontal and vertical curves Theory
 
2.horizontal curves
2.horizontal curves2.horizontal curves
2.horizontal curves
 
Curves in Civil Survey
Curves in Civil SurveyCurves in Civil Survey
Curves in Civil Survey
 
Performance evaluation of nested costas codes
Performance evaluation of nested costas codesPerformance evaluation of nested costas codes
Performance evaluation of nested costas codes
 
Are pocket structures
Are pocket structuresAre pocket structures
Are pocket structures
 
Are pocket structures
Are pocket structuresAre pocket structures
Are pocket structures
 
Are pocket structures
Are pocket structuresAre pocket structures
Are pocket structures
 
What is I/Q phase
What is I/Q phaseWhat is I/Q phase
What is I/Q phase
 
Engineering Curves
Engineering CurvesEngineering Curves
Engineering Curves
 
Curves.pdf
Curves.pdfCurves.pdf
Curves.pdf
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-ppt
 
Formula.pdf
Formula.pdfFormula.pdf
Formula.pdf
 
Presentation1
Presentation1Presentation1
Presentation1
 
Circle
CircleCircle
Circle
 

More from Akash Maurya

Marketing information system akash deep maurya
Marketing information system akash deep mauryaMarketing information system akash deep maurya
Marketing information system akash deep maurya
Akash Maurya
 
vinay kumar actuators report
vinay kumar   actuators reportvinay kumar   actuators report
vinay kumar actuators report
Akash Maurya
 
vinay kumar actuators presentation
vinay kumar   actuators presentationvinay kumar   actuators presentation
vinay kumar actuators presentation
Akash Maurya
 
ashok mule rapid prototyping questions
ashok mule   rapid prototyping questionsashok mule   rapid prototyping questions
ashok mule rapid prototyping questions
Akash Maurya
 
ashok mule rapid prototyping presentation
ashok mule   rapid prototyping presentationashok mule   rapid prototyping presentation
ashok mule rapid prototyping presentation
Akash Maurya
 
prakash agrawal rapid tooling questions
prakash agrawal   rapid tooling questionsprakash agrawal   rapid tooling questions
prakash agrawal rapid tooling questions
Akash Maurya
 
prakash agrawal rapid tooling presentation
prakash agrawal   rapid tooling presentationprakash agrawal   rapid tooling presentation
prakash agrawal rapid tooling presentation
Akash Maurya
 
shashank soni sensors presentation
shashank soni   sensors presentationshashank soni   sensors presentation
shashank soni sensors presentation
Akash Maurya
 
santosh kumar fuzzy logic presentation
santosh kumar   fuzzy logic presentationsantosh kumar   fuzzy logic presentation
santosh kumar fuzzy logic presentation
Akash Maurya
 
mohsin dalvi artificial neural networks questions
mohsin dalvi   artificial neural networks questionsmohsin dalvi   artificial neural networks questions
mohsin dalvi artificial neural networks questions
Akash Maurya
 
mohsin dalvi artificial neural networks presentation
mohsin dalvi   artificial neural networks presentationmohsin dalvi   artificial neural networks presentation
mohsin dalvi artificial neural networks presentation
Akash Maurya
 
sameer amale edm presentation
sameer amale   edm presentationsameer amale   edm presentation
sameer amale edm presentation
Akash Maurya
 
vivek sharma agv and asrs
vivek sharma   agv and asrsvivek sharma   agv and asrs
vivek sharma agv and asrs
Akash Maurya
 
nakul agarwal micromachining presentation
nakul agarwal   micromachining presentationnakul agarwal   micromachining presentation
nakul agarwal micromachining presentation
Akash Maurya
 
ravi reverseengineeringitsapplication01 121101044845-phpapp02
ravi reverseengineeringitsapplication01 121101044845-phpapp02ravi reverseengineeringitsapplication01 121101044845-phpapp02
ravi reverseengineeringitsapplication01 121101044845-phpapp02
Akash Maurya
 
shivkumar pathak web based manufacturing presentation
shivkumar pathak   web based manufacturing presentationshivkumar pathak   web based manufacturing presentation
shivkumar pathak web based manufacturing presentation
Akash Maurya
 
nishit ambule special purpose machines questions
nishit ambule   special purpose machines questionsnishit ambule   special purpose machines questions
nishit ambule special purpose machines questions
Akash Maurya
 
nishit ambule special purpose machines presentation
nishit ambule   special purpose machines presentationnishit ambule   special purpose machines presentation
nishit ambule special purpose machines presentation
Akash Maurya
 
visheshwar oraon robotics presentation
visheshwar oraon   robotics presentationvisheshwar oraon   robotics presentation
visheshwar oraon robotics presentation
Akash Maurya
 
nikhil bhagat cmm presentation
nikhil bhagat   cmm presentationnikhil bhagat   cmm presentation
nikhil bhagat cmm presentation
Akash Maurya
 

More from Akash Maurya (20)

Marketing information system akash deep maurya
Marketing information system akash deep mauryaMarketing information system akash deep maurya
Marketing information system akash deep maurya
 
vinay kumar actuators report
vinay kumar   actuators reportvinay kumar   actuators report
vinay kumar actuators report
 
vinay kumar actuators presentation
vinay kumar   actuators presentationvinay kumar   actuators presentation
vinay kumar actuators presentation
 
ashok mule rapid prototyping questions
ashok mule   rapid prototyping questionsashok mule   rapid prototyping questions
ashok mule rapid prototyping questions
 
ashok mule rapid prototyping presentation
ashok mule   rapid prototyping presentationashok mule   rapid prototyping presentation
ashok mule rapid prototyping presentation
 
prakash agrawal rapid tooling questions
prakash agrawal   rapid tooling questionsprakash agrawal   rapid tooling questions
prakash agrawal rapid tooling questions
 
prakash agrawal rapid tooling presentation
prakash agrawal   rapid tooling presentationprakash agrawal   rapid tooling presentation
prakash agrawal rapid tooling presentation
 
shashank soni sensors presentation
shashank soni   sensors presentationshashank soni   sensors presentation
shashank soni sensors presentation
 
santosh kumar fuzzy logic presentation
santosh kumar   fuzzy logic presentationsantosh kumar   fuzzy logic presentation
santosh kumar fuzzy logic presentation
 
mohsin dalvi artificial neural networks questions
mohsin dalvi   artificial neural networks questionsmohsin dalvi   artificial neural networks questions
mohsin dalvi artificial neural networks questions
 
mohsin dalvi artificial neural networks presentation
mohsin dalvi   artificial neural networks presentationmohsin dalvi   artificial neural networks presentation
mohsin dalvi artificial neural networks presentation
 
sameer amale edm presentation
sameer amale   edm presentationsameer amale   edm presentation
sameer amale edm presentation
 
vivek sharma agv and asrs
vivek sharma   agv and asrsvivek sharma   agv and asrs
vivek sharma agv and asrs
 
nakul agarwal micromachining presentation
nakul agarwal   micromachining presentationnakul agarwal   micromachining presentation
nakul agarwal micromachining presentation
 
ravi reverseengineeringitsapplication01 121101044845-phpapp02
ravi reverseengineeringitsapplication01 121101044845-phpapp02ravi reverseengineeringitsapplication01 121101044845-phpapp02
ravi reverseengineeringitsapplication01 121101044845-phpapp02
 
shivkumar pathak web based manufacturing presentation
shivkumar pathak   web based manufacturing presentationshivkumar pathak   web based manufacturing presentation
shivkumar pathak web based manufacturing presentation
 
nishit ambule special purpose machines questions
nishit ambule   special purpose machines questionsnishit ambule   special purpose machines questions
nishit ambule special purpose machines questions
 
nishit ambule special purpose machines presentation
nishit ambule   special purpose machines presentationnishit ambule   special purpose machines presentation
nishit ambule special purpose machines presentation
 
visheshwar oraon robotics presentation
visheshwar oraon   robotics presentationvisheshwar oraon   robotics presentation
visheshwar oraon robotics presentation
 
nikhil bhagat cmm presentation
nikhil bhagat   cmm presentationnikhil bhagat   cmm presentation
nikhil bhagat cmm presentation
 

Recently uploaded

一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
SyedAbiiAzazi1
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
ChristineTorrepenida1
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
Heap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTS
Heap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTSHeap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTS
Heap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTS
Soumen Santra
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
ydteq
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
zwunae
 
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
dxobcob
 
Online aptitude test management system project report.pdf
Online aptitude test management system project report.pdfOnline aptitude test management system project report.pdf
Online aptitude test management system project report.pdf
Kamal Acharya
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 

Recently uploaded (20)

一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
Heap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTS
Heap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTSHeap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTS
Heap Sort (SS).ppt FOR ENGINEERING GRADUATES, BCA, MCA, MTECH, BSC STUDENTS
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
 
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
 
Online aptitude test management system project report.pdf
Online aptitude test management system project report.pdfOnline aptitude test management system project report.pdf
Online aptitude test management system project report.pdf
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 

amit chauhan apt presentation

  • 1. AUTOMATICALLY PROGRAMMED TOOLS (APT) Submitted by: Amit Kumar Chauhan MT13IND001
  • 2. INTRODUCTION OF APT  The APT language was the product of MIT development work on NC programming systems.  Its development began in June 1956, and it was first used in production around 1959.  Today it is the most widely used language in NC part programming.  Although first intended as a contouring language , modern versions of APT can be used for both positioning and continuous path programming.
  • 3. TYPES OF STATEMENTS IN APT The four types of statements in the APT language are: 1. Geometry Statements: which define primitive elements such as points, lines, circles, planes, cones and spheres. They are also sometimes called definition statements 2. Motion Statements: which describe the tool path in relation to the part geometry 3. Postprocessor Statements: which give specific machine tool code information as well as feeds and speeds 4. Auxiliary Statements: which give part and tool tolerances
  • 4. 1. GEOMETRY STATEMENTS  The general form of geometry statements is: symbol = geometry type / descriptive data An example of such statement is: P1 = POINT/100.0, 200.0, 300.0  The statement is made up of three sections.  The first is the symbol use to identify the geometric element. Normally the alphabet “P” is used for defining a Point, “C” for Circle, “L” for Line and “Pl” for Plane.  The second section of the geometry statement is an APT vocabulary word that identifies the type of geometry element. e.g. POINT, LINE, CIRCLE, PLANE, etc.  The third section of the geometry statement is the descriptive data
  • 5. DEFINITION OF POINT-1: ( COORDINATE VALUES ) P1 = POINT/2,2,2 X Y P1 2 2
  • 6. DEFINITION OF POINT-2: (INTERSECTION OF TWO PREVIOUSLY DEFINED LINES) P2 = POINT / INTOF,L1,L2 P2 L2 L1
  • 7. DEFINITION OF POINT-3: (INTERSECTION POINT OF A PREVIOUSLY DEFINED LINE AND CIRCLE) P3 = POINT / XSMALL, INTOF, L1, C1 Or P3 = POINT / YSMALL, INTOF, L1, C1 P4 = POINT / XLARGE, INTOF, L1, C1 Or P4 = POINT / YLARGE, INTOF, L1, C1 P3 C1 L1 P4 Y X
  • 8. DEFINITION OF POINT-4: (INTERSECTION POINT OF TWO PREVIOUSLY DEFINED CIRCLES) P3 = POINT / XSMALL, INTOF,C1,C2 Or P3 = POINT / YLARGE, INTOF, C1,C2 P4 = POINT / XLARGE, INTOF, C1,C2 Or P4 = POINT / YSMALL, INTOF, C1,C2 P3 P4 C1 C2 Y X
  • 9. DEFINITION OF POINT-5: (ON THE CIRCUMFERENCE OF A PREVIOUSLY DEFINED CIRCLE ) P2 = POINT / C1,ATANGL,75 P2 X C1 75°
  • 10. DEFINITION OF POINT-6: (CENTER POINT OF A PREVIOUSLY DEFINED CIRCLE ) P2 = POINT / CENTER, C1 C1 P2
  • 11. DEFINITION OF LINE-1: (PASSING THROUGH TWO PREVIOUSLY DEFINED POINTS) L1 = LINE/P1,P2 L1P2 P1
  • 12. DEFINITION OF LINE-2: (PASSING THROUGH A PREVIOUSLY DEFINED POINT AND TANGENT TO A PREVIOUSLY DEFINED CIRCLE) L3 = LINE / P1, RIGHT, TANTO, C1 L4 = LINE / P1, LEFT, TANTO, C1 The RIGHT or LEFT modifiers are applied by looking from the point to the circle and deciding whether the line will pass to the right or left of the circle. P1 C1 L3 L4
  • 13. DEFINITION OF LINE-3: (TANGENT TO TWO PREVIOUSLY DEFINED CIRCLES) L1 = LINE / LEFT, TANTO, C1, LEFT, TANTO, C2 L1 = LINE / RIGHT, TANTO, C2, RIGHT, TANTO, C1 The RIGHT & LEFT modifiers are applied looking from the first circle quoted to the second L1 C2 C1
  • 14. DEFINITION OF LINE-3: CONTD. (TANGENT TO TWO PREVIOUSLY DEFINED CIRCLES) L3 = LINE / LEFT, TANTO, C1, RIGHT, TANTO, C2 L4 = LINE / RIGHT, TANTO, C1, LEFT, TANTO, C2 C1 L4 L3 C2
  • 15. DEFINITION OF LINE-4: (PASSING THROUGH A PREVIOUSLY DEFINED POINT AT A SPECIFIED ANGLE TO THE X-AXIS) L2 = LINE / P1, ATANGL, 30 L2 = LINE / P1, ATANGL, -150 L2 30°P1 150° Y X
  • 16. DEFINITION OF LINE-5: (PASSING THROUGH A PREVIOUSLY DEFINED POINT, PARALLEL TO A PREVIOUSLY DEFINED LINE) L3 = LINE/P3,PARLEL,L2 L3 P3 L2
  • 17. DEFINITION OF LINE-6: (PASSING THROUGH A PREVIOUSLY DEFINED POINT, PERPENDICULAT TO A PREVIOUSLY DEFINED LINE) L3 = LINE/P1,PERPTO,L2 L3 L2 P1
  • 18. DEFINITION OF CIRCLE-1: (COORDINATES OF CENTER OF CIRCLE, WITH A GIVEN RADIUS) C1 = CIRCLE/X,Y,R (X,Y) C1 R
  • 19. DEFINITION OF CIRCLE-2: (PREVIOUSLY DEFINED CENTER POINT AND TANGENT TO A PREVIOUSLY DEFINED LINE) C2 = CIRCLE/CENTER,P1,TANTO,L2 P1 C2 L2
  • 20. DEFINITION OF CIRCLE-3: (PREVIOUSLY DEFINED CENTER POINT AND PASSING THROUGH ANOTHER PREVIOUSLY DEFINED POINT) C2 = CIRCLE/CENTER,P1,P2 P1 C2 P2
  • 21. DEFINITION OF CIRCLE-4: (PASSING THROUGH THREE PREVIOUSLY DEFINED POINTS) C3 = CIRCLE/P1,P2,P3 C3 P2 P3 P1
  • 22. DEFINITION OF PLANE: (BY THREE PREVIOUSLY DEFINED POINTS) PL4 = PLANE/P1,P2,P3
  • 23. 2. MOTION STATEMENTS  APT motion statements have a general format: motion command / descriptive data e.g. GOTO / P1  At the beginning of the motion statements tool must be given a starting point FROM / P0 Or FROM / -2, -2, 0  The FROM is an APT vocabulary word which indicates that this is the initial point from which others will be referenced. The FROM statement occurs only once at the start of the motion sequence.  In APT there are two basic types of motion statements: a) Point to Point motion b) Contouring motion
  • 24. A) POINT TO POINT MOTION  There are only two basic point to point motion commands GOTO: The GOTO statement instructs the tool to go to a particular point location specified in the descriptive data. e.g. GOTO / P2 GOTO / 2, 7, 0 GODLTA: The GODLTA command specifies an incremental move for the tool. e,g, GODLTA / 2, 7, 0 instructs the tool to move from its present position to 2 units in x-direction, 7 units in y-direction and 0 units in z-direction
  • 25. B) CONTOURING MOTION  In contouring motion commands the tool position must be continuously controlled throughout the move. For contouring movements, the tool is directed along intersecting surfaces. These surfaces have specific names in APT.
  • 26.  Drive Surface (DS): the surface against which the edge of tool rides.  Part Surface (PS) : the surface on which the bottom end of the tool rides.  Check Surface (CS) : the surface at which the tool motion is stop.
  • 27. HOW TO APPROACH THE CHECK SURFACE  Modifier words, such as TO, ON, PAST or TANTO, are used to govern the position of the tool in relation to the check surface.
  • 28. HOW TO USE THE DRIVE SURFACE  Motion statements, GOLFT (go to the left), GOFWD (go forward) and GORGT(go to the right), are also used to control the cutter motion.
  • 29. 3. POST PROCESSOR STATEMENT Post processor command for a particular tool are : MACHIN/ : use to specify the machine tool and call the post processor for the tool. e.g.- MACHIN/DRILL,3 COOLNT/ : allow the coolant fluid to be turned on or off. e.g.- COOLNT/OFF COOLNT /ON COOLNT/FLOOD COOLNT/MIST FEDRAT/: specifies the feed rate for moving the tool along the part surface in inches per minutes: e.g.- FEDRAT/4.5 SPINDL/: gives the spindle rotation speed in revolution per minute. e.g.- SPINDL/ 850 FINI: end of program
  • 30. 4. AUXILIARY STATEMENTS • It give part and tool tolerances. • The statement used for this are INTOL/0.0015 OUTTOL/0.001