An NC program is a program that defines the entire sequence of a machining operation to be carried out on a particular CNC machine tool:

Size: px
Start display at page:

Download "An NC program is a program that defines the entire sequence of a machining operation to be carried out on a particular CNC machine tool:"

Transcription

1 Outline MC Programming I NC Program NC Codes Blocks G and M codes Other codes Programming Basic Motions Rapid travel Linear motion Circular motion Examples NC Program An NC program is a program that defines the entire sequence of a machining operation to be carried out on a particular CNC machine tool: It informs the CNC controller about the trajectory of the cutter(s) employed so as to sculpture the part to the required dimensions and tolerances. It tells the controller which tools to be used through out the machining operation. which h auxillary functions to be performed during the process. Chapter 5a ME 0 2 Chapter 5a ME 0 NC Code Elements of NC Program An NC program is simply the translation of a machining process plan into the NC codes that are understandable by the CNC machine controller. NC code is originally based on recommended industry standard RS-27B of Even though ISO has issued an international standard on the NC Codes (e.g. ISO 698/1), the controllers made by different manufacturers employ different NC codes. Despite many similarities, an NC program is NOT portable to controllers with different design. Each line of an NC program is referred to as block. Format of a block is <Line #> <Motion Type or Machine Operation Mode> < Coord> < Coord> < Coord> <Feedrate> <Spindle Speed> <Misc. Functions> Chapter 5a ME 0 Chapter 5a ME 0 5

2 Block The controller reads the program one block at a time. Blocks do not extend past one line. The order of information on a block does not matter: G is the same as G0 0.0 However, most programmers use the following word order: N G I J K U V W A B C P Q R F S T M H We ll go over the meaning of each letter as the course progresses. G and M Codes Machining centers have two basic types of codes: G codes also called preparatory codes Tell the machine what type of movement or function should be performed. For example, rapid moves, linear feed moves, arc feed moves, thread cutting, etc. M codes also called miscellaneous functions Turn the spindle on and off, coolant on and off, etc. Chapter 5a ME 0 6 Chapter 5a ME 0 7 Common G Codes Common M Codes G0 G1 G2 G Rapid travel (point-to-point) t i t) Rectilinear motion Circular motion (clockwise) Circular motion (counter clockwise) G20 G21 G28 G90 G91 G Dwell (wait) mode Imperial units (inch) Metric units (mm) Return to reference point (home) Absolute coordinate mode Incremental coordinate d M0 M M M5 M8/M9 M0 Program stop Start spindle (clockwise) Start spindle (counter clockwise) Turn spindle off Turn coolant on / off End-of-program Chapter 5a ME 0 8 Chapter 5a ME 0 9

3 Other Codes Specification of Coordinates O N Program number (FANUC) Line or block number,, New coordinates in [mm or inch] F S T Feedrate in [mm/min] or [inch/min] Spindle speed in [rpm] Tool number Let the programming g resolution (BLU) of the machine be mm. 1. = 1.0 mm 1 = mm (1 BLU) 100 = mm (100 BLU) Don t forget to put decimal points on all numbers except 0! Chapter 5a ME 0 10 Chapter 5a ME 0 11 Modal Codes Most codes are modal (sticky). That is, they stay in effect until someone changes them. Preferred N150 G F00.0 N Easy to read and change. Works but poor style! N150 G F00.0 N160 G F00.0 Hard to follow and changes require considerable effort. Notes on Codes! Most machines only allow one M code per block. The M code is generally the one to be executed in a particular line. A program must start out with a name: FANUC: O followed by a five digit number SINUMERIK: name with a maximum of 2 characters The tool code (T) for CNC machining centers is usually two digits representing the tool number. All alphanumeric characters must be in uppercase. Chapter 5a ME 0 12 Chapter 5a ME 0 1

4 Basic Motions Rapid Travel (Point-to-point) to Rectilinear Motion Circular Motion Helical l Motion Parabolic Motion Complex Motion Bicubic Splines NURBS Chapter 5a ME 0 1 Rapid Travel Each axis G0 x f y f z f independently moves by a (prescribed) maximum speed until it reaches its destination. i i f f Chapter 5a ME 0 15 Rectilinear Motion Programming g Example 1 Move to the destination on a rectilinear path at the specified feedrate. f is usually a five-digit number (positive integer) representing the feedrate in [mm/min] (FANUC) (not drawn to scale) 100 Material: AISI-100 Tool: HSS End-mill D = 10 mm Four flutes Feedrate: 250 mm/min Spindle Speed: 900 rpm Coolant off Initial Position 20 Chapter 5a ME 0 16 Chapter 5a ME 0 17

5 NC Program for Example 1 NC Program 1 (Cont d) PROG_01 ; PROGRAM NUMBER N01 G21 G90 S900 M ; METRIC / ABS / 900 RPM / CW N02 G ; RAPID MOVE TO P1 N0 G F250.0 ; MOVE TO P2 N N ; MOVE TO P ; MOVE TO P Chapter 5a ME 0 18 Chapter 5a ME 0 19 NC Program 1 (Cont d) Incremental Version PROG_01_INCR N01 G21 G90 S900 M N02 G N0 G91 G F250.0 N N N N07 G90 G M5 N08 M0 ; PROGRAM NUMBER ; METRIC / ABS / 900 RPM / CW ; RAPID MOVE TO P1 ; MOVE TO P2 ; MOVE TO P ; MOVE TO P ; MOVE TO P5 ; RAPID MOVE TO P6 / SPDL OFF ; END OF PROGRAM N ; MOVE TO P5 N07 G M5 ; RAPID MOVE TO P6 / SPDL OFF N08 M0 ; END OF PROGRAM Chapter 5a ME 0 20 Chapter 5a ME 0 21

6 CNCSimulator Example 1 Chapter 5a ME 0 22 Circular Motion Plane: x, y, z are the coordinates of the destination point (absolute or incremental). Plane: Extra parameters such as R, I, J, and K are needed to specify an arc. r is the radius of the circle. Plane: r < 0 if arc angle > 180 o. i,,j, k are the incremental coordinates of the circle center Complete Circle: from the starting position. If any of i, j, k words are omitted, it is assumed 0. G17 G I10.0 F00.0 ; HERE J=0 Chapter 5a ME 0 2 Direction of Rotation Examples for Circular Motion By definition, G2: Clockwise (CW) rotation G: Counter-clockwise (CCW) Mathematical positive direction. As a simple rule, when the thumb of your right-hand is aligned with a principal axis, the remaining fingers point the direction of G (CCW) rotation in that plane. A C (angle > 180 o ): B c C r (x c, y c ) center A (x a, y a ) A D: (x d,y d ) D c Chapter 5a ME 0 2 Chapter 5a ME 0 25

7 Examples (Cont d) Programming Example 2 - Smiley C (x c, y c ) (x b, y b ) B r center j (> 0) (x d,y d ) A (x a, y a ) A B: Material: AL-7076 Tool: HSS End-mill (Slot Drill) D = 18 mm Two flutes Feedrate: 00 mm/min Spindle Speed: 1200 rpm Coolant on D i (< 0) where x b = x b x a y b = y b y a Chapter 5a ME 0 26 Chapter 5a ME 0 27 NC Program 2 - Smiley 1, 2 2, 2' 2' 5 PROG_02 N01 G21 G90 S1200 M N02 G N0 M8 ; PROGRAM NUMBER ; METRIC / ABS / 1200 RPM / CW ; RAPID MOVE TO P1 ; COOLANT ON 1, 2 N0 G17 G2 I59.0 J0 F00.0 ; PLANE / CW FULL CIRCLE N05 G0 5.0 ; RAPID MOVE TO P2 N ; RAPID MOVE TO P 2 Chapter 5a ME 0 28 Chapter 5a ME 0 29

8 , , 7, 8 8 9, , 8 9 N07 G1-8.0 N N09 G ; MOVE TO P ; MOVE TO P5 ; RAPID MOVE TO P6 N10 G1-8.0 N N12 G0 5.0 ; MOVE TO P7 ; MOVE TO P8 ; RAPID MOVE TO P9 Chapter 5a ME 0 0 Chapter 5a ME 0 1 9, N1 G1-8.0 N1 G I-25.0 J ; MOVE TO P10 ; MOVE TO P11 / CIRC. CW N15 G1 5.0 ; MOVE TO P12 N16 G M9 ; RAPID MOVE TO P1 / COOLANT OFF N17 0 M5 ; RAPID MOVE TO P1 / SPDL OFF N18 M0 ; END OF PROGRAM Chapter 5a ME 0 2 Chapter 5a ME 0

9 CNCSimulator - Smiley Helical Interpolation With helical interpolation, two motions are superimposed and executed in parallel: l A plane circular motion on which vertical linear motion o is superimposed Chapter 5a ME 0 Chapter 5a ME 0 5 Notes oeson Tool Rotation oa o Notes on Format Milling type (up- or down-milling) is a consequence of feed motion. It would be a serious mistake to try to control the milling type via changing the rotation of the tool! Remember right-hand tools must rotate t clockwise direction to perform machining (via issuing M command). Otherwise, they will fail to cut! For machining centers, the direction of spindle rotation is determined when the machine is viewed from the upperside. NC programs (to be uploaded!) are usually written via text (TT file) editors (notepad, edit, vi etc.). Format of the program may vary depending on the controller of the CNC machine. For some CNC controllers, line (block) numbers are optional and are mainly used for tagging purposes. If desired, spaces (ASCII character #2) may be omitted in a line. However, it obscures the readability of the program. Line end is usually indicated by either semi-colon (;) or ASCII control character carriage return (#1). NC programs may contain comments that are ignored by the controller. For FANUC Controllers, comments are written in parantheses (...). For Siemens Controllers, comments are written after semicolon (;). Chapter 5a ME 0 6 Chapter 5a ME 0 7

Interpolation. Create a program for linear interpolation of a three axis manufacturing machine with a constant

Interpolation. Create a program for linear interpolation of a three axis manufacturing machine with a constant QUESTION 1 Create a program for linear interpolation of a three axis manufacturing machine with a constant velocity profile. The inputs are the initial and final positions, feed rate, and sample period.

More information

Drive Control Instructions

Drive Control Instructions Drive Control Instructions DRV: High Speed Positioning 16Bits Instruction: -- 32 Bits Instruction: Below Suitable Model: Function & Action X axis and Y axis high speed positioning with the maximum speed:

More information

STANDARD & OPTION 1 X, Y, Z axis linear scale 2 Saddle slideway cover 3 Table slideway cover 4 Table Splash guard 5 Working light 6 Coolant circulatio

STANDARD & OPTION 1 X, Y, Z axis linear scale 2 Saddle slideway cover 3 Table slideway cover 4 Table Splash guard 5 Working light 6 Coolant circulatio STANDARD & OPTION X, Y, Z axis linear scale 2 Saddle slideway cover 3 Table slideway cover Table Splash guard 5 Working light 6 Coolant circulation system 7 8 ITEM Bolts & leveling pads for installation

More information

Single axis (X) move example: X.25 This will move to a diameter of.5 The programming in X can be done as radius movements (G73) or diameter (G72).

Single axis (X) move example: X.25 This will move to a diameter of.5 The programming in X can be done as radius movements (G73) or diameter (G72). Linear one and two axis moves are accomplished by giving the axis and the value to move. The result of a command will depend on which mode is active: G90 or G91, and G73 (radius) or G72 (diameter). X moves

More information

Haas trunnions have more than one configuration. Thus, to make a program for the trunnion, you must know these facts:

Haas trunnions have more than one configuration. Thus, to make a program for the trunnion, you must know these facts: Haas Technical Documentation Trunnion Information Scan code to get the latest version of this document Translation Available Trunnion Features Haas trunnions have more than one configuration. Thus, to

More information

ST - DS - Toolholders to the Spindle Centerline - Correction

ST - DS - Toolholders to the Spindle Centerline - Correction LAST UPDATED: 11/28/2018 Page 1 of 9 pages Toolholders to the Spindle Centerline - Correction Page 2 of 9 pages This section tells you how to align the toolholders [1] to the spindle centerline [2]. 1

More information

Study Guide. Physics 3104A. Science. Force, Motion and Energy. Adult Basic Education. Prerequisite: Physics 2104B or Physics 2204.

Study Guide. Physics 3104A. Science. Force, Motion and Energy. Adult Basic Education. Prerequisite: Physics 2104B or Physics 2204. Adult Basic Education Science Force, Motion and Energy Prerequisite: Physics 2104B or Physics 2204 Credit Value: 1 Text: Physics: Concepts and Connections. Irwin, 2002 Physics Concentration Physics 1104

More information

Electronic Edge Finder Run-out Compensation, Version 1.0

Electronic Edge Finder Run-out Compensation, Version 1.0 Electronic Edge Finder Run-out Compensation, Version 1.0 By R. G. Sparber Protected by Creative Commons. 1 Scope For some milling machine 2 operations, the Center Of Rotation (COR) of the spindle must

More information

Pitch Circle. Problem 8.17

Pitch Circle. Problem 8.17 Follower Travel, mm Displacement, cm 1.5 1.0 0.5 0 1 3 4 5 6 7 8 9 10 Cam Rotation Angle 90 Pitch Circle 0 1 3 4 5 10 9 8 7 6 Problem 8.17 Construct the profile of a disk cam that follows the displacement

More information

Technical Notes and Cutting Formulas BELIN PRECISION TOOLS. Recommended cutting & feed rates for specific materials METRTIC FORMULAS

Technical Notes and Cutting Formulas BELIN PRECISION TOOLS. Recommended cutting & feed rates for specific materials METRTIC FORMULAS Technical Notes and Cutting Formulas m = meter = 39.37 inches mm = millimeter =.039 inches mn = minute BELIN PRECISION TOOLS METRTIC FORMULAS Recommended cutting & feed rates for specific materials Select

More information

Coating K = TFE wear resist, dry lubricant Kerkote X = Special coating, (Example: Kerkote with grease)

Coating K = TFE wear resist, dry lubricant Kerkote X = Special coating, (Example: Kerkote with grease) HAYD: 0 WGS0 Low Profile, Screw Driven Slide WGS0 Linear Rail with Hybrid 000 Series Size Single and Double Stacks and 000 Series Size Single and Double Stacks Kerk Motorized WGS Linear Slide utilizes

More information

M A N U F A C T U R I N G P R O C E S S E S ME A S S I G N M E N T

M A N U F A C T U R I N G P R O C E S S E S ME A S S I G N M E N T H.- J. Steinmetz, Jan. 004 M A N U F A C T U R I N G P R O C E S S E S ME 38.3 A S S I G N M E N T 0 0 4 A machine shop has 15 workers and one shop foreman. The shop has to manufacture a quantity of 800

More information

Clausing Industrial, Inc. Variable Speed 20" Single and Multi-spindle, Belt Drive Industrial Drill Presses

Clausing Industrial, Inc. Variable Speed 20 Single and Multi-spindle, Belt Drive Industrial Drill Presses www.clausing-industrial.com Variable Speed 20" Single and Multi-spindle, Belt Drive Industrial Drill Presses Clausing Industrial, Inc. Two Speed Variable Speeds 150-2000rpm Variable Speeds 200-1300rpm

More information

Effective Measurement Method of Thermal Deformation of Machine Tools Caused by Linear Axis Motion

Effective Measurement Method of Thermal Deformation of Machine Tools Caused by Linear Axis Motion Effective Measurement Method of Thermal Deformation of Machine Tools aused by inear Axis Motion 1. Introduction Shinji Shimizu Noboru Imai Department of Mechanical Engineering Sophia University Tokyo The

More information

DNM 750 Ⅱ series. series. High Speed High Performance Horizontal Machining Center DNM 750 [ L ] Ⅱ DNM 750 [ L ] / 50 Ⅱ. ver.

DNM 750 Ⅱ series. series. High Speed High Performance Horizontal Machining Center DNM 750 [ L ] Ⅱ DNM 750 [ L ] / 50 Ⅱ. ver. DNM 750Ⅱ series High Speed High Performance Horizontal Machining Center DNM 750 Ⅱ series DNM 750 [ L ] Ⅱ DNM 750 [ L ] / 50 Ⅱ ver. EN 160803 SU High Productivity Vertical Machining Center The DNM 750 includes

More information

2015 MPS Qualify Exam

2015 MPS Qualify Exam 2015 MPS Qualify Exam The examination will be four hours long. There will be eight questions in all. Students must select 7 out of 8 questions to answer. The exam is open book and open notes. The students

More information

Hand Coding AX Plane G Code for a Centroid Equipped Mill In Order to Cut a Helix, Version 2.0

Hand Coding AX Plane G Code for a Centroid Equipped Mill In Order to Cut a Helix, Version 2.0 Hand Coding AX Plane G Code for a Centroid Equipped Mill In Order to Cut a Helix, Version 2.0 By R. G. Sparber Protected by Creative Commons. 1 Summary In order to cut a helix of length L, diameter d,

More information

Variable Speed 20" Single and Multi-spindle, Belt Drive Industrial Drill Presses

Variable Speed 20 Single and Multi-spindle, Belt Drive Industrial Drill Presses www.clausing-industrial.com Variable Speed 20" Single and Multi-spindle, Belt Drive Industrial Drill Presses Two Speed Variable Speeds 150-2000rpm Variable Speeds 200-1300rpm Variable Speeds 300-2000rpm

More information

150 Lecture Notes - Section 6.1 Angle Measure

150 Lecture Notes - Section 6.1 Angle Measure c Marcia Drost, February, 008 Definition of Terms 50 Lecture Notes - Section 6. Angle Measure ray a line angle vertex two rays with a common endpoint the common endpoint initial side terminal side Standard

More information

55% OFF CARBIDE HIGH SPEED STEEL COBALT. Phone: (616) Toll-Free: Fax: (616) cbdekorne.com

55% OFF CARBIDE HIGH SPEED STEEL COBALT. Phone: (616) Toll-Free: Fax: (616) cbdekorne.com CARBIDE HIGH SPEED STEEL COBALT Phone: () - Toll-Free: -00--0 Fax: () - cbdekorne.com PLEASE TAKE % OFF PRINTED S END MICRO END THREAD COUNTER SINKS CHAMFER DRILL TAPS & DIES OUR COMMITMENT TO YOU...

More information

Deterministic Finite Automaton (DFA)

Deterministic Finite Automaton (DFA) 1 Lecture Overview Deterministic Finite Automata (DFA) o accepting a string o defining a language Nondeterministic Finite Automata (NFA) o converting to DFA (subset construction) o constructed from a regular

More information

TOPCNC TC55V Instruction Manual.

TOPCNC TC55V Instruction Manual. TOPCNC TC55V Instruction Manual WWW.ChinaPlccenter.COM 1. Product Introduction TC55E is an upgrading version of TC55. It is equipped with 3.5 inch color screen, RS 485 communication, Chinese/English Switch,

More information

Worksheet 1.7: Introduction to Vector Functions - Position

Worksheet 1.7: Introduction to Vector Functions - Position Boise State Math 275 (Ultman) Worksheet 1.7: Introduction to Vector Functions - Position From the Toolbox (what you need from previous classes): Cartesian Coordinates: Coordinates of points in general,

More information

MACHINING CENTER FIXED DOUBLE COLUMNS. Quality, Credibility, Innovation, Service. Auto A/C swiveling head. Auto 90 o milling head

MACHINING CENTER FIXED DOUBLE COLUMNS. Quality, Credibility, Innovation, Service. Auto A/C swiveling head. Auto 90 o milling head Quality, Credibility, Innovation, Service Special angle milling head 3D Tilted Working Plane Indexing Axis Simultaneous milling head FIXED DOUBLE COLUMNS MACHINING CENTER Machine coordinate system Workplece

More information

Measurement. Scientific Notation. Measurements and Problem Solving. Writing Numbers in Scientific Notation

Measurement. Scientific Notation. Measurements and Problem Solving. Writing Numbers in Scientific Notation Measurement Chapter 2 Measurements and Problem Solving Quantitative observation Comparison based on an accepted scale e.g. Meter stick Has 2 parts number and unit Number tells comparison Unit tells scale

More information

Large Vertical Turning Center with RAM Head Spindle

Large Vertical Turning Center with RAM Head Spindle Large Vertical Turning Center with RAM Head Spindle With its large capacity and heavy duty machining capability, The PUMA VTS series provides excellent productivity for large workpieces 02 Features 1 Robust

More information

Circuit Analysis and Ohm s Law

Circuit Analysis and Ohm s Law Study Unit Circuit Analysis and Ohm s Law By Robert Cecci Circuit analysis is one of the fundamental jobs of an electrician or electronics technician With the knowledge of how voltage, current, and resistance

More information

Journal of Advanced Mechanical Design, Systems, and Manufacturing

Journal of Advanced Mechanical Design, Systems, and Manufacturing Vol., No., 7 Evaluation of Synchronous Motion in Five-axis Machining Centers With a Tilting Rotary Table * Masaomi TSUTSUMI ** Daisuke YUMIZA ** Keizo UTSUMI *** and Ryuta SATO ** **Tokyo University of

More information

PRODUCT CATALOG

PRODUCT CATALOG www.engman-taylor.com 0 PRODUCT CATALOG OUR COMMITMENT TO YOU... 00% MADE PREMIUM INDUSTRIAL QUALITY PRODUCTS % ORDER FULFILLMENT SAME DAY SHIPPING NO MINIMUM ORDER REQUIREMENTS EXCEPTIONAL QUALITY CONTROL

More information

Study of the Effect of Progressive Feed Rate on the Cutting Force in CNC End Milling of AISI 1045 Steel

Study of the Effect of Progressive Feed Rate on the Cutting Force in CNC End Milling of AISI 1045 Steel Study of the Effect of Progressive Feed Rate on the Cutting Force in CNC End Milling of AISI 1045 Steel K.S.Badrinathan #1,, L.Karunamoorthy *2 # Department of Mechanical Engineering, Sri Venkateswara

More information

TOPCNC TC55V Instruction Manual

TOPCNC TC55V Instruction Manual TOPCNC TC55V Instruction Manual 1. Product Introduction TC55E is an upgrading version of TC55. It is equipped with 3.5 inch color screen, RS 485 communication, Chinese/English Switch, and USB connection.

More information

Fig. 1: Example of Scallops

Fig. 1: Example of Scallops UNCERTAINTY ANALYSIS IN LASER DEPOSITION FINISH MACHINING OPERATIONS ABSTRACT The Laser Aided Manufacturing Process (LAMP) from Missouri S&T is a laser based metals rapid manufacturing process that uses

More information

OPERATING INSTRUCTIONS ROTOKLICK MK 150 MULTIKLICK MK 150 MULTIDEX

OPERATING INSTRUCTIONS ROTOKLICK MK 150 MULTIKLICK MK 150 MULTIDEX OPERATING INSTRUCTIONS ROTOKLICK MK 150 MULTIKLICK MK 150 MULTIDEX Type: Drehfutter Type: Wippe Type: Traverse Type: Würfel Haff & Schneider GmbH & Co. OHG Obere Wank 2 D-87484 Nesselwang www.haff-schneider.com

More information

Read the following BEFORE getting started:

Read the following BEFORE getting started: BASIC MEASUREMENTS Read the following BEFORE getting started: Ruler: A ruler, or rule, is an instrument used in geometry, technical drawing and engineering/ building to measure distances and/or to rule

More information

Centripetal Force. Equipment: Centripetal Force apparatus, meter stick, ruler, timer, slotted weights, weight hanger, and analog scale.

Centripetal Force. Equipment: Centripetal Force apparatus, meter stick, ruler, timer, slotted weights, weight hanger, and analog scale. Centripetal Force Equipment: Centripetal Force apparatus, meter stick, ruler, timer, slotted weights, weight hanger, and analog scale. 1 Introduction In classical mechanics, the dynamics of a point particle

More information

Teach Yourself AP Physics in 24 Hours. and Equilibrium. Physics Rapid Learning Series

Teach Yourself AP Physics in 24 Hours. and Equilibrium. Physics Rapid Learning Series Rapid Learning Center Chemistry :: Biology :: Physics :: Math Rapid Learning Center Presents Teach Yourself AP Physics in 4 Hours 1/53 *AP is a registered trademark of the College Board, which does not

More information

Chapter 13. Editing Intermediate Files. Overview

Chapter 13. Editing Intermediate Files. Overview Chapter 13 Editing Intermediate Files Overview The SACPRE intermediate file is an ASCII file that contains records or lines of information. In SACPRE and HEC-1 each record represents a command for the

More information

Trigonometric Functions. Copyright Cengage Learning. All rights reserved.

Trigonometric Functions. Copyright Cengage Learning. All rights reserved. 4 Trigonometric Functions Copyright Cengage Learning. All rights reserved. 4.1 Radian and Degree Measure Copyright Cengage Learning. All rights reserved. What You Should Learn Describe angles. Use radian

More information

Uncertainty due to Finite Resolution Measurements

Uncertainty due to Finite Resolution Measurements Uncertainty due to Finite Resolution Measurements S.D. Phillips, B. Tolman, T.W. Estler National Institute of Standards and Technology Gaithersburg, MD 899 Steven.Phillips@NIST.gov Abstract We investigate

More information

Rotational Kinematics and Dynamics. UCVTS AIT Physics

Rotational Kinematics and Dynamics. UCVTS AIT Physics Rotational Kinematics and Dynamics UCVTS AIT Physics Angular Position Axis of rotation is the center of the disc Choose a fixed reference line Point P is at a fixed distance r from the origin Angular Position,

More information

Introductory Chemistry: A Foundation, 6 th Ed. Introductory Chemistry, 6 th Ed. Basic Chemistry, 6 th Ed.

Introductory Chemistry: A Foundation, 6 th Ed. Introductory Chemistry, 6 th Ed. Basic Chemistry, 6 th Ed. Introductory Chemistry: A Foundation, 6 th Ed. Introductory Chemistry, 6 th Ed. Basic Chemistry, 6 th Ed. by Steven S. Zumdahl, Donald J. DeCoste University of Illinois Chapter 2 Measurements and Calculations

More information

CHEMDRAW ULTRA ITEC107 - Introduction to Computing for Pharmacy. ITEC107 - Introduction to Computing for Pharmacy 1

CHEMDRAW ULTRA ITEC107 - Introduction to Computing for Pharmacy. ITEC107 - Introduction to Computing for Pharmacy 1 CHEMDRAW ULTRA 12.0 ITEC107 - Introduction to Computing for Pharmacy 1 Objectives Basic drawing skills with ChemDraw Bonds, captions, hotkeys, chains, arrows Checking and cleaning up structures Chemical

More information

Problem A Self-Assembly

Problem A Self-Assembly Problem A Self-Assembly Time Limit: 4 seconds Automatic Chemical Manufacturing is experimenting with a process called self-assembly. In this process, molecules with natural affinity for each other are

More information

Digital Systems Overview. Unit 1 Numbering Systems. Why Digital Systems? Levels of Design Abstraction. Dissecting Decimal Numbers

Digital Systems Overview. Unit 1 Numbering Systems. Why Digital Systems? Levels of Design Abstraction. Dissecting Decimal Numbers Unit Numbering Systems Fundamentals of Logic Design EE2369 Prof. Eric MacDonald Fall Semester 2003 Digital Systems Overview Digital Systems are Home PC XBOX or Playstation2 Cell phone Network router Data

More information

Principles Of Engineering. Part A

Principles Of Engineering. Part A Principles Of Engineering Final Examination Part A Fall 2007 Student Name: Date: Class Period: Total Points: /40 Converted Score: /50 Page 1 of 11 Directions: Circle the letter of the response that best

More information

RGS08 Linear Rails: RGS08 Non-Motorized With and Without Guide Screw. RGS08 Non-Motorized Linear Rails

RGS08 Linear Rails: RGS08 Non-Motorized With and Without Guide Screw. RGS08 Non-Motorized Linear Rails RGS08 RGS08 Non-Motorized With and Without Guide RGS08 Non-Motorized Linear Rails RG Series linear rails are available: RGS08 Non-Motorized, -driven linear rail RGS08 Non-Motorized linear rail without

More information

New Mexico Tech Hyd 510

New Mexico Tech Hyd 510 Vectors vector - has magnitude and direction (e.g. velocity, specific discharge, hydraulic gradient) scalar - has magnitude only (e.g. porosity, specific yield, storage coefficient) unit vector - a unit

More information

Instructions for using the Point Mass Ballistics Solver 2.0 Computer Program

Instructions for using the Point Mass Ballistics Solver 2.0 Computer Program Instructions for using the Point Mass Ballistics Solver 2.0 Computer Program Overview This ballistics program was designed to be an educational tool, as well as a functional and accurate program for generating

More information

BARNHART BOLT - Late Model Okuma & Hurco CNC Machinery

BARNHART BOLT - Late Model Okuma & Hurco CNC Machinery Asset Sales, Inc. BARNHART BOLT - Late Model Okuma & Hurco CNC Machinery (5) Okuma CNC Turning Centers new as 2011, Hurco CNC VMC, mfg.2014, Mori Seiki HD Engine Lathe, Alliant Var. Speed Knee Mill, Plus

More information

Constrained Rectilinear Motion Dynamics Laboratory, Spring 2008

Constrained Rectilinear Motion Dynamics Laboratory, Spring 2008 Constrained Rectilinear Motion Dynamics Laboratory, Spring 2008 Pulley systems are commonly used (in cranes, for example) to gain a mechanical advantage, allowing heavy loads to be lifted by smaller forces

More information

11.3 Solving Radical Equations

11.3 Solving Radical Equations Locker LESSON 11. Solving Radical Equations Common Core Math Standards The student is expected to: A-REI. Solve simple rational and radical equations in one variable, and give examples showing how extraneous

More information

SYNCHROMASTER HYDRAULIC PRESSBRAKES

SYNCHROMASTER HYDRAULIC PRESSBRAKES HYDRAULIC PRESSBRAKES HYDRAULIC PRESSBRAKES 02_ Synchromaster 30100 STANDARD EXECUTION - Electro-hydraulic levelling and depth stop setting by Synchro system - Automatic compensation of the sideframe deflection

More information

Example 1 Give the degree measure of the angle shown on the circle.

Example 1 Give the degree measure of the angle shown on the circle. Section 5. Angles 307 Section 5. Angles Because many applications involving circles also involve q rotation of the circle, it is natural to introduce a measure for the rotation, or angle, between two rays

More information

Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Differentiation 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Differentiation 1 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. 1 Launch Mathematica. Type

More information

RGS06 Linear Rails: RGS06 Non-Motorized With and Without Guide Screw. RGS06 Non-Motorized Linear Rails

RGS06 Linear Rails: RGS06 Non-Motorized With and Without Guide Screw. RGS06 Non-Motorized Linear Rails on-motorized With and Without Guide on-motorized Linear Rails RG Series linear rails are available: on-motorized, -driven linear rail on-motorized, Wide format, -driven linear rail on-motorized, Wide format,

More information

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests:

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests: One sided tests So far all of our tests have been two sided. While this may be a bit easier to understand, this is often not the best way to do a hypothesis test. One simple thing that we can do to get

More information

Vectors 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Vectors 1. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Vectors 1 The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996. Launch Mathematica. Type

More information

Lab 9 - Rotational Dynamics

Lab 9 - Rotational Dynamics 145 Name Date Partners Lab 9 - Rotational Dynamics OBJECTIVES To study angular motion including angular velocity and angular acceleration. To relate rotational inertia to angular motion. To determine kinetic

More information

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012

CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012 CSCE 155N Fall 2012 Homework Assignment 2: Stress-Strain Curve Assigned: September 11, 2012 Due: October 02, 2012 Note: This assignment is to be completed individually - collaboration is strictly prohibited.

More information

The hitch in all of this is figuring out the two principal angles and which principal stress goes with which principal angle.

The hitch in all of this is figuring out the two principal angles and which principal stress goes with which principal angle. Mohr s Circle The stress basic transformation equations that we developed allowed us to determine the stresses acting on an element regardless of its orientation as long as we know the basic stresses σx,

More information

hexadecimal-to-decimal conversion

hexadecimal-to-decimal conversion OTHER NUMBER SYSTEMS: octal (digits 0 to 7) group three binary numbers together and represent as base 8 3564 10 = 110 111 101 100 2 = (6X8 3 ) + (7X8 2 ) + (5X8 1 ) + (4X8 0 ) = 6754 8 hexadecimal (digits

More information

DMS, LINEAR AND ANGULAR SPEED

DMS, LINEAR AND ANGULAR SPEED DMS, LINEAR AND ANGULAR SPEED Section 4.1A Precalculus PreAP/Dual, Revised 2017 viet.dang@humbleisd.net 8/1/2018 12:13 AM 4.1B: DMS, Linear and Angular Speed 1 DEGREES MINUTES SECONDS (DMS) A. Written

More information

Heavy-Duty Horizontal Machining Center

Heavy-Duty Horizontal Machining Center Heavy-Duty Horizontal Machining Center The New Generation World-Class NHM series of Heavy-Duty Horizontal Machining Centers The NHM series combines the heavy-duty cutting, unsurpassed machining capacity

More information

Chapter 5 Introduction to Trigonometric Functions

Chapter 5 Introduction to Trigonometric Functions Chapter 5 Introduction to Trigonometric Functions 5.1 Angles Section Exercises Verbal 1. Draw an angle in standard position. Label the vertex, initial side, and terminal side. 2. Explain why there are

More information

Problem A. Crystal Ball Factory

Problem A. Crystal Ball Factory Problem A Crystal Ball Factory The Astrologically Clairvoyant Manufacturers (ACM), a pioneer in future-predicting technology, just landed a contract to manufacture crystal balls for weather forecasters

More information

Precalculus Lesson 6.1: Angles and Their Measure Mrs. Snow, Instructor

Precalculus Lesson 6.1: Angles and Their Measure Mrs. Snow, Instructor Precalculus Lesson 6.1: Angles and Their Measure Mrs. Snow, Instructor In Trigonometry we will be working with angles from We will also work with degrees that are smaller than Check out Shaun White s YouTube

More information

11.1 As mentioned in Experiment 10, sequential logic circuits are a type of logic circuit where the output of

11.1 As mentioned in Experiment 10, sequential logic circuits are a type of logic circuit where the output of EE 2449 Experiment 11 Jack Levine and Nancy Warter-Perez CALIFORNIA STATE UNIVERSITY LOS ANGELES Department of Electrical and Computer Engineering EE-2449 Digital Logic Lab EXPERIMENT 11 SEQUENTIAL CIRCUITS

More information

AP Physics 1 Lesson 15.a Rotational Kinematics Graphical Analysis and Kinematic Equation Use. Name. Date. Period. Engage

AP Physics 1 Lesson 15.a Rotational Kinematics Graphical Analysis and Kinematic Equation Use. Name. Date. Period. Engage AP Physics 1 Lesson 15.a Rotational Kinematics Graphical Analysis and Kinematic Equation Use Name Outcomes Date Interpret graphical evidence of angular motion (uniform speed & uniform acceleration). Apply

More information

33. SOLVING LINEAR INEQUALITIES IN ONE VARIABLE

33. SOLVING LINEAR INEQUALITIES IN ONE VARIABLE get the complete book: http://wwwonemathematicalcatorg/getfulltextfullbookhtm 33 SOLVING LINEAR INEQUALITIES IN ONE VARIABLE linear inequalities in one variable DEFINITION linear inequality in one variable

More information

Chapter 10. Path Following. Beard & McLain, Small Unmanned Aircraft, Princeton University Press, 2012, Chapter 10, Slide 1

Chapter 10. Path Following. Beard & McLain, Small Unmanned Aircraft, Princeton University Press, 2012, Chapter 10, Slide 1 Chapter 10 Path Following Beard & McLain, Small Unmanned Aircraft, Princeton University Press, 2012, Chapter 10, Slide 1 Control Architecture destination, obstacles map path planner waypoints status path

More information

The Circular Motion Lab

The Circular Motion Lab Name Date Class Answer questions in complete sentences The Circular Motion Lab Introduction We have discussed motion in straight lines and parabolic arcs. But many things move in circles or near circles,

More information

2 - Machining Fundamentals Measurement. Manufacturing Processes - 2, IE-352 Ahmed M El-Sherbeeny, PhD Spring-2015

2 - Machining Fundamentals Measurement. Manufacturing Processes - 2, IE-352 Ahmed M El-Sherbeeny, PhD Spring-2015 2 - Machining Fundamentals Measurement Manufacturing Processes - 2, IE-352 Ahmed M El-Sherbeeny, PhD Spring-2015 Learning Objectives Measure to 1/64 (.5 mm) with a steel rule Reading an Inch-based Vernier

More information

Objective: Recognize halves within a circular clock face and tell time to the half hour. (60 minutes) (2 minutes) (5 minutes)

Objective: Recognize halves within a circular clock face and tell time to the half hour. (60 minutes) (2 minutes) (5 minutes) Lesson 11 1 Lesson 11 Objective: Recognize halves within a circular clock face and tell time to the half Suggested Lesson Structure Fluency Practice Application Problem Concept Development Student Debrief

More information

An angle in the Cartesian plane is in standard position if its vertex lies at the origin and its initial arm lies on the positive x-axis.

An angle in the Cartesian plane is in standard position if its vertex lies at the origin and its initial arm lies on the positive x-axis. Learning Goals 1. To understand what standard position represents. 2. To understand what a principal and related acute angle are. 3. To understand that positive angles are measured by a counter-clockwise

More information

Release notes for measuring cycles, software version

Release notes for measuring cycles, software version Release notes, software version 06.03.23.00 Software component: Measuring cycles for turning and milling machines for 810D, 840Di and 840D Software release, new: SW 06.03.23.00 Software release, to date:

More information

Which is the centre of the circle E? (A) U (B) V (C) P (D) W. Which figure P, Q, R or S has the largest area? (A) P (B) Q (C) R (D) S

Which is the centre of the circle E? (A) U (B) V (C) P (D) W. Which figure P, Q, R or S has the largest area? (A) P (B) Q (C) R (D) S Class IV Mental Ability Which is the centre of the circle E? C B Q R E W P V U S Z (A) U (B) V (C) P (D) W D I am a 2-digit number. If 28 is added to me, I become a 3-digit number. If 63 is taken away

More information

CMM Uncertainty Budget

CMM Uncertainty Budget Table of Contents Purpose...3 Scope...3 Measurement Example...3 Uncertainty Groups...4 Probe Group...5 Calibration Artifact Group...6 Environment Group...7 CMM Group...8 Part Group...10 Conversion of Potential

More information

Introductory Physics PHYS101

Introductory Physics PHYS101 Introductory Physics PHYS101 Dr Richard H. Cyburt Office Hours Assistant Professor of Physics My office: 402c in the Science Building My phone: (304) 384-6006 My email: rcyburt@concord.edu TRF 9:30-11:00am

More information

Physics 202 Laboratory 3. Root-Finding 1. Laboratory 3. Physics 202 Laboratory

Physics 202 Laboratory 3. Root-Finding 1. Laboratory 3. Physics 202 Laboratory Physics 202 Laboratory 3 Root-Finding 1 Laboratory 3 Physics 202 Laboratory The fundamental question answered by this week s lab work will be: Given a function F (x), find some/all of the values {x i }

More information

FAGOR 8055i CNC Ordering Handbook. Ref. 1502

FAGOR 8055i CNC Ordering Handbook. Ref. 1502 FAGOR 8055i CNC Ordering Handbook. Ref. 1502 FAGOR AUTOMATION DENOMINATIONS CN55i - - - - - - - Type of CNC (CNC 8055i) CPU type Type of function General purpose Milling machines & Centers Conversational

More information

SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS

SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS (Section 3.5: Differentials and Linearization of Functions) 3.5.1 SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS LEARNING OBJECTIVES Use differential notation to express the approximate change

More information

Moments and Torques. M = F d

Moments and Torques. M = F d Moments and Torques When a force is applied to an object, the object reacts in six possible ways. It can elongate, compress, translate (moves left, right, up, down, etc.), bend, twist or rotate. The study

More information

1/4 Square, Single-Turn, Through-Hole Sealed Cermet Trimmers. Environmental

1/4 Square, Single-Turn, Through-Hole Sealed Cermet Trimmers. Environmental TOCOS POTENTIOMETERS 1/4 Square, Single-Turn, Through-Hole Sealed Cermet Trimmers Features 1/4 square, single-turn, through-hole, sealed cermet trimmers Top and side adjust styles available Larger diameter

More information

Base Number Systems. Honors Precalculus Mr. Velazquez

Base Number Systems. Honors Precalculus Mr. Velazquez Base Number Systems Honors Precalculus Mr. Velazquez 1 Our System: Base 10 When we express numbers, we do so using ten numerical characters which cycle every multiple of 10. The reason for this is simple:

More information

Getting to the Roots of Quadratics

Getting to the Roots of Quadratics NAME BACKGROUND Graphically: The real roots of a function are the x-coordinates of the points at which the graph of the function intercepts/crosses the x-axis. For a quadratic function, whose graph is

More information

II. Unit Speed Curves

II. Unit Speed Curves The Geometry of Curves, Part I Rob Donnelly From Murray State University s Calculus III, Fall 2001 note: This material supplements Sections 13.3 and 13.4 of the text Calculus with Early Transcendentals,

More information

Contents. Chapter 1 Introduction Chapter 2 Unacceptable Cam Curves Chapter 3 Double-Dwell Cam Curves... 27

Contents. Chapter 1 Introduction Chapter 2 Unacceptable Cam Curves Chapter 3 Double-Dwell Cam Curves... 27 Contents Chapter 1 Introduction... 1 1.0 Cam-Follower Systems... 1 1.1 Fundamentals... 1 1.2 Terminology... 4 Type of Follower Motion... 4 Type of Joint Closure... 4 Type of Follower... 5 Type of Cam...

More information

Metrology Prof. Dr Kanakuppi Sadashivappa Bapuji Institute of Engineering and Technology Davangere

Metrology Prof. Dr Kanakuppi Sadashivappa Bapuji Institute of Engineering and Technology Davangere Metrology Prof. Dr Kanakuppi Sadashivappa Bapuji Institute of Engineering and Technology Davangere Lecture 32 Introduction To Comparators, Mechanical Comparators (Refer Slide Time: 00:15) I welcome you

More information

Chapter 12. Magnetism and Electromagnetism

Chapter 12. Magnetism and Electromagnetism Chapter 12 Magnetism and Electromagnetism 167 168 AP Physics Multiple Choice Practice Magnetism and Electromagnetism SECTION A Magnetostatics 1. Four infinitely long wires are arranged as shown in the

More information

Lecture Outlines Chapter 22. Physics, 3 rd Edition James S. Walker

Lecture Outlines Chapter 22. Physics, 3 rd Edition James S. Walker Lecture Outlines Chapter 22 Physics, 3 rd Edition James S. Walker 2007 Pearson Prentice Hall This work is protected by United States copyright laws and is provided solely for the use of instructors in

More information

Rotation. Kinematics Rigid Bodies Kinetic Energy. Torque Rolling. featuring moments of Inertia

Rotation. Kinematics Rigid Bodies Kinetic Energy. Torque Rolling. featuring moments of Inertia Rotation Kinematics Rigid Bodies Kinetic Energy featuring moments of Inertia Torque Rolling Angular Motion We think about rotation in the same basic way we do about linear motion How far does it go? How

More information

PiXL AQA Style Paper 1H (March 2017) Mark Scheme

PiXL AQA Style Paper 1H (March 2017) Mark Scheme PiXL AQA Style Paper 1H (March 017) Mark Scheme Q Answer Mark Comments 1 y + 8 16 kilometres 60 0.94 4 1 16 (a) 1 7 6 1 1 1 14 1 Must be simplified and expressed as a mixed number for. (b) Reaches 10 10

More information

Magnetic Force. A vertical wire carries a current and is in a vertical magnetic field. What is the direction of the force on the wire?

Magnetic Force. A vertical wire carries a current and is in a vertical magnetic field. What is the direction of the force on the wire? Magnetic Force A vertical wire carries a current and is in a vertical magnetic field. What is the direction of the force on the wire? (a) left (b) right (c) zero (d) into the page (e) out of the page B

More information

ISO INTERNATIONAL STANDARD. Test code for machine tools Part 4: Circular tests for numerically controlled machine tools

ISO INTERNATIONAL STANDARD. Test code for machine tools Part 4: Circular tests for numerically controlled machine tools INTERNATIONAL STANDARD ISO 230-4 Second edition 2005-04-01 Test code for machine tools Part 4: Circular tests for numerically controlled machine tools Code d'essai des machines-outils Partie 4: Essais

More information

AEROSPACE DIE & MOLD MACHINE TOOL INDUSTRY MEDICAL END MILLS HIGH-PERFORMANCE CARBIDE DRILLS A PRODUCT OF KENNAMETAL INC.

AEROSPACE DIE & MOLD MACHINE TOOL INDUSTRY MEDICAL END MILLS HIGH-PERFORMANCE CARBIDE DRILLS A PRODUCT OF KENNAMETAL INC. AEROSPACE DIE & MOLD MACHINE TOOL INDUSTRY MEDICAL END MILLS HIGH-PERFORMANCE DRILLS A PRODUCT OF KENNAMETAL INC. INCH VERSION TOOLS Hanita Cutting Tools is recognized as one of the world's leading manufacturers

More information

Bézier Curves and Splines

Bézier Curves and Splines CS-C3100 Computer Graphics Bézier Curves and Splines Majority of slides from Frédo Durand vectorportal.com CS-C3100 Fall 2017 Lehtinen Before We Begin Anything on your mind concerning Assignment 1? CS-C3100

More information

FAST CHECK THICKNESS GAGE

FAST CHECK THICKNESS GAGE FAST CHECK THICKNESS GAGE Recommended for quick thickness checks of flat sheet materials and wide variety of small parts. Supplied with hardened steel gaging contacts, lifting levers, and clockwise continuous

More information

Physics 2135 Exam 3 April 18, 2017

Physics 2135 Exam 3 April 18, 2017 Physics 2135 Exam 3 April 18, 2017 Exam Total / 200 Printed Name: Rec. Sec. Letter: Solutions for problems 6 to 10 must start from official starting equations. Show your work to receive credit for your

More information

Significant Figures The Jacobs Way

Significant Figures The Jacobs Way Significant Figures The Jacobs Way Measured values are limited by the measuring device used. This limitation is described in the precision of the value. This precision is expressed by the number of digits

More information