WORKBOOK PROGRAMMING AND SUPERVISION OF CNC MACHINES

Size: px
Start display at page:

Download "WORKBOOK PROGRAMMING AND SUPERVISION OF CNC MACHINES"

Transcription

1 WORKBOOK PROGRAMMING AND SUPERVISION OF CNC MACHINES LUBLIN 2014 Projekt współfinansowany ze ś rodków Unii Europejskiej w ramach Europejskiego Funduszu Społecznego

2 Author: Radosław Cechowicz Desktop publishing: Radosław Cechowicz Technical editor: Radosław Cechowicz Figures: Radosław Cechowicz Cover and graphic design: Radosław Cechowicz All rights reserved. No part of this publication may be scanned, photocopied, copied or distributed in any form, electronic, mechanical, photocopying, recording or otherwise, including the placing or distributing in digital form on the Internet or in local area networks, without the prior written permission of the copyright owner. Publikacja współfinansowana ze środków Unii Europejskiej w ramach Europejskiego Funduszu Społecznego w ramach projektu Inżynier z gwarancją jakości dostosowanie oferty Politechniki Lubelskiej do wymagań europejskiego rynku pracy Copyright by Radosław Cechowicz, Lublin University of Technology Lublin 2014 First edition Projekt współfinansowany ze ś rodków Unii Europejskiej w ramach Europejskiego Funduszu Społecznego

3 1 TABLE OF CONTENTS 1. THE NC PROGRAMMING LANGUAGE Selected functions of the NC programming language WORK STAND Description of the CNC control software Function codes handled by the software Programming the drilling cycles NC code format accepted by the machine Programming the milling cycles REPORTING THE RESULT OF THE PHYSICAL QUANTITY MEASUREMENT The rules for stating the result of the measurement The construction of the stem-and-leaf and the histogram diagram Deming's experiment DESCRIPTIVE STATISTICS AND THEIR PRESENTATION Construction of a histogram. Box-plot diagrams Pareto analysis PROPERTIES OF A NORMAL DISTRIBUTION AND ITS USAGE The Central limit theorem Estimating of the non-conforming fraction. Process capability TEST OF THE STATISTICAL HYPOTHESES Determination of the sample size; Power of a statistical test;...17

4 2 1. THE NC PROGRAMMING LANGUAGE 1.1. Selected functions of the NC programming language NOTE: Bold font has been used for the commands defined in ISO6983-1:2009 Default power-on commands according to ISO6983-1:2009 are on grey background. Turning Milling Description Example M 1 Program and block numbering O O Program number O0122 N N Block number N Machine measurement units, coordinate system and reference points (program zero) G53 G53 Program reference point reset G53 M1 G54, G55, G54, G55, G56...G59 G56...G59 G54 M1 G50, G92 G92 Sets program zero coordinates; used in machines that do not have G54..G59. Works like G54...G59 and G41..G44 G92 X10 Y20 Z15 L G20, G70 G20, G70 Inch mode (coordinate values are in inch) G20 M2 G21, G71 G21, G71 Metric mode (coordinate values are in milimeters) G21 M2 G90 G90 Absolute mode (all dimensions refer to program zero) G90 M3 G91 G91 Incremental mode (dimension chains) G91 M3 -- G17 Sets work plane to XY G17 M4 -- G18 Sets work plane to XZ G18 M4 -- G19 Sets work plane to YZ G19 M4 Cutting parameters G96 -- Constant cutting speed (Cutting speed value in m/min or ipm is set using the S command) G96 S150 M5 G97 -- Constant spindle rotating speed (Rotating speed value in rpm is set using the S command) G96 S2000 M5 G93 G93 Programs feed speed by setting the time of the operation (Inverse time). Ex: G93 F1 sets operation time to 1min G93 F10 M6 G98 G94 G94 Feed set in mm/min or ipm G98 F100 M6 G99 G95 -- Feed set in mm/rotation or ipr G99 F100 M6 1 Function type according to ISO6983-1:2009: M Modal after calling remains active until modified or replaced by another command from the same group (groups are designated with numbers M1, M2, etc.) L not modal active only in a block where called

5 3 Turning Milling Description Example M F -- Feed value (used in conjunction with G98/G99) G98 F100 M -- F Feed value (in milling centres in mm/min or ipm) F100 M S -- Spindle speed value (used in conjunction with G96/G97) S1300 M -- S Spindle speed value (in milling centres usually in rpm) S1300 M T -- Tool change (followed by tool nr and wear offset nr) T0202 M -- T Tool change (followed by tool number) T2 or T2 M06 Tool movement - basic G00 G00 Rapid motion G00 X15.2 Z1.5 M7 G01 G01 Linear motion (linear interpolation; used with F) G01 X1.5 Y12.0 F80 M7 G G02 G G03 Circular interpolation, clockwise (used with F and appropriate parameters, ex: X, Z, R or X, Z, I, K) Circular interpolation, clockwise (used with F and appropriate parameters, ex: X, Y, R or X, Y, I, J) Circular interpolation, anticlockwise (used with F and appropriate parameters, ex: X, Z, R or X, Z, I, K) Circular interpolation, anticlockwise (used with F and appropriate parameters, ex: X, Y, R or X, Y, I, J) G02 X2.0 Z4.0 I-12.5 K2.5 or G02 X5.0 Z4.0 R5.0 G02 X2.0 Y4.0 I-12.5 J2.5 or G02 X5.0 Y4.0 R5.0 G03 X2.0 Z4.0 I-12.5 K2.5 or G03 X5.0 Z4.0 R5.0 G03 X2.0 Y4.0 I-12.5 J2.5 or G03 X5.0 Y4.0 R5.0 G04 G04 Dwell. Dwell time can be defined by parameter X, F or P G04 X2.0 (2s) (units: seconds or milliseconds) or G04 F20 (20ms) M7 G06 G06 Parabolic interpolation. Parameters I, J, K are used to G06 X2.0 Y4.0 I-12.5 define vertex coordinates J2.5 M7 G33 G33 Threading, constant pitch. M7 G34 G34 Threading, increasing pitch. M7 G35 G35 Threading, decreasing pitch. M7 Tool movement - advanced G09 G09 Exact stop. Operation ends after the tool comes to a complete stop. Used to improve accuracy, slows down G09 L the program execution. NON-MODAL version. G60 G60 Exact stop function. Operation ends after the tool comes to a complete stop. Used to improve accuracy, slows G60 M8 down the program execution. MODAL version. G64 G64 Exact stop reset (cancellation) see G60 G64 M8 G63 G63 Sets the threading mode. In threading mode the Feedrate Override control on the operator's panel is disabled, feed cannot be controlled manually. Used for threading with taps. G63 L M M7 M7 M7 M7

6 4 Turning Milling Description Example M Resets tool radius compensation (see G41, G42) According to ISO6983-1:2009 this function also resets G40 G40 tool length compensation (see. G43, G44). G40 M9 Fanuc controllers use G49 to reset toll length compensation. G41 G41 Sets tool radius compensation (cutting on the right side of tool path). Tool radius is read from the pre-set D G41 D... M9 register. G42 G42 Sets tool radius compensation (cutting on the left side of tool path). Tool radius is read from the pre-set D register. G42 D... M9 G43 G43 Sets tool length compensation (toll length is a positive number). Tool length is read from the pre-set H register. G43 H... (M9) G44 G44 Sets tool length compensation (toll length is a negative number). Tool length is read from the pre-set H register. G43 H... (M9) G49 G49 Resets tool radius compensation in Fanuc controllers (see G40) G49 (M9) Fixed cycles 2 Machine reference point return (tool change point G28, G74 G28, G74 return) G91 G28 Z0 L G80 G80 Cancels all fixed cycles (see G81..G89) G80 M10 G81 G81 Sets the fixed cycle drilling M10 G82 G82 Sets the fixed cycle drilling with dwell (counter-boring) M10 G83 G83 Sets the fixed cycle deep hole drilling (with tool withdrawal) M10 G84 G84 Sets the fixed cycle tapping M10 G85 G85 Sets the fixed cycle boring (rough) M10 G86 G86 Sets the fixed cycle boring with dwell (rough) M10 G87 G87 Sets the fixed cycle boring (finishing) M10 G88 G88 Sets the fixed cycle boring with dwell (finishing) M10 G89 G89 Sets the fixed cycle reaming M10 Machine functions 3 M00 M00 Stop (unconditional) M00 A L M01 M01 Optional Stop (active only if Optional Stop switch in ON position) M01 A L M02 M02 Program end. Stops the spindle and other devices (like coolant pump). Used for machine reset. M02 A L 2 Application examples are presented during classes 3 Function type according to ISO6983-1:2009: A Function activated after tool stops (tool movement completed before function) B Function activated parallel to tool movement (function engaged during tool motion) M Modal active until modified or cancelled by a function from the same group L Not modal active only in the block where was called

7 5 Turning Milling Description Example M M03 M03 Spindle start clockwise M03 M M04 M04 Spindle start anticlockwise M04 M M05 M05 Spindle stop M05 M M06 M06 Tool change. Coolant pump may be switched off on some machines. M06 L M07 M07 Coolant on (mist) M08 M08 Coolant on (coolant pump on) M08 M09 M09 Coolant off M09 M10 M10 Material hold (engage material holding system) M10 L M11 M11 Material release (disengage material holding system) M11 L M20 -- Tailstosk disengage M20 M21 -- Tailstock engage M21 M30 M30 End of data. Like M02 but machine returns to the beginning of the active program (so it can be re-started with green button) M30 M41 -- Spindle speed ranges sets the first speed range (usually used for rough machining) M41 M42 -- Spindle speed ranges sets the second speed range M42 M43 -- Spindle speed ranges sets the third speed range M43 M44 -- Spindle speed ranges sets the fourth speed range M44 M48 M48 Enables spindle speed and feedrate control with the operator's panel controls (see M49) M48 M49 M49 Disables spindle speed and feedrate control with the operator's panel controls. M49 A B M60 M60 Pallet change or part setup change. Stops spindle and coolant M60 L M98 M98 Sub-program call (U program number, L number of program M98 U123 L3 executions) M99, M17 M99,M17 Sub-program end return to the main program M99 Notes: A L

8 6 2. WORK STAND General view of the work stand with the C-type milling machine is shown on Fig. 1. spindle controller C-frame milling machine main switch control computer emergency switch axis controller Fig. 1:Work stand with the CNC milling machine 2.1. Description of the CNC control software The functions of the cnc software, which will be used during the laboratory exercises can be accessed from the main screen (Fig. 2), the programming screen (Fig. 4) and the manual operations screen. The function keys in the main screen have the following assignments: Esc (koniec) end of task (exits the program or returns to main screen) F1 (pomoc) help (in Polish) F2 (programy) access to file operations menu (also allows to create new program) F3 (parametry) edit or manage machine parameters (like the scaling factor) F4 (inne funkcje) )- other functions F5 (bazuj) homing (must be executed after the machine is switched on) F6 (wykonaj) execute the active program (program must be loaded with F10 first)

9 7 F7 (reczna) manual control mode (see Fig. 3) F8 (symuluj) program simulation mode (program must be loaded with F10 first) F9 (popraw) edit the active program (quick alternative to F2) F10 (ładuj) choose and load the program into machine memory current tool position active program name, scaling factor coordinates of the program zero machine coniguration parameters function keys Fig. 2: Main screen of the controlling program (before homing the machine) current tool coordinates axis speed value axis speed controls Y axis controls (Left/ Right arrow) Z axis control (Page Up/Page Down) Tool change menu X axis control (Up/ Down arrow) Fig. 3: Manual control screen Spindle control (I nsert) program edit operations create new program Fig. 4: New program window (available after pressing F2 on the main screen). Program editing window becomes available after the creation of a new program or after pressing F9 on the main screen.

10 8 machine zero point simulation screen menu machine workspace (green rectangle) axis Z range (of the active program) position of program zero on Z axis axes X and Y range (of the active prgm) program zero position on XY plane Fig. 5: Main screen of the simulation mode (can be accessed from the main screen after pressing F8). After the NC code has been written, the program has to be tested with the simulation functions (main screen: Fig. 5). The following functions are available in the simulation screen menu: PodPliku - the preview of all the tool paths (the entire program) DefMater - sets of the size and position of the material (a grey rectangle on the preview screen) DoMater - sets the program zero point in the upper-left corner of the defined material (all axes) DefOffset - manual entering of the coordinates of the program zero point ZerOffset - sets the program zero point in the machine reference point (machine zero; all the axes) Stan - screen displaying the information on the range of the axes movement (Fig. 7) TrajPow - draws the programmed tool path (full screen) TrajRze - draws the programmed tool path (against the machine work area) Symuluj - simulation of the machining (requires the correct setting of the work-piece dimensions and program zero point) Kolory - configuration of colours assigned to particular tools Koniec quits the simulation mode Function codes handled by the software Machine functions Preparatory functions M0, M1 - program stop, M2, M30 - program end, M3, M4 - spindle on M5 - spindle off M99 - end of the sub-program F - feed rate in mm/min T - tool change % - this symbol is obligatory at the beginning and at the end of each program G0 rapid motion G1 linear interpolation G2, G3 circular interpolation G4 dwell (argument: code X [ms]) G22 sub-program call (P ) G40 tool radius compensation off G41, G42 tool radius compensation G80 cancel canned (fixed) cycle G90, G91 absolute and incremental positioning Fixed cycles: G61, G77, G78, G79, G81, G82, G83, G87, G88, G89 Full description of the CNC software can be found in the documentation of the machine.

11 Programming the drilling cycles The milling machines in the CNC machine laboratory have the following fixed cycles: No. G-code Name Description 1 G81 Drilling Syntax: G81 Z... W... Z depth of a hole relative (incremental) negative value, calculated from the retraction plane (see Fig. 6). W distance to the retraction plane positive incremental value measured from the initial tool position (see Fig. 6). 2 G82 Chip-breaking drilling 3 G83 Peck drilling (with breaking and removal of chips) Syntax: G82 Z... W... B... D... K... B time for chip breaking in seconds D value by which successive K-steps are decreased (positive) K length of a single drilling step between the successive intervals for the chip-breaking (positive; see Fig. 7) Other parameters as in G81 Syntax: G83 Z... W... B... D... K... A... A time for chip removal in seconds (tool dwells at the retract plane) Other parameters as in G81 and G82 initial tool position initial plane Z B Z B Z R W rapid motion traverse tool retraction plane Z R Z machining with programmed feed Z S Fig. 6: Initial and tool retract planes in fixes cycles programming programmed end position Z S Narzędzie initial w pozycji tool position początkowej Płaszczyzna initial początkowa plane Z Z B B Z B Przejazd rapid ruchem motion przestawczym traverse W Z R Z S Z K K-D K-D Płaszczyzna retract plane wycofania Z Z R R Pierwszy drilling/ milling przejazd depth ruchem (irst roboczym tool entry) (K) Kolejny drilling/ przejazd milling depth ruchem (successive roboczym entr.) (K-D) programmed Pozycja końcowa end position Z S Z S Fig. 7: Programming the chip-breaking cycle and pocket machining

12 10 No. G-code Name Description 4 G79 Execution of a programmed cycle in a single point 5 G78 Execution of a series of programmed cycles along a straight line 6 G77 Execution of a series of programmed cycles along an arc Syntax: G79 X... Y... X, Y coordinates of the point in which the hole is to be made Syntax: G78 X... Y... I... J... S... or G78 X... Y... A... D... S... X, Y coordinates of the first hole to be made I, J relative distance to the next hole along the X and Y axes A - inclination angle of a line in relation to axis X (positive in the 1st and the 2nd quadrant) D distance to the next point along the line S number of repetitions (number of holes to be made) Syntax: G77 X... Y... A... B... D... S... X, Y coordinates of the centre of the arc (relative to the program zero point) A angle between axis X and the radius indicating the first hole B the radius of the arc on which the holes are to be made D angular distance (in degrees) between the succeeding holes S number of repetitions (number of holes to be made) 2.4. NC code format accepted by the machine When writing the program in the NC language, the following rules have to be respected: A program has to begin and end with the "%" symbol. At the end of the program, the line before the "%" symbol has to contain the "M30" command, which ends the program; previously, the spindle has to be turned off with the "M5" command. At the beginning of the program, a tool has to be set (even if it has already been mounted in the spindle; the "T " command) and moved along all the axes (X, Y and Z). It is recommended to move the tool to the program zero point on the X and Y axes and up to the safe position over the material on the Z axis. Whenever radius compensation is used, the first and last sections of the tool path should be programmed as straight lines (G0 and G1 commands). Arcs can be programmed through setting the radius "R" (positive or negative value) or the coordinates of the centre (I and J; the coordinates should be absolute).

13 Programming the milling cycles Y I G87 G88 G89 X Fig. 8: Pocket milling cycles available on the machines in the laboratory No. G-code Name Description 1 G87 Rectangular pocket milling 2 G88 Circular pocket milling 3 G89 Milling of a circular pocket with a bos Syntax: G87 X... Y... Z... I... K... W... X, Y dimensions of a pocket along the X and Y axes Z depth of a hole relative (incremental) negative value, measured from the retraction plane (as in Fig. 6). W distance to the retraction plane positive value measured incrementally from the initial tool position (as in Fig. 6). I depth of cut on the XY plane in the percentage of the width of the tool positive value (as in Fig. 8). K depth of cut along the Z axis positive incremental value as shown on Fig. 7 Syntax: G88 B... Z... I... K... W... B radius of the pocket Other parameters as in G87 Syntax: G89 B... C... Z... I... K... W... C radius of the bos Other parameters as in G87 and G88 Notes

14 12 3. REPORTING THE RESULT OF THE PHYSICAL QUANTITY MEASUREMENT 3.1. The rules for stating the result of the measurement Problem 1: The result of the measurement indicates that the frequency of string vibrations equals 210 Hz. The uncertainty interval for the measurement was established as the following: Hz. Write down the result of the measurement using the standard form. Problem 2: The result of the measurement determined the vibration frequency to be 230±15Hz. Establish the uncertainty interval for the given outcome. How to interpret the record of the measurement result? Problem 3: Write down the uncertainties of the following measurements: the best approximation uncertainty interval 34,8 km od 34,2 do 35,4 km 23,12 MPa od 20 do 26 MPa 112 V od 108 do 116 V Problem 4: Write down the following results of the measurements in a proper form: p = 7, ± 0,02345 MPa; x = 4,2345*10 4 ± 2 m; q = 2,45678*10-7 ±3*10-9 F; x = 0, ± 0, m; p = 4,345* 10 3 ±22 kpa; t = 1,6234 ± 1 s; t = 3,8932 ± 3 s; 3.2. The construction of the stem-and-leaf and the histogram diagram Problem 1: The results of the measurements are organised into a table (Table 1) and show the percentage of cotton in a textile material. Design the stem-and-leaf display and, on the basis of the obtained diagram, determine the mean value, median, upper and lower quartiles and the interquartile range. Verify the results of the calculations using the STATISTICA software.

15 13 34,2 37,8 33,6 32,6 33,8 35,8 34,7 34,6 33,1 36,6 34,7 33,1 34,2 37,6 33,6 33,6 34,5 35, ,6 33,4 37,3 32,5 34,1 35,6 34,6 35,4 35,9 34,7 34,6 34,1 34,7 36,3 33,8 36,2 34,7 34,6 35,5 35,1 35,7 35,1 37,1 36,8 33,6 35,2 32,8 36,8 36,8 34, ,1 32, ,1 37,9 34,3 33,6 34,1 35,3 33,5 34,9 34,5 36,4 32,7 Table 1: Measurement results of the percentage of cotton in a textile material Deming's experiment Problem 1: Create a new variable of a Statistica spreadsheet and name it as D. Using the RndNormal(x) function of the Statistica software, generate a sequence of 100 pseudo-random numbers, whose mean value is 50 and standard deviation equals 2. Afterwards, generate a sequence of numbers that constitutes the difference between the mean value (50) and the previously generated variable. Record the result of the calculations in the next variable DR symbol. Calculate the backward differences for the original D sequence and DR variable, and assign the result to the next variable W, then calculate its standard deviation. Which of the considered variables D and W shows greater dispersion? Explain the obtained result. 4. DESCRIPTIVE STATISTICS AND THEIR PRESENTATION 4.1. Construction of a histogram. Box-plot diagrams Problem 1: Multiple measurement samples of the post-mould shrinkage of the moulded pieces are organised in a table (Table 2). Complete the following steps: Using the STATISTICA software, prepare a box-plot diagram, which compares the results of the measurements obtained in particular samples s1 s10. Then, make a consolidated histogram including all the results of the measurements (s variable). Compare the box-plot diagrams for s1 s10 variables with the result of the histogram for the s variable. Is there a substantial difference between the results of the measurements? Calculate the mean value and standard deviation for particular s1 s10 variables. Afterwards, calculate the mean value of means and the standard error. Compare the obtained results with the result of the calculation of the mean value of the s variable. Comment on the obtained results.

16 14 Assess the goodness of fit of the distribution of the s variable measurements to the normal distribution using the probability-probability plot; Establish the fraction of defectively manufactured moulded pieces, assuming that the distribution of the post-mould shrinkage fits the normal distribution. Assume that the lower and upper specification limit equals 3.2 and 7.7 (%), respectively. S1 S2 S3 S4 S5 S6 S7 S8 S9 S10 4,5 6,2 5,4 4,8 3,6 4,7 5,1 4,8 4,4 5,5 5,1 4,2 5,0 5,4 7,1 6,1 6,0 5,5 6,4 6,5 4,3 4,2 4,1 5,0 3,7 5,8 5,7 5,7 6,1 4,7 4,6 4,3 6,5 7,7 4,4 4,9 4,9 4,6 6,1 5,6 5,7 4,2 6,6 4,8 5,0 6,8 3,7 3,9 4,9 5,9 5,5 4,6 4,7 6,0 6,4 7,0 6,1 6,5 5,1 5,5 6,1 3,8 5,7 6,7 6,3 5,2 5,5 6,5 5,2 7,5 5,1 4,0 7,0 5,8 7,0 5,9 6,0 5,6 5,5 4,2 6,5 7,3 5,9 6,0 7,3 5,4 4,6 6,6 5,4 3,8 5,3 6,3 5,7 5,4 5,6 5,8 4,7 4,9 6,3 3,6 Table 2: Measurement results of the post-mould shrinkage of the moulded pieces. Comment: a table header row shows a symbol of a sample, while a corresponding table column organises the results of this sample Problem 2: Multiple measurement samples of the voltage on the battery terminals are organized into a Table Table 3. Prepare a histogram (empirical distribution) of the analysed variable and then calculate and mark the following descriptive statistics: the mean value, median, mode and the upper and lower quartile. A 1 A 2 A 3 A 4 A 5 A 6 12,62 12,74 12,7 12,63 12,63 12,66 12,59 12,68 12,79 12,68 12,65 12,56 12,59 12,63 12,61 12,56 12,65 12,66 12,68 12,61 12,75 12,56 12,62 12,71 12,66 12,59 12,68 12,59 12,71 12,73 12,68 12,67 12,63 12,57 12,64 12,6 12,64 12,62 12,73 12,64 12,67 12,71 12,67 12,69 12,58 12,62 12,61 12,73 12,64 12,65 12,61 12,69 12,63 12,61 12,66 12,67 12,63 12,61 12,69 12,72 Table 3: Measurement results of the voltage taken on the battery terminals. Comment: a table header shows a symbol of a sample, while a corresponding table column organizes the results of this sample

17 Pareto analysis Problem 1: The results of the moulding process observation were presented in relation to the registered defects and the expenses borne during the production of the moulded pieces (see Table Table 4). Fill in the table columns (percentage of defects, percentage of expenses). Given so, prepare two independent statements: the first concerning the percentage of defects and the second regarding the percentage of the expenses, according to the defect type. In order to reduce the loss sustained during the manufacturing, take advantage of the Pareto Analysis and establish which of the defects should be eliminated first? Type of defect Flaw description No. of defects [-] Perc. of defects [%] Expenses of materials, [zł] Expenses of labour [zł] Expenses of manufacturing [zł] Total expenses [zł] 1 underflowing 59 11,8 7,25 23,52 42,57 Perc. of expenses, [%] 2 tension ,67 15,14 48,69 258,5 3 line of flows ,8 11,08 35,43 228,31 4 shrinkage 2 0,38 1,14 3,64 5,16 5 overflowing 60 11,4 8,08 26,34 45,82 Table 4: Results of the moulding process observation 5. PROPERTIES OF A NORMAL DISTRIBUTION AND ITS USAGE 5.1. The Central limit theorem Problem 1: Launch the program named "The Central Theorem Limit.exe", attached to the script, familiarise yourself with the content of the exercise and carry out the following instructions: 1. Choose the normal distribution form the "Population distribution" list. Select 5 as the number of measurements in a sample. Next, choose the mean value as the statistic and generate 1000 samples (measurements). Are the mean value of means and the standard error consistent with the population parameters? What can be thought of the obtained distribution of the sample statistics. 2. Repeat the instruction (1) but choose the standard deviation (SD) as the analysed statistic and generate 1000 samples. Is the mean value of the calculated SD statistic consistent with the value of the population parameter?

18 16 3. Repeat the instruction (1), though change the distribution function to the exponential distribution. The number of measurements in a sample is to be n = 5. What is the distribution form of the values of the statistic from the sample?; 4. Repeat the instruction (3), though increase the number of measurements in a sample to 20; 5. Repeat the instruction (3), though increase the number of measurements in a sample to 20 and, simultaneously, change the form of distribution to the uniform one; 6. Repeat the instruction (5), though increase the number of measurement in a sample to 100. Interpret the obtained results of the calculations Estimating of the non-conforming fraction. Process capability Problem 1: In many cases of the industrial use of the SPC, it is required to estimate the proportion of the production which does not meet the expected specification. Assume that the technological process consists in dividing the product and final packaging of its portions. 100 portions of this product were randomly chosen and weighed. It turned out that the observations belonged to the normal distribution (Fig. 9). The mean value of the measurement was 255g, while the standard deviation equalled 4.73g. 250±10 g was adopted as the upper and lower specification of a single portion. How many portions were produced outside the limits of specification? How will the non-conforming fraction change if the mean value of the portions is consistent with the aim of the process? y = n o r m a l( x ; ; 4, 7 3 ) 0, 0 8 0, 0 6 0, 0 4 0, 0 2 0, Fig. 9: Probability distributions illustrating the measurement results with the limits of specification being highlighted

19 17 6. TEST OF THE STATISTICAL HYPOTHESES 6.1. Determination of the sample size; Power of a statistical test; Problem 1: The melting point measurement carried out on n=10 units of the connectors used in the fuel production process equalled T=154.2 o C. It was established that the temperature measurements belong to the normal distribution with the standard deviation σ=1.5 o C. 1. Carry out a statistical test comparing the results of the measurement of the connectors melting point with the referential value T 0 =155 o C, assuming the value of I-type error, α=0.05, as defining for the level of statistical significance. How to interpret the test results? 2. What is the value of the probability P of the conducted test; 3. What is the value of a second-type error β, assuming that the population mean is μ = 150?; 4. What would be the required n sample size if the II-type error was limited by a condition: β<0.1. Assume that the I-type error equals α=0.05. Problem 2: Assume that the quality characteristic R describes the wear of the new construction of the drive-train element, measured after km mileage, and is an important aspect associated with the warranty repairs. 17 drive-train units were examined and the mean value was determined to be 4.42 (units). The previously performed tests proved that the analysed quality characteristic belongs to the normal distribution and the standard deviation value equals σ=0.7. On the basis of the given information, carry out a statistical test in order to find out whether the drive-train new construction meets the requirements included in the design (specification) of the drive-train R 0 =3.8. Assume that the I-type error equals α=0.05. What is the power of the test? What should be the sample size if a quality engineer would like to detect a change in a construction wear dr = 1.25 σ (units). The power of the test is assumed to be 0.95?

ME 1355 CAD/CAM LABORATORY CNC MILLING PROGRAM. Study of G Codes and M Codes to Write Manual Part Programming for Fanuc Control Systems

ME 1355 CAD/CAM LABORATORY CNC MILLING PROGRAM. Study of G Codes and M Codes to Write Manual Part Programming for Fanuc Control Systems ME 1355 CAD/CAM LABORATORY CNC MILLING PROGRAM Ex.No.1 Study of G Codes and M Codes to Write Manual Part Programming for Fanuc Control Systems PREPARATORY FUNCTION ( G CODES ) The preparatory functions

More information

Mach4 CNC Controller Mill Programming Guide Version 1.0

Mach4 CNC Controller Mill Programming Guide Version 1.0 Mach4 CNC Controller Mill Programming Guide Version 1.0 1 Copyright 2014 Newfangled Solutions, Artsoft USA, All Rights Reserved The following are registered trademarks of Microsoft Corporation: Microsoft,

More information

Course outline. Know Your Machine From A Programmer s Viewpoint 11 If you ve had experience with conventional (non-cnc) machine tools 11

Course outline. Know Your Machine From A Programmer s Viewpoint 11 If you ve had experience with conventional (non-cnc) machine tools 11 Course outline Know Your Machine From A Programmer s Viewpoint 11 If you ve had experience with conventional (non-cnc) machine tools 11 Machine Configurations 13 Vertical machining centers 13 C-frame style

More information

CNC Programming. Lecture 25. Engineering 475 Automated Production Systems

CNC Programming. Lecture 25. Engineering 475 Automated Production Systems CNC Programming Lecture 25 Engineering 475 Automated Production Systems Information Needed by a CNC Machine 1. Preparatory Information: units, incremental or absolute positioning 2. Coordinates: X,Y,Z,

More information

G and M Programming for CNC Milling Machines. Denford Limited Birds Royd Brighouse West Yorkshire England HD6 1NB Tel: +44 (0) 1484 712264

G and M Programming for CNC Milling Machines. Denford Limited Birds Royd Brighouse West Yorkshire England HD6 1NB Tel: +44 (0) 1484 712264 COMPUTERISED MACHINES AND SYSTEMS G and M Programming for CNC Milling Machines Denford Limited Birds Royd Brighouse West Yorkshire England HD6 1NB Tel: +44 (0) 1484 712264 G AND M Fax: PROGRAMMING +44

More information

Presentation on CNC MACHINES. By: Hafiz Muhammad Rizwan

Presentation on CNC MACHINES. By: Hafiz Muhammad Rizwan Presentation on CNC MACHINES By: Hafiz Muhammad Rizwan WELCOME CNC Machines What is a CNC Machine? CNC : Computer Numerical Control Conventionally, an operator decides and adjusts various machines parameters

More information

GSK928MA Milling Machine CNC System. User Manual. GSK CNC Equipment

GSK928MA Milling Machine CNC System. User Manual. GSK CNC Equipment GSK928MA Milling Machine CNC System User Manual GSK CNC Equipment The operating manual describes all matters concerning the operation of the system in detail as much as possible. However, it is impractical

More information

WORKBOOK MODELING OF MULTI- MEMBER MACHINES

WORKBOOK MODELING OF MULTI- MEMBER MACHINES WORKBOOK MODELING OF MULTI- MEMBER MACHINES LUBLIN 2014 0 Author: Mirosław Ferdynus Desktop publishing: Mirosław Ferdynus Technical editor: Mirosław Ferdynus Figures: Mirosław Ferdynus Cover and graphic

More information

Mill Series Training Manual. Haas CNC Mill Programming

Mill Series Training Manual. Haas CNC Mill Programming Haas Factory Outlet A Division of Productivity Inc Mill Series Training Manual Haas CNC Mill Programming Revised 042814 (Printed 04-2014) This Manual is the Property of Productivity Inc The document may

More information

FAGOR CNC 8055 ia-mc Control

FAGOR CNC 8055 ia-mc Control FAGOR CNC 8055 ia-mc Control The Fagor 8055 i/a-mc CNC control combines value & reliability with a featured packed modular control. This control was built for the shop environment with a rugged keyboard

More information

3300M CNC Control Editing, Part Programming and Running simple program

3300M CNC Control Editing, Part Programming and Running simple program 3300M CNC Control diting, Part Programming and Running simple program Writen by Robin Baker F2 dit to enter editor. F1 F2 F3 F4 F5 F6 F7 F8 F9 Teach Draw Drill Pocket Mill Tool Calc Sub Misc xit Dimension

More information

Summary Of GCODE Commands By Category (HTT0196)

Summary Of GCODE Commands By Category (HTT0196) Summary Of GCODE Commands By Category (HTT0196) SET UP COMMANDS CODE COMMAND FORMAT PURPOSE PAGE # F Feed Speed Fn Designates feed rate, or rate 05 of movement, of the axes. G4 Dwell Time G4/d Specifies

More information

CNC Applications. Tool Radius Compensation for Machining Centers

CNC Applications. Tool Radius Compensation for Machining Centers CNC Applications Tool Radius Compensation for Machining Centers Why Cutter Diameter Compensation? When machining finished surfaces with the side of a milling cutter (generally called profiling), the accuracy

More information

Proficiency Test For Machining Center

Proficiency Test For Machining Center Proficiency Test For Machining Center Name: Date: Section One: General CNC Questions 1) The spindle speed for a particular tool in a program is incorrect and you wish to reduce it. The kind of CNC word

More information

Signature Norman Crepeau Special Condition Subject to prior sale Johnford ST60B. CNC Turning Center

Signature Norman Crepeau Special Condition Subject to prior sale Johnford ST60B. CNC Turning Center Mr. Will Rood B & B Precise Products 25 Neck Road Benton, ME 04901 Date June 3, 2008 Quote # 06032008 Valid for 30 Days Quoted by Norman Signature Norman Crepeau Special Condition Subject to prior sale

More information

ISO Dialects for SINUMERIK

ISO Dialects for SINUMERIK Brief Description 1 Programming 2 Cycles and Contour Definition 3 SINUMERIK 802D sl/840d/840d sl 840Di/840Di sl/810d ISO Dialects for SINUMERIK Description of Functions Start-Up 4 Boundary Conditions 5

More information

Lathe Series Training Manual. Live Tool for Haas Lathe (including DS)

Lathe Series Training Manual. Live Tool for Haas Lathe (including DS) Haas Factory Outlet A Division of Productivity Inc Lathe Series Training Manual Live Tool for Haas Lathe (including DS) Created 020112-Rev 121012, Rev2-091014 This Manual is the Property of Productivity

More information

SmartCut EVS Series CNC Mills Combination of CNC technology and manual capability SC EVS-350B CNC SC EVS-550B CNC

SmartCut EVS Series CNC Mills Combination of CNC technology and manual capability SC EVS-350B CNC SC EVS-550B CNC Summit Machine Tool Manufacturing L.L.C. SmartCut EVS Series CNC Mills Combination of CNC technology and manual capability SC EVS-350B CNC SC EVS-550B CNC Summit Machine Tool Manufacturing L.L.C. SmartCut

More information

CNCTRAIN. Cnc Simulation Systems, 1985,2009

CNCTRAIN. Cnc Simulation Systems, 1985,2009 CNCTRAIN Cnc Simulation Systems, 1985,2009 p2 Table of Contents CNCTRAIN 4 Introduction 4 CNCWRITE 6 CNCwrite Milling Example 6 CNCwrite Turning Example 7 CNCwrite Slots on Circle Example 8 G and M Code

More information

SAMSUNG Machine Tools

SAMSUNG Machine Tools SAMSUNG Machine Tools VERTICAL MACHINING CENTER SMEC Co., Ltd. 666, Gasul-ri, Daesan-myeon, Changwon-si Gyeongsangnam-do, Korea 641-921 Tel +82 55 250 4800 Fax +82 55 253 5355 http://www.esmec.com www.esmec.com

More information

TEST PROJECT TEACHER GUIDELINES

TEST PROJECT TEACHER GUIDELINES TEST PROJECT TEACHER GUIDELINES Mastercam Intro to CAD/CAM Objectives You will create the geometry for Pen Base & Acylic Plaque, and then generate a toolpath to machine the part on a CNC machine. This

More information

Short Description Installation Starting Up Configuration. Generalized Postprocessor

Short Description Installation Starting Up Configuration. Generalized Postprocessor Short Description Installation Starting Up Configuration Generalized Postprocessor Index TesoPost Generalized Postprocessor Index... 2 Short Description...3 Concept...3 System Requirements... 4 Delivered

More information

Teachware CNC Technology

Teachware CNC Technology Teachware CNC Technology Contents CNC Basics CNC Turning CNC Milling CAD/CAM Turning & Milling CNC Basics - Excerpt MTS TeachWare Student s Book - MTS GmbH 1999 MTS Mathematisch Technische Software-Entwicklung

More information

Shop-Talk Cad/Cam The language between man and machine!

Shop-Talk Cad/Cam The language between man and machine! Shop-Talk Cad/Cam The language between man and machine! The job shop progamming solution Its so simple even a CaveMan can use it! CNC Solutions, Inc. 13955 Murphy Road #122 Stafford, TX 77477 TEL: 832-407-4455

More information

Sample. CNC Programming product family... CNC Programming: Basics & Tutorial Textbook. & CNC Programming: Reference Book. CNC Programming: Workbook

Sample. CNC Programming product family... CNC Programming: Basics & Tutorial Textbook. & CNC Programming: Reference Book. CNC Programming: Workbook CNC Programming product family... CNC Programming: Basics & Tutorial Textbook CNC Programming: Reference Book CNC Programming: Workbook CNC Programming: Workbook - Instructor Edition CNC Programming: Basics

More information

CNC 8055 MC. Self-teaching manual REF. 1010

CNC 8055 MC. Self-teaching manual REF. 1010 CNC 8055 MC Self-teaching manual REF. 1010 All rights reserved. No part of this documentation may be transmitted, transcribed, stored in a backup device or translated into another language without Fagor

More information

CNC 8055 / CNC 8055i SELF-TEACHING MANUAL ( TC OPTION) (REF 0607) (Ref 0607)

CNC 8055 / CNC 8055i SELF-TEACHING MANUAL ( TC OPTION) (REF 0607) (Ref 0607) CNC 8055 / CNC 8055i (REF 0607) SELF-TEACHING MANUAL ( TC OPTION) (Ref 0607) All rights reserved. No part of this documentation may be copied, transcribed, stored in a data backup system or translated

More information

G10 Data Setting Command

G10 Data Setting Command G10 Data Setting Command Though it s barely mentioned in most basic CNC courses, the G10 command is an extremely important basic CNC feature It allows you to input data from within CNC programs This data

More information

Computer-Aided Numerical Control (CNC) Programming and Operation; Lathe Introduction, Advanced Mills

Computer-Aided Numerical Control (CNC) Programming and Operation; Lathe Introduction, Advanced Mills 1 of 6 9/9/2014 3:59 PM I. Catalog Information Credit- Degree applicable Effective Quarter: Fall 2014 MCNC 75B Computer-Aided Numerical Control (CNC) Programming and Operation; Lathe Introduction, Advanced

More information

H6C-T Lathe CNC Controller

H6C-T Lathe CNC Controller H6C-T Lathe CNC Controller Manual Ver Mar., 2011 HUST Automation Inc. No. 80 Kon Yei Road, Toufen, Miaoli, Taiwan Tel: 886-37-623242 Fax: 886-37- 623241 Table of Contents TABLE OF CONTENTS 1 H6C-T Main

More information

TL-Series Sub-Spindle Operator s Addendum

TL-Series Sub-Spindle Operator s Addendum 3 4 5 11 9 TL-Series Sub-Spindle Operator s Addendum 2 1 12 10 6 7 8 20HP VECTOR DUAL DRIVE LIVE TOOLING SUB SPINDLE 2008 Haas Automation, Inc. 96-0037 rev L 9/08 1 1. Introduction Specific M codes are

More information

Queensborough Community College NSF Tech ASCEND

Queensborough Community College NSF Tech ASCEND Queensborough Community College NSF Tech ASCEND Computer Numerical Control (CNC) Component Student Manual Prepared by Prof. Joseph Goldenberg, MET&DD Department 2003 Edition Table of Contents Introduction

More information

CNC Applications. Introduction to Machining Centers

CNC Applications. Introduction to Machining Centers CNC Applications Introduction to Machining Centers Machining Centers A machining center is simply a CNC milling machine with an automatic tool changer and an enclosure. There are a number of different

More information

SINUMERIK 810/840D DIN Programming for Milling

SINUMERIK 810/840D DIN Programming for Milling SINUMERIK 810/840D DIN Programming for Milling Training Manual Edition 2008.01 Training Documentation SINUMERIK 810/840D Operating and Programming DIN - Milling Valid for: Control SINUMERIK 810/840D Edition

More information

MITSUBISHI CNC M700V Series, M70 Series Simple programming function NAVI MILL / NAVI LATHE

MITSUBISHI CNC M700V Series, M70 Series Simple programming function NAVI MILL / NAVI LATHE MITSUBISHI CNC M700V Series, M70 Series Simple programming function NAVI MILL / NAVI LATHE U s e r Friendly Programming function with simple operation "NAVI MILL" "NAVI LATHE" ~Installed in M700V/M70 Series~

More information

H6C-M Mill CNC Controller

H6C-M Mill CNC Controller H6C-M Mill CNC Controller Manual (Suitable for the controller: H6C-M H6CL-M H9C-M H9CL-M) Ver Jan, 2011 HUST Automation Inc. No. 80 Kon Yei Road, Toufen, Miaoli, Taiwan Tel: 886-37-623242 Fax: 886-37-

More information

SAMSUNG Machine Tools

SAMSUNG Machine Tools SAMSUNG Machine Tools LCV 55 / 65 / 8 VERTICAL MACHINING CENTERS SMEC Co., Ltd. 6671, Gasulri, Daesanmyeon, Changwonsi Gyeongsangnamdo, Korea 641921 Tel +82 55 25 4832(48) Fax +82 55 25 491(492) http://www.esmec.com

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

Machine Tool Control. Besides these TNCs, HEIDENHAIN also supplies controls for other areas of application, such as lathes.

Machine Tool Control. Besides these TNCs, HEIDENHAIN also supplies controls for other areas of application, such as lathes. Machine Tool Control Contouring controls for milling, drilling, boring machines and machining centers TNC contouring controls from HEIDENHAIN for milling, drilling, boring machines and machining centers

More information

Part Programming Commands

Part Programming Commands Part Programming Commands Page 1 of 49 Part Programming This chapter details the part programming codes used to run your Excellon machines automatically. The CNC-7, like all Excellon machines, has a set

More information

CNC Turning Training CNC MILLING / ROUTING TRAINING GUIDE. www.denford.co.uk Page 1

CNC Turning Training CNC MILLING / ROUTING TRAINING GUIDE. www.denford.co.uk Page 1 CNC Turning Training www.denford.co.uk Page 1 Table of contents Introduction... 3 Start the VR Turning Software... 3 Configure the software for the machine... 4 Load your CNC file... 5 Configure the tooling...

More information

SAMSUNG Machine Tools PL60 CNC TURNING CENTER

SAMSUNG Machine Tools PL60 CNC TURNING CENTER SAMSUNG Machine Tools PL60 CNC TURNING CENTER SAMSUNG'S Advanced Engineering and Machine Design Cast iron structure for superior dampening characteristics and thermal displacement Rigid 45 degree slant

More information

Copyright. Adtech (Shenzhen) Technology Co., Ltd. (Adtech hereafter) is in possession of the

Copyright. Adtech (Shenzhen) Technology Co., Ltd. (Adtech hereafter) is in possession of the ADT-CNC4620 CNC4620 Lathe Control System Programming Manual Adtech (Shenzhen) Technology Co., Ltd. Add: F/5, Bldg/27-29, Tianxia IC Industrial Park, Yiyuan Rd, Nanshan District, Shenzhen Postal code: 518052

More information

INTRODUCTION. Definition

INTRODUCTION. Definition Definition INTRODUCTION Computer Numerical Control (CNC) is one in which the functions and motions of a machine tool are controlled by means of a prepared program containing coded alphanumeric data. CNC

More information

Module 5. CNC Machines. Version 2 EE IIT, Kharagpur 1

Module 5. CNC Machines. Version 2 EE IIT, Kharagpur 1 Module 5 CNC Machines Version 2 EE IIT, Kharagpur 1 Lesson 23 Introduction to Computer Numerically Controlled (CNC) Machines Version 2 EE IIT, Kharagpur 2 Instructional Objectives After learning the lesson

More information

Mastercam Instructions. KTH School of Architecture Digital Fabrication Lab - CNC Router Version 2.1 2014-02-06

Mastercam Instructions. KTH School of Architecture Digital Fabrication Lab - CNC Router Version 2.1 2014-02-06 Mastercam Instructions KTH School of Architecture Digital Fabrication Lab - CNC Router Version 2.1 2014-02-06 CONTENTS: 1. Setup in Rhino and Mastercam 2. Creating A Drilling Operation 3. Creating A Contour

More information

INTRODUCTION TO COMPUTER NUMERICAL CONTROL

INTRODUCTION TO COMPUTER NUMERICAL CONTROL Unit -7 : CNC MACHINING CENTERS INTRODUCTION TO COMPUTER NUMERICAL CONTROL The variety being demanded in view of the varying tastes of the consumer calls for a very small batch sizes. Small batch sizes

More information

2.008 Design & Manufacturing II

2.008 Design & Manufacturing II 2.008 Design & Manufacturing II The CAD/CAM Labs Lab I Process Planning G-Code Mastercam Lathe Lab II Mastercam Mill Check G-Code Lab III CNC Mill & Lathe Machining OBJECTIVE 2 BACKGROUND 2 LAB EXERCISES

More information

FANUC Series 0 -MODEL D. For Machining Center System USER S MANUAL B-64304EN-2/01

FANUC Series 0 -MODEL D. For Machining Center System USER S MANUAL B-64304EN-2/01 FANUC Series 0 -MODEL D FANUC Series 0 * * Mate-MODEL D For Machining Center System USER S MANUAL B-64304EN-2/01 No part of this manual may be reproduced in any form. All specifications and designs are

More information

Pos. Qty. Article Description Price / Drilling capacity in steel 60 Ø 25 mm Tapping capacity M 20 Milling capacity in steel 60 150 cm³/min.

Pos. Qty. Article Description Price / Drilling capacity in steel 60 Ø 25 mm Tapping capacity M 20 Milling capacity in steel 60 150 cm³/min. Offer 1 1 Vertical CNC-machining centre model FZ 12 W Magnum Completely refurbished pre-owned machine Updated in 2015 Year of construction: depends, weight 4.000 kg Scope of delivery: Column moving machining

More information

DUGARD. Machine Tools Since 1939. Dugard 700L Series Heavy Duty CNC Lathes. www.dugard.com

DUGARD. Machine Tools Since 1939. Dugard 700L Series Heavy Duty CNC Lathes. www.dugard.com DUGARD Machine Tools Since 1939 Dugard 700L Series Heavy Duty CNC Lathes www.dugard.com Dugard 700L Heavy Duty CNC Lathe 2000, 3000 or 4000mm bed length Designed for easy and convenient operation The concave

More information

SEMMME2-20 - SQA Unit Code H2AB 04 Operating CNC Milling Machines

SEMMME2-20 - SQA Unit Code H2AB 04 Operating CNC Milling Machines Overview This unit identifies the competences you need to operate Computer Numerical Control (CNC) three-axis or multi-axis machines, or CNC machining centres, in accordance with approved procedures. You

More information

Setting up the DeskCNC controller.

Setting up the DeskCNC controller. 1) Determine the steps to linear motion ratios for each axis. 2 2) Determine Maximum velocity (speed). 3 3) Setting up the software Machine Tab 4 4) Setting up the software DeskCNC Setup Tab 5 5) Setting

More information

MILLPWR Setup Access Code

MILLPWR Setup Access Code MILLPWR Setup Access Code An access code must be entered before the installation setup parameters can be accessed or changed. IMPORTANT The access code is 8891. Refer to Section 7, Setup. IMPORTANT Supervisors

More information

Renishaw 2008. apply innovation TM. Calibrating 5-axis machines to improve part accuracy. 5Align

Renishaw 2008. apply innovation TM. Calibrating 5-axis machines to improve part accuracy. 5Align Calibrating 5-axis machines to improve part accuracy 5Align Productive Process Pyramid TM Understanding and tracking machine behaviour Process verification Thermal compensation In-cycle process control

More information

TA-A BED TYPE MILLING CENTRE

TA-A BED TYPE MILLING CENTRE TA-A BED TYPE MILLING CENTRE TA-A BED TYPE MILLING CENTRE MILLING CENTRE HIGH CAPACITY IN A COMPACT MACHINE High stock removal capacity TA-A BED TYPE MILLING CENTRE 2 TA-A The TA-A milling centre is a

More information

Pos. Qty. Article Description Price /

Pos. Qty. Article Description Price / Offer 1 1 Vertical CNC-machining centre model FZ 08.2 KS with NC-swivel head Year of construction: 2002, weight: 3.100 kg Machine-No. 223-11 Scope of delivery: Column moving machining centre with fixed

More information

CINCINNATIR. A SUPPLEMENT to the OPERATION MANUAL FOR THE. For CINCINNATI Laser Control Software Version 8.3 CINCINNATI INCORPORATED

CINCINNATIR. A SUPPLEMENT to the OPERATION MANUAL FOR THE. For CINCINNATI Laser Control Software Version 8.3 CINCINNATI INCORPORATED Section 7 Operation A SUPPLEMENT to the OPERATION MANUAL FOR THE CINCINNATI CL-900 Series Laser System For CINCINNATI Laser Control Software Version 8.3 CINCINNATIR CINCINNATI INCORPORATED C I N C I N

More information

Milling and Machining Center Basics

Milling and Machining Center Basics Training Objectives After watching the video and reviewing this printed material, the viewer will gain knowledge and understanding of basic milling theories and procedures. In addition, the viewer will

More information

BED TYPE MILLING CENTRE

BED TYPE MILLING CENTRE TR BED TYPE MILLING CENTRE TR BED TYPE MILLING CENTRE BED TYPE MILLING CENTRE HIGH PERFORMANCE IN A COMPACT MACHINE PROVIDING ACCURATE COMPLEX MILLING TR BED TYPE MILLING CENTRE The TR milling centre is

More information

Introduction to Autodesk Inventor for F1 in Schools

Introduction to Autodesk Inventor for F1 in Schools Introduction to Autodesk Inventor for F1 in Schools F1 in Schools Race Car In this course you will be introduced to Autodesk Inventor, which is the centerpiece of Autodesk s digital prototyping strategy

More information

FACULTY OF ENGINEERING UNIVERSITY OF STELLENBOSCH USER INSTRUCTIONS FOR LEADWELL VMC40 NUMERICALLY CONTROLED MILLING MACHINE

FACULTY OF ENGINEERING UNIVERSITY OF STELLENBOSCH USER INSTRUCTIONS FOR LEADWELL VMC40 NUMERICALLY CONTROLED MILLING MACHINE FACULTY OF ENGINEERING UNIVERSITY OF STELLENBOSCH USER INSTRUCTIONS FOR LEADWELL VMC40 NUMERICALLY CONTROLED MILLING MACHINE 18 Junie 2014 Prof AH Basson TABLE OF CONTENTS 1. Safety Precautions... 2 2.

More information

5-Axis Test-Piece Influence of Machining Position

5-Axis Test-Piece Influence of Machining Position 5-Axis Test-Piece Influence of Machining Position Michael Gebhardt, Wolfgang Knapp, Konrad Wegener Institute of Machine Tools and Manufacturing (IWF), Swiss Federal Institute of Technology (ETH), Zurich,

More information

Detailed information about Gerber, NC Drill and NC Route.

Detailed information about Gerber, NC Drill and NC Route. Title: Product: Summary: Manufacturing Output OrCAD / Allegro PCB Editor Detailed information about Gerber, NC Drill and NC Route. Author/Date: Beate Wilke / 27.05.2009 Table of Contents 1 Gerber... 2

More information

SEMAE3221 Machining aircraft components using CNC milling machines

SEMAE3221 Machining aircraft components using CNC milling machines Machining aircraft components using CNC milling machines Overview This standard identifies the competences you need to operate Computer Numerical Control (CNC) three axis or five axis machines or CNC machining

More information

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data.

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. MATHEMATICS: THE LEVEL DESCRIPTIONS In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. Attainment target

More information

HUST Lathe CNC Controller

HUST Lathe CNC Controller HUST Lathe CNC Controller Manual Model: HUST CNC H4CL-T Version: Sep 2006 Table of Contents TABLE OF CONTENTS 1 Main Features of CNC Lathe Controller 1-1 2 Operation 2-1 2.1 Basic Operation 2-1 Startup

More information

HIGH PRODUCTION DUAL DRIVE HORIZONTAL MACHINING CENTER

HIGH PRODUCTION DUAL DRIVE HORIZONTAL MACHINING CENTER HIGH PRODUCTION DUAL DRIVE HORIZONTAL MACHINING CENTER 14001 認 可 登 錄 14001 認 可 登 錄 1 Introducing all new H630B high speed horizontal machining center. Incorporates state of the art Dual Drive technology

More information

User Manual V5.0.0 1

User Manual V5.0.0 1 User Manual V5.0.0 1 Introduction... 4 Safety... 4 Initial setup... 4 Setup Wizard... 4 Linear units... 5 Angular units... 5 Feed rate... 5 Plasma cutting... 5 Rotary cutting... 5 Multiple drawings...

More information

XCal-View user manual

XCal-View user manual XCal-View user manual XCal-View user manual M-9925-0107-04 1 Introduction to XCal-View About XCal-View Renishaw XCal-View software has been written as a direct replacement for the previous analysis package

More information

Understanding Gcode Commands as used for Image Engraving

Understanding Gcode Commands as used for Image Engraving Understanding Gcode Commands as used for Image Engraving February 2015 John Champlain and Jeff Woodcock Introduction Reading and understanding gcodes is helpful for trouble-shooting cnc engraving processes,

More information

From Wikipedia, the free encyclopedia

From Wikipedia, the free encyclopedia Page 1 of 10 CNC From Wikipedia, the free encyclopedia The abbreviation CNC stands for computer numerical control, and refers specifically to a computer "controller" that reads G-code instructions and

More information

GeoGebra Statistics and Probability

GeoGebra Statistics and Probability GeoGebra Statistics and Probability Project Maths Development Team 2013 www.projectmaths.ie Page 1 of 24 Index Activity Topic Page 1 Introduction GeoGebra Statistics 3 2 To calculate the Sum, Mean, Count,

More information

MET 306 Activity 6. Using Pro/MFG Milling Operations Creo 2.0. Machining a Mast Step

MET 306 Activity 6. Using Pro/MFG Milling Operations Creo 2.0. Machining a Mast Step Using Pro/MFG Milling Operations Creo 2.0 Machining a Mast Step If the Trim option is grayed out when trimming the mill volume, Save (making sure the.asm file is going to the correct subdirectory), Exit

More information

Milling and turning with SINUMERIK: CNC solutions for the shopfloor

Milling and turning with SINUMERIK: CNC solutions for the shopfloor Milling and turning with SINUMERIK: CNC solutions for the shopfloor 15 CONTENTS Shopfloor solutions for CNC machines with SINUMERIK solution line... 3 Milling with the 840D sl and ShopMill Flexible for

More information

Training Document for Integrated Automation Solutions Totally Integrated Automation (TIA) Module S01 Fundamentals of CNC Programming with SinuTrain

Training Document for Integrated Automation Solutions Totally Integrated Automation (TIA) Module S01 Fundamentals of CNC Programming with SinuTrain Training Document for Integrated Automation Solutions Totally Integrated Automation (TIA) Module S01 Fundamentals of CNC Programming with SinuTrain T I A Training Document Page 1 of 53 Module S01 This

More information

CAD/CAM DESIGN TOOLS. Software supplied with all new and upgraded Boxford Lathes, Mills and Routers

CAD/CAM DESIGN TOOLS. Software supplied with all new and upgraded Boxford Lathes, Mills and Routers CAD/CAM DESIGN TOOLS Software supplied with all new and upgraded Boxford Lathes, Mills and Routers The Boxford CAD/CAM Design Tools software is a unique suite of integrated CAD and CAM tools designed specifically

More information

CNC HARDWARE & TOOLING BASICS

CNC HARDWARE & TOOLING BASICS Computer Aided Manufacturing (CAM) CNC HARDWARE & TOOLING BASICS Assoc. Prof. Dr. Tamer S. Mahmoud 1. Parts of CNC Machine Tools Any CNC machine tool essentially consists of the following parts: Part Program,

More information

GSK980TD Turning Machine CNC System. User Manual. GSK CNC Equipment

GSK980TD Turning Machine CNC System. User Manual. GSK CNC Equipment GSK980TD Turning Machine CNC System User Manual GSK CNC Equipment Preface Warning! Please read the user manual and a user manual from machine manufacturer completely before installation, programming and

More information

Trimble CFX-750 Display with the Yield Monitoring System

Trimble CFX-750 Display with the Yield Monitoring System Trimble CFX-750 Display with the Yield Monitoring System Quick Reference Card This Quick Reference Card is intened to help you with the basic operation and calibration of the Trimble CFX-750 display with

More information

NCGuide Academic packages

NCGuide Academic packages White Paper Document No. MWA-017-EN_06_1407 July 2014 NCGuide Academic packages Authentic FANUC CNC software on a PC for the most effective learning environment 1 Introduction 5 1.1 NCGuide Academic Packages...

More information

B.1 LIST OF ALARM CODES

B.1 LIST OF ALARM CODES B. ALARM LIST APPENDIX B 62755EN/01 B.1 LIST OF ALARM CODES (1) Program errors /Alarms on program and operation (P/S alarm) 000 PLEASE TURN OFF POWER A parameter which requires the power off was input,

More information

Manual for simulation of EB processing. Software ModeRTL

Manual for simulation of EB processing. Software ModeRTL 1 Manual for simulation of EB processing Software ModeRTL How to get results. Software ModeRTL. Software ModeRTL consists of five thematic modules and service blocks. (See Fig.1). Analytic module is intended

More information

Scripting Language Reference. SimpleBGC 32bit

Scripting Language Reference. SimpleBGC 32bit Scripting Language Reference SimpleBGC 32bit Firmware ver.: 2.5x Updated: 05.08.2015 Overview Scripting language is intended to control a gimbal by user-written program. This program is uploaded to controller

More information

MDM-Metrosoft Guide to GearSoft program Versions 5.06 5.07 5.08. Guide to GearSoft Software Code: 193 Versions 5.06 5.07 5.08

MDM-Metrosoft Guide to GearSoft program Versions 5.06 5.07 5.08. Guide to GearSoft Software Code: 193 Versions 5.06 5.07 5.08 MDM-Metrosoft Guide to GearSoft program Versions 5.06 5.07 5.08 Guide to GearSoft Software Code: 193 Versions 5.06 5.07 5.08 MDM-Metrosoft - Guide to GearSoft program Versions 5.06 5.07 5.08 Page 2 of

More information

A cut above the rest. sprintcut. CNC Wirecut EDM

A cut above the rest. sprintcut. CNC Wirecut EDM ZAXS I sprintcut Z AXIS sprintcut 4 axes CNC Precision LM guideways for all axes Max. cutting speed : 2 16 mm / min. (With Ø.25 special soft brass wire on 5 mm thick HCHCr (steel) workpiece) 2 14 mm /

More information

[ means: Save time, money and space! MAXXMILL 500. Vertical milling center for 5-side machining

[ means: Save time, money and space! MAXXMILL 500. Vertical milling center for 5-side machining [ E[M]CONOMY] means: Save time, money and space! MAXXMILL 500 Vertical milling center for 5-side machining MAXXMILL 500 MAXXMILL 500 is the ideal vertical milling center for the for the 5-axis operation

More information

LOCATION DEPENDENCY OF POSITIONING ERROR IN A 3-AXES CNC MILLING MACHINE

LOCATION DEPENDENCY OF POSITIONING ERROR IN A 3-AXES CNC MILLING MACHINE th International & 26 th All India Manufacturing Technology, Design and Research Conference (AIMTDR 214) December 12 th 14 th, 214, IIT Guwahati, Assam, India LOCATION DEPENDENCY OF POSITIONING ERROR IN

More information

D-MAX WEB GUIDE CONTROLLER WITH OPERATOR INTERFACE PANEL QUICK START SETUP MANUAL

D-MAX WEB GUIDE CONTROLLER WITH OPERATOR INTERFACE PANEL QUICK START SETUP MANUAL 1/1 D-MAX.D1 1A Manual S1 D-MAX OPERATOR INTERFACE (Application Home Screen Is Shown) D-MAX CONTROLLER 04/14/2008 2008 Fife Corporation. All rights reserved. Figure Sheet 2-249 This page is intentionally

More information

Operating and installation instructions. Professional plasma torch height control. Model: MyPlasm THC

Operating and installation instructions. Professional plasma torch height control. Model: MyPlasm THC Operating and installation instructions Professional plasma torch height control Model: MyPlasm THC Characteristics of the device: - A miniature casing for panel mounting - Full optical insulation of inputs

More information

CNC Vertical Machining Center Alpha-Center HD Heavy cast iron design, precise guideways, high-performance gear designed for heavy machining

CNC Vertical Machining Center Alpha-Center HD Heavy cast iron design, precise guideways, high-performance gear designed for heavy machining CNC Vertical Machining Center Alpha-Center HD Heavy cast iron design, precise guideways, high-performance gear designed for heavy machining Optional spindle package: 31 kw maximum power 870 Nm max. torque

More information

Tool Holder Catalog TRAUB TNX 65/42 VDI 30 HSK 40 142856-21.02.2014. 0214/Rö

Tool Holder Catalog TRAUB TNX 65/42 VDI 30 HSK 40 142856-21.02.2014. 0214/Rö Tool Holder Catalog TRAUB TNX 65/42 VDI 30 HSK 40 142856-21.02.2014 0214/Rö Disclaimer The illustrations in this documents may deviate from the delivered product. We reserve the right to make changes due

More information

TwinCAT NC Configuration

TwinCAT NC Configuration TwinCAT NC Configuration NC Tasks The NC-System (Numeric Control) has 2 tasks 1 is the SVB task and the SAF task. The SVB task is the setpoint generator and generates the velocity and position control

More information

CNC USB Controller. User manual 2014-09-10

CNC USB Controller. User manual 2014-09-10 CNC USB Controller User manual 2014-09-10 1 Disclaimer CONTROLLER AND CONTROLLER SOFTWARE ARE PROVIDED TO YOU "AS IS," WITHOUT WARRANTY. THERE IS NO WARRANTY FOR THE CONTROLLER AND CONTROLLER SOFTWARE,

More information

Control systems. CNC 8 x 6 CNX 8 x 9. Operation manual. Production and service: MEFI, s.r.o. Peroutkova 37, 150 00 Praha 5

Control systems. CNC 8 x 6 CNX 8 x 9. Operation manual. Production and service: MEFI, s.r.o. Peroutkova 37, 150 00 Praha 5 Control systems CNC 8 x 6 CNX 8 x 9 Operation manual Production and service: MEFI, s.r.o. Peroutkova 37, 150 00 Praha 5 Tel.: (02) 51045113, fax: (02) 51045112 e-mail: mefi@bohem-net.cz http://www.mefi.cz

More information

User s Manual HEIDENHAIN Conversational TNC 320. NC Software 340 551-04 340 554-04

User s Manual HEIDENHAIN Conversational TNC 320. NC Software 340 551-04 340 554-04 User s Manual HEIDENHAIN Conversational TNC 320 NC Software 340 551-04 340 554-04 English (en) 9/2009 Controls of the TNC Keys on visual display unit Key Function Split screen layout Toggle display between

More information

Radius Compensation G40, G41, & G42 (cutter radius compensation for machining centers, tool nose radius compensation for turning centers)

Radius Compensation G40, G41, & G42 (cutter radius compensation for machining centers, tool nose radius compensation for turning centers) Radius Compensation G40, G41, & G42 (cutter radius compensation for machining centers, tool nose radius compensation for turning centers) These features are commonly well covered in most basic CNC courses.

More information

DUGARD. DUGARD Machine. Dugard Heavy Duty Vertical Machining Centres. Machine Tools That Create Solutions Since 1939. Tools

DUGARD. DUGARD Machine. Dugard Heavy Duty Vertical Machining Centres. Machine Tools That Create Solutions Since 1939. Tools DUGARD Machine Tools That Create Solutions Since 1939 Dugard Heavy Duty Vertical Machining Centres DUGARD Machine Tools www.dugard.com sales@dugard.com 01273 732286 The unique inverted slideway design

More information

4 Manipulating Elements

4 Manipulating Elements 4 Manipulating Elements In the context of this course, Manipulation of elements means moving, copying, rotating, scaling and some other similar operations. We will find that manipulations are always a

More information

DUGARD. Machine Tools Since 1939. Dugard 200HT / 200MC Slant Bed, High Precision CNC Lathes. www.dugard.com

DUGARD. Machine Tools Since 1939. Dugard 200HT / 200MC Slant Bed, High Precision CNC Lathes. www.dugard.com DUGARD Machine Tools Since 1939 Dugard 00HT / 00MC Slant Bed, High Precision CNC Lathes www.dugard.com Dugard 00HT / 00MC Hydraulic Tailstock Quill can be controlled by programme or manually, auto sensing

More information