alpha numerical program input

16
ALPHA NUMERICAL PROGRAM INPUT Word address programming CNC Mill

Upload: keiji

Post on 22-Feb-2016

21 views

Category:

Documents


0 download

DESCRIPTION

Word address programming CNC Mill. Alpha numerical program input. Basic Programing Terms. a. Character Digit Letter Symbols b. Word c. Block d. Program Format Combination of digit, letter, symbol is called: Alpha – Numerical Program Input Word address programming. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Alpha numerical program input

ALPHA NUMERICAL PROGRAM INPUT

Word address programmingCNC Mill

Page 2: Alpha numerical program input

Basic Programing Terms• a. Character• Digit• Letter• Symbols• b. Word• c. Block• d. Program Format

Combination of digit, letter, symbol is called: Alpha – Numerical Program Input Word address programming

Page 3: Alpha numerical program input

• A. Program Number ( O _ _ _ _) 1. range from O 0001 through O9999 2. Letter O plus a four digit number 3. The only time letter o is used in program

Page 4: Alpha numerical program input

Sequence Number

• B. Sequence Number (N_ _ _ _ ) indicates the sequence number of the block 1. Range from N0001 through N9999 2. Letter N plus a four digit number

Page 5: Alpha numerical program input

• C. Spindle Speed (S _ _ _ _ ) 1. Range from S150 through S6000) 2. Letter S plus a three or four digit number)

Page 6: Alpha numerical program input

• D. Feed rate (F _ _ _. _ _ )• Designates the relative speed of the cutting tool with respect to the work

1. Range from F .04 through F 196.00 2. Letter F plus a number and a decimal point 3. programming in inches per minute (ipm)

Page 7: Alpha numerical program input

Tool Function

• E. Tool Number (T _ _ )• Designates the number of the tools to be used

1. range from T1 through T 20 2. Letter T plus a number

Page 8: Alpha numerical program input

Input Function

• F. H Codes ( H _ _ ) 1. range from H 1 through H20 2. letter H plus a number 3. H codes are tool offset registers and must correspond precisely to tool numbers, i.e., T1 &H1, T2 & H2,

Page 9: Alpha numerical program input

Input Function

• G. D Codes ( D _ _ ) 1. range from D 1 through D20 2. letter D plus a number 3. D codes are tool diameter offset registers and must correspond precisely to tool numbers, i.e., T1 &H1, D1

Page 10: Alpha numerical program input

• H. X Dimension (X _ _ _ . _ _ _ _) 1. letter X plus a number and a decimal point in all instances expect when X = 0 2. leading and trailing zeroes can be omitted in all dimensioning addresses• I. Y Dimension (Y_ _ _ . _ _ _ _)• J. Z Dimension ( _ _ . _ _ _ )

Page 11: Alpha numerical program input

G codes , M codes

• G code: Preparatory Function are used to set the control for various machine movement such as:

• Linear interpolation G01• Rapid travers G00• Circular interpolation G02, G03

• M code: Miscellaneous function direct the controller to execute the function indicated such :

• End of program M02, M30• Tool Change M06• Turn the coolant off M09

Page 12: Alpha numerical program input

• Address:• G00 X-.375 S 800 F 8 M06 T 2 D05

Page 13: Alpha numerical program input

• Words:• N0020• G90• G00 • X-2.5 • Y 3.75 • S1000 • ;

• Block

• N0020 G90 G00 X-2.5 Y 3.75 S1000 ;

Page 14: Alpha numerical program input

Part Programming• A part program is simply a series of command blocks that execute motions and

machine functions to manufacture a part

Page 15: Alpha numerical program input

End of presentation

Page 16: Alpha numerical program input