Off-Line Programming Design of Robots Based on DXF Files Zhaoxin Chen 1,a, Jiming Yi 1,b*, Jun Liu 1,c, Yanfeng Lin 2,3,d

Size: px
Start display at page:

Download "Off-Line Programming Design of Robots Based on DXF Files Zhaoxin Chen 1,a, Jiming Yi 1,b*, Jun Liu 1,c, Yanfeng Lin 2,3,d"

Transcription

1 Advanced Materials Research Submitted: ISSN: , Vol. 1039, pp Accepted: doi: / Online: Trans Tech Publications, Switzerland Off-Line Programming Design of Robots Based on DXF Files Zhaoxin Chen 1,a, Jiming Yi 1,b*, Jun Liu 1,c, Yanfeng Lin 2,3,d 1 School of Mechanical and Automotive Engineering, Xiamen University of Technology, Xiamen, China 2 Key Laboratory of Precision Actuation and Transmission, Fujian Province University 3 Xiamen Siert Robot Systems Ltd, Xiamen, China a zxchen_xmut@163.com, b jmyi@xmut.edu.cn, c liujunsgf@hotmail.com Keywords: DXF file; primitive optimization sequencing; Coordinate calibration; Offline programming Abstract. To solve the problems of low efficiency and inaccurate positions of artificial trial teaching with industrial robots, a path method is developed to precisely control the robots. Based on a study of general and specific DXF file formats and developed in C # programming language, this method proposes a file format converting algorithm to extract the primitive information and optimize the primitives. The set of points optimized will then be transmitted to the robots through Ethernet and conduct the space coordinates calibration to finally generate robot path codes. Simulations and welding experiments prove that the method will greatly reduce the artificial trial teaching time, improve the working efficiency of robots, and it is adapted to the robots welding, cutting, coating and other trajectory path problems,etc.. Introduction Robots have been widely used nowadays since it plays an increasingly important role as more precise and flexible working labors with higher efficiency under the bad environment than human beings. At present, robots are mainly used for welding, assembling, carrying,coating and cutting,etc. Most of the times, The programming method used for the industrialized robots is that of the online programming: the robotic end effector(tcp), by the help of the teaching box, moves to a set of positions needed for operation, and stores the information in proper order. Then by edition, the movements taught by trial can be re-presented.this online programming method is simple and easy to implement, and is applied under the circumstances of simple operation trajectory and mass production. But by this method, reprogramming is constantly needed as long as the task changes. And as the tasks of operation is getting more and more complicated and the range of application wider and wider, this method no longer fits in with the needs of the current multi-type and low-volume flexible manufacturing. The off-line programming technology is thereby developed [1,2]. For online programming no longer fits in with the contemporary needs of multi-type low-volume flexible manufacturing, off-line programming technology are developed and becomes more preferable. Scientific research institutions at home have made great efforts on exploring robots off-line programming technology since 20c80s and made some achievements, such as the RobotStudio offline programming software developed by ABB,roboguide by FANUC, Sim by KUKA and MOTOCOM by MOTOMAN, etc. All relying on robot-making companies abroad [3]. This method is designed to take the place of artificial trail training and makes it less time-consuming. The graphic software AutoCAD is widely used in the mechanical design and manufacture and it can save the DXF format for open source data structure file.all the information about graphics in the DXF files is redacted into ASCII files in accordance with the prescribed form, which can be called by applications redacted in the high-level language and is one of the industry standard in the field of CAD [4,5]. The information extracted from the DXF files can be used in the numerical control programming, but rarely seem in programming of industrialized robots. Based on the careful study of the DXF files, each primitive is read out by the C # Programming software and the optimization of their arrangement is also carried out, so as to produce the orderly and the optimal operation trajectory of the robots. In the actual robot operations, it only needs a simple All rights reserved. No part of contents of this paper may be reproduced or transmitted in any form or by any means without the written permission of Trans Tech Publications, (# , Pennsylvania State University, University Park, USA-18/09/16,16:25:19)

2 314 Advanced Manufacturing and Automation calibration of coordinates, the robots can move precisely in the optimized paths. The ABB robot lap experiment shows that this routine can effectively reduce the time of artificial trial teaching and improve the working efficiency and the quality of robots.suitable for other robot path, such as welding, cutting, handling and so on. DXF Files DXF File Format. DXF files are of an open-source CAD (computer aided design) data file format (a vector image file). They are composed of several segments in the following order: HEADER (containing the general information of graphics), CLASS (containing the information defined by the applications), TABLES (containing the definitions of project), BLOCKS (containing the descriptions of the entities), ENTITIES (containing the graphic entities), OBJECT (containing the non-graphic objects of data) and a segment containing the preview of images. Each segment consists of GROUP CODE (indicating the types of subsequent values) and GROUP VALUE. To extract entity information of the graphics, many items of the DXF files can be omitted; and as long as the entity segment is obtained, the descriptions of point coordinates of the relative geometric graphics can be achieved. In the DXF files, GROUP CODE and VALUE are set in two rows respectively; the first row is GROUP CODE and the second GROUP VALUE, the data type of which is determined by the former. Each segment begins with the GROUP CODE 0 of a character string SECTION, followed later by the GROUP CODE 2 and the character string indicating the segment name, and ends with the GROUP CODE 0 of a character string ENDSEC. Read DXF files.the reading process as shown in figure 1 Fig. 1 Read Algorithm of DXF File Process

3 Advanced Materials Research Vol The GROUP CODE and VALUE exist in pairs.defines a two dimensional array of strings(private string[]str = new string[2]) to store the group code and values that have been read.use the methods Readtwoline() read two rows,a line is group code, the other is value,and return a two dimensional array of strings store in str[],if (str[1] == "ENTITIES") ReadEntities();/read if entity/ The main codes: void ReadEntities() /*the method of read entities section*/ { while (str[1]!= "ENDSEC") / *judge if the end of entities section* / { switch (str[1]) /* entities section* / { case "LINE": /*if the lines*/ ReadLine() /*read and store lines*/ break; case "CIRCLE": /* if the clrcle */ ReadCircle(); /* read and store clrcle */ break; case "ARC": /* if the arc */ ReadArc();/*read and store arc */ break; case "ELLIPSE":/* if the ellipse */ ReadEllipse();/*read and store ellipse */ break; case "LWPOLYLINE": /* if the lwpoline */ ReadLwpolyline();/*read and store lwpoline */ break; case"spline":/* if the spline */ ReadSpline();/*read and spline lings */break; default: str =Readtwoline();/*continue*/ break; } } } Store the information read in the prescribed dynamic array. Primitive Optimization In DXF files, the arrangement of graphic elements is based on the sequence of the primitive drawn, and store by a primitive control points of the condition of the default sort order, making the information of each primitive extracted from the parsing of DXF arranged in disorder. If the reading and conversion of the primitive information are carried out in accordance with this sequence by default, it may result in the randomness and chaos of the trajectories in the manufacturing process, the mass increase of the invalid stroke and the chaos of processing. The primitive optimization thereby must be conducted [6]. Supposing that the primitives recorded in the DXF files are Q-sets, take one primitive Q i at random. Divide Q i into two classes based on whether the graphic elements thus drawn are closed or not. One class includes LINE, LWPOLYLINE, SPLINE, ARC of DXF and some other non-blocking primitives with the initial and end points disconnected. Quantity is signified by M; The other one are the closed primitives with the initial and end points connected,including RECTANGLE, CIRCLE, ELLIPS, POLGON, LWPOLYLINE and so on. The quantity of it is signified by N. Then Q=M N The explanations of the algorithm on the arrangement of non-blocking primitives: Step 1: Specify one point of a primitive as Pi, i = { 0, 1,, M-1}. Put the other points of the primitive information behind this point.(as shown in Figure 2,suppose that P1 is the first control point. Then P1 is the first point. Find another point of the same primitive as P1; set this point as P2.

4 316 Advanced Manufacturing and Automation Then P2 is the second point. If during the drawing, P1 and P6 are of the same primitive, set P6 as the second point. In Figure 2, during the drawing, P1 P2 are supposed to be of the same primitive. ) Step 2: After saving the information of one primitive, set the end point of the process direction or the drawing based on this primitive as the new reference. Conduct traversal from Pk, k = { 0, 1,, M -W}(W signifies the primitive found), sequence point to the nearest point of primitives,repeat step 1. just as shown in Figure 2, the closest point to P 2 is P 2, the point where the storage of the arc information begins. Record the type of primitive as arc. If a primitive is an arc or elliptic arc, and not linked with the previous one, the initial and end points of this primitive can be calculated by using the data information got from the DXF about the primitive, such as its center, radius, starting and end angles, and so on. If the primitive elements are equal in distance, or the two endpoints of the same element are equal in distance, sequencing and storage will be conducted based on the principle that who comes first shall be handled first. Fig.2 CAD Drawing Examples The multipoint control primitives of the polyline and polygon are arranged in accordance with the storage sequence of DXF files. Then, the last storage point of the already arranged primitives shall be used as a new reference point to make out the primitive closed to this point. Take the center of circles or ellipses for the control point to calculate the distance if encountering these. Find out all the closed primitives N. Save all the primitives. And record the arrangement of each primitive, that is, the sequence of the processing of the workpiece, with a dynamic array, as the storage process runs. Coordinates Calibration The work coordinate system is the reference coordinate system for the robot motion. As shown in Figure 3, set O as the Origin and establish the coordinate system XYZ as the work coordinate system. The calculation is based on this coordinate system in relation to the spatial values given to the robots. That of the point coordinates of the primitive information read out by the DXF files is based on the Origin during the drawing. So set a Object coordinate system as X 1 Y 1 Z 1, use as the Origin the coordinate values of the first control point read out by the DXF files, Z 1 perpendicular to the workpiece, X 1,Y 1 designated to be overlapping the axis X, Y. Designate P 1 as the first control point just as shown in Figure 3, and establish a work coordinate system X 1 Y 1 Z 1, using this first control point as the Origin. Then P 1 P 2 P 3 P 4 shall be the motion path for the robot, that is, the process trajectory for the workpiece. Supposing that in the work coordinate system, the spatial values of the workpiece coordinate system are [Rx,Ry,Rz], those of the first control point during the drawing is [x 1,y 1,z 1 ]. Then [x,y,z]=[ R x - x 1,R y - y 1,R z -z 1 ], that is, the actual spatial coordinates when the robot moves to the first working point, so do the other control points in their principle. When the workpiece changes its position, it only needs the redefinition of the workpiece coordinate system (the first control point) before the robot can do is to operate precisely following the optimized primitive.

5 Advanced Materials Research Vol Examples of Application Fig. 3 Coordinates Calibration Figgure 4 shows the main interface of the software. After clicking on the controller scan, it will link all the actual and virtual robot controllers connected to this network. The IP address of this robot is , and is a virtual controller. Open the contour line of this processed workpiece drawn by AutoCAD in the DXF format and read the files. Figure 5 is the window for setting process and robot parameters, including the setting process of welding. Take the first control point to conduct the optimization of files, and store them in a dynamic array. Select the start control point by click on the small circle. The other control points should be optimized in Sequencing in accordance with the process shown above. Figure 6 is the simulated space point coordinates of the robot s trajectory [7]. Figure 7 shows the welding experiment set up by the use of ABB robots and Fronius welder. On the basis of the pcsdk provided by the robot language RAPID codes, the programming software in the PC can help design a software that can link the virtual and actual robot controller, developed in the C # programming language. The routine completed by the real controller gets its correspondence through the robot to PC, usually in the ways of Ethernet, RS23, CAN trunk, DeviceNet. The experiment here communicates through Ethernet. Figure 8 shows the result of robot doing the weld experiment according to the instruction of the robot trajectory developed by figure 5 primitives. Fig. 4 Main Interface of the Software

6 318 Advanced Manufacturing and Automation Fig. 5 Window of Parameters Setting Fig. 6 Results of Space Simulation Fig. 7 Experiment Equipment

7 Advanced Materials Research Vol Conclusions Fig. 8 Results of Experimental (1) Propose a method to read the open-source DXF files. This method conduct the traversal of the primitives needed of the ENTITIES, through the processing of the GROUP CODES and VALUES. (2) Optimize the arrangement of the chaotic primitive information that have already been read. And propose a priority principle and method for the storage sequence of the primitive, by the help of software. And conduct the calibration of the actual space coordinates of the robot. (3) Relative simulations and experiments show that this method can greatly reduce the trial time of the robot, and the implementation effect of the irregular processing path is much more noticeable. Acknowledgements The work was supported by the Major production project of Fujian province under No. 2012H6025, the Science and technology plan projects of Xiamen Grant No. JA13232 These financial supports are gratefully acknowledged. The authors also sincerely appreciate the comments and modification suggestions made by the editors and anonymous referees. References [1] Chengyi X, Lijiao X, Off- Line Programming Technology of Industrial Robot[J]. Journal of Nantong vocational college.2008, 22(3) [2] Huanming C, Zhenyu X, Pin L, Design and Implementation of the Off-line Programming System for Arc Welding Robot [J]. Journal of Shanghai jiaotong university.2008, (42) [3] Christine Connolly, The ABB Robot Studio technology and application Industrial Robot [M], [4] Zhenhui S, AutoCAD advanced tutorial [M].beijing: Tsinghua University Press,2002. [5] Chao T, Qunhui Z, Research on Read and Write Method of DXF Format File Based on AutoCAD [J]. 2009,( 21) [6] Qinghong Z,Zhiyong C, Rong M etc.,optim ization sequencing of graphic elements based on DXF file[j]. Computer Applications, 2006,26(1) [7] T. Erlemeier, B. Howard, Interface Design for Offline Robot Programming with the use of Virtual Simulation [D]. Iowa State University.

Operation Trajectory Control of Industrial Robots Based on Motion Simulation

Operation Trajectory Control of Industrial Robots Based on Motion Simulation Operation Trajectory Control of Industrial Robots Based on Motion Simulation Chengyi Xu 1,2, Ying Liu 1,*, Enzhang Jiao 1, Jian Cao 2, Yi Xiao 2 1 College of Mechanical and Electronic Engineering, Nanjing

More information

An Automatic Posture Planning Software of Arc Robot Based on SolidWorks API

An Automatic Posture Planning Software of Arc Robot Based on SolidWorks API Abstract An Automatic Posture Planning Software of Arc Robot Based on SolidWorks API Junfeng Li, Liangyu Li, Zheng Dong & Dongmei Song Advanced Mechatronics Equipment Technology Tianjin Area Laboratory

More information

Research of 3D parametric design system of worm drive based on Pro/E. Hongbin Niu a, Xiaohua Li b

Research of 3D parametric design system of worm drive based on Pro/E. Hongbin Niu a, Xiaohua Li b Advanced Materials Research Online: 2013-06-27 ISSN: 1662-8985, Vols. 712-715, pp 1107-1110 doi:10.4028/www.scientific.net/amr.712-715.1107 2013 Trans Tech Publications, Switzerland Research of 3D parametric

More information

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin Advanced Materials Research Online: 2013-05-14 ISSN: 1662-8985, Vols. 690-693, pp 3205-3208 doi:10.4028/www.scientific.net/amr.690-693.3205 2013 Trans Tech Publications, Switzerland A Template-Matching-Based

More information

Path Planning with Motion Optimization for Car Body-In-White Industrial Robot Applications

Path Planning with Motion Optimization for Car Body-In-White Industrial Robot Applications Advanced Materials Research Online: 2012-12-13 ISSN: 1662-8985, Vols. 605-607, pp 1595-1599 doi:10.4028/www.scientific.net/amr.605-607.1595 2013 Trans Tech Publications, Switzerland Path Planning with

More information

10/25/2018. Robotics and automation. Dr. Ibrahim Al-Naimi. Chapter two. Introduction To Robot Manipulators

10/25/2018. Robotics and automation. Dr. Ibrahim Al-Naimi. Chapter two. Introduction To Robot Manipulators Robotics and automation Dr. Ibrahim Al-Naimi Chapter two Introduction To Robot Manipulators 1 Robotic Industrial Manipulators A robot manipulator is an electronically controlled mechanism, consisting of

More information

Self-formation, Development and Reproduction of the Artificial System

Self-formation, Development and Reproduction of the Artificial System Solid State Phenomena Vols. 97-98 (4) pp 77-84 (4) Trans Tech Publications, Switzerland Journal doi:.48/www.scientific.net/ssp.97-98.77 Citation (to be inserted by the publisher) Copyright by Trans Tech

More information

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2 Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 256-259, pp 2898-2901 doi:10.4028/www.scientific.net/amm.256-259.2898 2013 Trans Tech Publications, Switzerland The Analysis and

More information

Accurate Trajectory Control for Five-Axis Tool-Path Planning

Accurate Trajectory Control for Five-Axis Tool-Path Planning Accurate Trajectory Control for Five-Axis Tool-Path Planning Rong-Shine Lin* and Cheng-Bing Ye Abstract Computer-Aided Manufacturing technology has been widely used for three-axis CNC machining in industry

More information

101. Design and realization of virtual prototype of shotcrete robot based on OpenGL

101. Design and realization of virtual prototype of shotcrete robot based on OpenGL 101. Design and realization of virtual prototype of shotcrete robot based on OpenGL Pei-si Zhong 1, Yi Zheng 2, Kun-hua Liu 3 1, 2, 3 Shandong University of Science and Technology, Qingdao, China 2 Qingdao

More information

D-Cut Master MANUAL NO. OPS639-UM-153 USER'S MANUAL

D-Cut Master MANUAL NO. OPS639-UM-153 USER'S MANUAL D-Cut Master MANUAL NO. OPS639-UM-153 USER'S MANUAL Software License Agreement Graphtec Corporation ( Graphtec ) grants the user permission to use the software (the software ) provided in accordance with

More information

Research of 3D part reconstruction from Orthographic Projections Based on Solid Features

Research of 3D part reconstruction from Orthographic Projections Based on Solid Features Research of 3D part reconstruction from Orthographic Projections Based on Solid Features HAO Yong-tao, Xu Wenyi (CAD Research Center, Tongji University, Shanghai 201804, China, haoyt@vip.sina.com) Abstract

More information

Research and Design of Laser Accurate Displacement Measurement System Xiaogang Wang 1, a, Yuewei Bai 1,b and Kai Liu 1,c

Research and Design of Laser Accurate Displacement Measurement System Xiaogang Wang 1, a, Yuewei Bai 1,b and Kai Liu 1,c Advanced Materials Research Online: 2011-07-27 ISSN: 1662-8985, Vols. 301-303, pp 1289-1292 doi:10.4028/www.scientific.net/amr.301-303.1289 2011 Trans Tech Publications, Switzerland Research and Design

More information

SVG GRAPHICS LANGUAGE AS A DESCRIPTION OF A 2D PATH IN ROBOT PROGRAMMING TASKS

SVG GRAPHICS LANGUAGE AS A DESCRIPTION OF A 2D PATH IN ROBOT PROGRAMMING TASKS S E L E C T E D E N G I N E E R I N G P R O B L E M S N U M B E R 5 I N S T I T U T E O F E N G I N E E R I N G P R O C E S S E S A U T O M A T I O N A N D I N T E G R A T E D M A N U F A C T U R I N G

More information

AutoCAD 2009 Configuration for MUS

AutoCAD 2009 Configuration for MUS AutoCAD 2009 Configuration for MUS NOTE: The following steps do not apply to AutoCAD 2006 or earlier versions. These steps must be done before attempting to use MicroScribe Utility Software (MUS) with

More information

Integrating 3D Vision Measurements into Industrial Robot Applications

Integrating 3D Vision Measurements into Industrial Robot Applications Integrating 3D Vision Measurements into Industrial Robot Applications by Frank S. Cheng cheng1fs@cmich.edu Engineering and echnology Central Michigan University Xiaoting Chen Graduate Student Engineering

More information

Keywords: Vehicle, Accident, Reconstruction, Deformation, Finite element method

Keywords: Vehicle, Accident, Reconstruction, Deformation, Finite element method Key Engineering Materials Online: 2004-10-15 ISSN: 1662-9795, Vols. 274-276, pp 1017-1022 doi:10.4028/www.scientific.net/kem.274-276.1017 2004 Trans Tech Publications, Switzerland Virtual Reconstruction

More information

Keywords: truck frame, parametric modeling, cross-section.

Keywords: truck frame, parametric modeling, cross-section. Key Engineering Materials Online: 2011-01-20 ISSN: 1662-9795, Vols. 460-461, pp 534-539 doi:10.4028/www.scientific.net/kem.460-461.534 2011 Trans Tech Publications, Switzerland A Research and Application

More information

A CAD Based Off-line Programming of Painting Robots

A CAD Based Off-line Programming of Painting Robots A CAD Based Off-line Programming of Painting Robots [1] Kadam Bhagyashree Jayarjun, [2] S.S.Gaonkar, Sinhgad Institute of Technology and Science, Narhe, Pune, bhagyashreekadam05@gmail.com ssgaonkar_sits@sinhgad.edu

More information

Applied Mechanics and Materials Vol

Applied Mechanics and Materials Vol Applied Mechanics and Materials Online: 2014-02-27 ISSN: 1662-7482, Vol. 532, pp 280-284 doi:10.4028/www.scientific.net/amm.532.280 2014 Trans Tech Publications, Switzerland A Practical Real-time Motion

More information

Marine fuel boiler system design platform. Hou Ying-ying

Marine fuel boiler system design platform. Hou Ying-ying Advanced Materials Research Submitted: 2014-05-11 ISSN: 1662-8985, Vols. 986-987, pp 1218-1221 Accepted: 2014-05-19 doi:10.4028/www.scientific.net/amr.986-987.1218 Online: 2014-07-18 2014 Trans Tech Publications,

More information

Virtual Assembly Technology on Steel Bridge Members of Bolt Connection Zhu Hao

Virtual Assembly Technology on Steel Bridge Members of Bolt Connection Zhu Hao Advances in Engineering Research (AER), volume 132 2017 Global Conference on Mechanics and Civil Engineering (GCMCE 2017) Virtual Assembly Technology on Steel Bridge Members of Bolt Connection Zhu Hao

More information

The CAD/CAE system of a tricone rock bit

The CAD/CAE system of a tricone rock bit Computer Aided Optimum Design in Engineering IX 453 The CAD/CAE system of a tricone rock bit Z. Wu 1, V. Thomson 2, H. Attia 2 & Y. Lin 1 1 Department of Mechanical Engineering, Southwest Petroleum Institute,

More information

Design of PC Remote Monitoring System for Standby Generators Chuanhong Zhou 1,a,Jinjie Xiao 1,b, Wei Ren 1,c

Design of PC Remote Monitoring System for Standby Generators Chuanhong Zhou 1,a,Jinjie Xiao 1,b, Wei Ren 1,c Advanced Materials Research Submitted: 2014-06-03 ISSN: 1662-8985, Vol. 1039, pp 197-202 Accepted: 2014-07-14 doi:10.4028/www.scientific.net/amr.1039.197 Online: 2014-10-31 2014 Trans Tech Publications,

More information

2D AUTOCAD GEOMETRIC DATA EXTRACTION AND POST- PROCESSING FOR NUMERICAL CONTROL

2D AUTOCAD GEOMETRIC DATA EXTRACTION AND POST- PROCESSING FOR NUMERICAL CONTROL 2D AUTOCAD GEOMETRIC DATA EXTRACTION AND POST- PROCESSING FOR NUMERICAL CONTROL Tito E. Mwinuka* and Beda M. Mutagahywa ** Department of Mechanical and Industrial Engineering, University of Dar es Salaam,

More information

A Precision Grinding Technique for Radome Inner Surfaces. Z.Y. Jia, T. Ji, D.M. Guo and G.H. Bian

A Precision Grinding Technique for Radome Inner Surfaces. Z.Y. Jia, T. Ji, D.M. Guo and G.H. Bian Key Engineering Materials Online: 2004-02-15 ISSN: 1662-9795, Vols. 257-258, pp 177-182 doi:10.4028/www.scientific.net/kem.257-258.177 2004 Trans Tech Publications, Switzerland A Precision Grinding Technique

More information

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu Applied Mechanics and Materials Submitted: 2014-08-26 ISSN: 1662-7482, Vol. 662, pp 160-163 Accepted: 2014-08-31 doi:10.4028/www.scientific.net/amm.662.160 Online: 2014-10-01 2014 Trans Tech Publications,

More information

Reducing Programming Complexity for increasing Adoption

Reducing Programming Complexity for increasing Adoption ASHISH SUREKA (Principal Scientist, ABB Corporate Research Center) Enabling Simplified Robot Programming using Block Based Coding Reducing Programming Complexity for increasing Adoption Slide 1 Presentation

More information

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b Applied Mechanics and Materials Online: 2013-12-04 ISSN: 1662-7482, Vol. 441, pp 984-988 doi:10.4028/www.scientific.net/amm.441.984 2014 Trans Tech Publications, Switzerland Constructing an University

More information

Virtual Engineering: Model based Off-line Programming Method for Industrial Robot

Virtual Engineering: Model based Off-line Programming Method for Industrial Robot Virtual Engineering: Model based Off-line Programming Method for Industrial Robot Xingguo Yin, Li Tao ABB Corporate Research China No. 31 Fu Te Dong Dan Rd., Waigaoqiao Free Trade Zone, 200131 Shanghai,

More information

Study on Tool Interference Checking for Complex Surface Machining

Study on Tool Interference Checking for Complex Surface Machining 2017 International Conference on Mechanical Engineering and Control Automation (ICMECA 2017) ISBN: 978-1-60595-449-3 Study on Tool Interference Checking for Complex Surface Machining Li LI 1,3,a, Li-Jin

More information

Study and Design of CAN / LIN Hybrid Network of Automotive Body. Peng Huang

Study and Design of CAN / LIN Hybrid Network of Automotive Body. Peng Huang Advanced Materials Research Online: 2014-06-30 ISSN: 1662-8985, Vol. 940, pp 469-474 doi:10.4028/www.scientific.net/amr.940.469 2014 Trans Tech Publications, Switzerland Study and Design of CAN / LIN Hybrid

More information

Clustering Analysis based on Data Mining Applications Xuedong Fan

Clustering Analysis based on Data Mining Applications Xuedong Fan Applied Mechanics and Materials Online: 203-02-3 ISSN: 662-7482, Vols. 303-306, pp 026-029 doi:0.4028/www.scientific.net/amm.303-306.026 203 Trans Tech Publications, Switzerland Clustering Analysis based

More information

Study of Map Symbol Design Sub-System in Geostar Software

Study of Map Symbol Design Sub-System in Geostar Software Study of Map Symbol Design Sub-System in Geostar Software CHENG Peng-gen 1, 2 GONG Jian-ya 1 WANG Yan-dong 1 (National Key Lab for Information Engineering in Surveying, Mapping and Remote Sensing, Wuhan

More information

Minimal AutoCAD 2011

Minimal AutoCAD 2011 PDHonline Course G371 (2 PDH) Minimal AutoCAD 2011 Instructor: Thomas Mason, P.E. 2012 PDH Online PDH Center 5272 Meadow Estates Drive Fairfax, VA 22030-6658 Phone & Fax: 703-988-0088 www.pdhonline.org

More information

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

The RTP Encapsulation based on Frame Type Method for AVS Video

The RTP Encapsulation based on Frame Type Method for AVS Video Applied Mechanics and Materials Online: 2012-12-27 ISSN: 1662-7482, Vols. 263-266, pp 1803-1808 doi:10.4028/www.scientific.net/amm.263-266.1803 2013 Trans Tech Publications, Switzerland The RTP Encapsulation

More information

Computer Numerical Control System for Automatic Surface Machining. Chen Zuo Yue, Wang Xiao E, Yang Mei

Computer Numerical Control System for Automatic Surface Machining. Chen Zuo Yue, Wang Xiao E, Yang Mei 3rd International Conference on Mechanical Engineering and Intelligent Systems (ICMEIS 2015) Computer Numerical Control System for Automatic Surface Machining Chen Zuo Yue, Wang Xiao E, Yang Mei Department

More information

An Approach to Simulate the Manufacturing Process of Thermal Spray Coatings

An Approach to Simulate the Manufacturing Process of Thermal Spray Coatings 5th International Conference on Mechanical Engineering, Materials and Energy (ICMEME 2016) An Approach to Simulate the Manufacturing Process of Thermal Spray Coatings Zhang Yanjun*, Zhang Shiqi, Yang Qiuyu

More information

PARAMETERIZED COMPUTER AIDED DESIGN OF STUBBLE CLEANER

PARAMETERIZED COMPUTER AIDED DESIGN OF STUBBLE CLEANER PARAMETERIZED COMPUTER AIDED DESIGN OF STUBBLE CLEANER Lige Wen 1, 2, Jianqiao Li 1,*, Xiuzhi Zhang 2, Benard Chirende 1 1 The Key Laboratory for Terrain-Machine Bionics Engineering, Ministry of Education,

More information

Object Snap. Sacramento City College Engineering Design Technology. Object Snap 1

Object Snap. Sacramento City College Engineering Design Technology. Object Snap 1 Object Snap Sacramento City College Engineering Design Technology Object Snap 1 Objectives Use OSNAP to create precision drawings Use object snap overrides for single point selections Set running object

More information

Research Article. ISSN (Print) *Corresponding author Chen Hao

Research Article. ISSN (Print) *Corresponding author Chen Hao Scholars Journal of Engineering and Technology (SJET) Sch. J. Eng. Tech., 215; 3(6):645-65 Scholars Academic and Scientific Publisher (An International Publisher for Academic and Scientific Resources)

More information

Application of Three-dimensional Visualization Technology in Real Estate Management Jian Cui 1,a, Jiju Ma 2,b, Dongling Ma 1, c and Nana Yang 3,d

Application of Three-dimensional Visualization Technology in Real Estate Management Jian Cui 1,a, Jiju Ma 2,b, Dongling Ma 1, c and Nana Yang 3,d Applied Mechanics and Materials Online: 2014-07-04 ISSN: 1662-7482, Vols. 580-583, pp 2765-2768 doi:10.4028/www.scientific.net/amm.580-583.2765 2014 Trans Tech Publications, Switzerland Application of

More information

Design and Implementation of CNC Operator Panel Control Functions Based on CPLD. Huaqun Zhan, Bin Xu

Design and Implementation of CNC Operator Panel Control Functions Based on CPLD. Huaqun Zhan, Bin Xu Advanced Materials Research Online: 2013-07-31 ISSN: 1662-8985, Vol. 722, pp 428-432 doi:10.4028/www.scientific.net/amr.722.428 2013 Trans Tech Publications, Switzerland Design and Implementation of CNC

More information

Research on Device Control System Design Based on Stepping Motor. Zhongyong Tian

Research on Device Control System Design Based on Stepping Motor. Zhongyong Tian 3rd International Conference on Machinery, Materials and Information Technology Applications (ICMMITA 2015) Research on Device Control System Design Based on Stepping Motor Zhongyong Tian The people's

More information

Study on Gear Chamfering Method based on Vision Measurement

Study on Gear Chamfering Method based on Vision Measurement International Conference on Informatization in Education, Management and Business (IEMB 2015) Study on Gear Chamfering Method based on Vision Measurement Jun Sun College of Civil Engineering and Architecture,

More information

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network Applied Mechanics and Materials Submitted: 2014-06-18 ISSN: 1662-7482, Vol. 665, pp 674-678 Accepted: 2014-07-31 doi:10.4028/www.scientific.net/amm.665.674 Online: 2014-10-01 2014 Trans Tech Publications,

More information

Open Access Research on the Arranging and Patchwork Design for Storage Tank Bottom Based on Sinovation

Open Access Research on the Arranging and Patchwork Design for Storage Tank Bottom Based on Sinovation Send Orders for Reprints to reprints@benthamscience.ae 78 The Open Petroleum Engineering Journal, 05, 8, 78-83 Open Access Research on the Arranging and Patchwork Design for Storage Tank Bottom Based on

More information

Based on the cross section contour surface model reconstruction

Based on the cross section contour surface model reconstruction International Journal of Research in Engineering and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Print): 2320-9356 Volume 3 Issue 12 ǁ December. 2015 ǁ PP.07-12 Based on the cross section contour surface

More information

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c Applied Mechanics and Materials Online: 2013-06-13 ISSN: 1662-7482, Vols. 325-326, pp 1750-1753 doi:10.4028/www.scientific.net/amm.325-326.1750 2013 Trans Tech Publications, Switzerland Research Of Data

More information

Design of the Software for Wirelessly Intercepting Voices

Design of the Software for Wirelessly Intercepting Voices Advanced Materials Research Online: 2014-05-23 ISSN: 1662-8985, Vols. 926-930, pp 2470-2473 doi:10.4028/www.scientific.net/amr.926-930.2470 2014 Trans Tech Publications, Switzerland Design of the Software

More information

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS

Utilizing Restricted Direction Strategy and Binary Heap Technology to Optimize Dijkstra Algorithm in WebGIS Key Engineering Materials Online: 2009-10-08 ISSN: 1662-9795, Vols. 419-420, pp 557-560 doi:10.4028/www.scientific.net/kem.419-420.557 2010 Trans Tech Publications, Switzerland Utilizing Restricted Direction

More information

Reconstruction of 3D Interacting Solids of Revolution from 2D Orthographic Views

Reconstruction of 3D Interacting Solids of Revolution from 2D Orthographic Views Reconstruction of 3D Interacting Solids of Revolution from 2D Orthographic Views Hanmin Lee, Soonhung Han Department of Mechanical Engeneering Korea Advanced Institute of Science & Technology 373-1, Guseong-Dong,

More information

, ,China. Keywords: CAN BUS,Environmental Factors,Data Collection,Roll Call.

, ,China. Keywords: CAN BUS,Environmental Factors,Data Collection,Roll Call. Advanced Materials Research Online: 2013-09-04 ISS: 1662-8985, Vols. 765-767, pp 1693-1696 doi:10.4028/www.scientific.net/amr.765-767.1693 2013 Trans Tech Publications, Switzerland The design of artificial

More information

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e*

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e* Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1076-1080 doi:10.4028/www.scientific.net/amr.971-973.1076 2014 Trans Tech Publications, Switzerland AN WIRELESS COLLECTION

More information

Constructing 3D Surfaces from Random Sets of Points by Means of Level Curves CAZACU Razvan a and GRAMA Lucian b

Constructing 3D Surfaces from Random Sets of Points by Means of Level Curves CAZACU Razvan a and GRAMA Lucian b Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vol. 371, pp 483-487 doi:10.4028/www.scientific.net/amm.371.483 2013 Trans Tech Publications, Switzerland Constructing 3D Surfaces from

More information

Research of Multi-axis NC Machining Method of Cylindrical Cam Based on UG NX

Research of Multi-axis NC Machining Method of Cylindrical Cam Based on UG NX Research of Multi-axis NC Machining Method of Cylindrical Cam Based on UG NX Qianhua Liang Electro-machinery Engineering Department, Chengdu Industrial Vocational Technical College, Sichuan, China Corresponding

More information

Design and Implementation of unified Identity Authentication System Based on LDAP in Digital Campus

Design and Implementation of unified Identity Authentication System Based on LDAP in Digital Campus Advanced Materials Research Online: 2014-04-09 ISSN: 1662-8985, Vols. 912-914, pp 1213-1217 doi:10.4028/www.scientific.net/amr.912-914.1213 2014 Trans Tech Publications, Switzerland Design and Implementation

More information

The Application Research of 3D Simulation Modeling Technology in the Sports Teaching YANG Jun-wa 1, a

The Application Research of 3D Simulation Modeling Technology in the Sports Teaching YANG Jun-wa 1, a 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) The Application Research of 3D Simulation Modeling Technology in the Sports Teaching YANG Jun-wa 1, a 1 Zhengde

More information

A design of real-time image processing platform based on TMS320C6678

A design of real-time image processing platform based on TMS320C6678 Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1454-1458 doi:10.4028/www.scientific.net/amr.971-973.1454 2014 Trans Tech Publications, Switzerland A design of real-time

More information

Path planning and kinematics simulation of surfacing cladding for hot forging die

Path planning and kinematics simulation of surfacing cladding for hot forging die MATEC Web of Conferences 21, 08005 (2015) DOI: 10.1051/matecconf/20152108005 C Owned by the authors, published by EDP Sciences, 2015 Path planning and kinematics simulation of surfacing cladding for hot

More information

The Computer-Assisted Design Method of Staggered-Tooth Milling Cutter for Manufacturing of the Complex Helical Surfaces Gheorghe Pleşu

The Computer-Assisted Design Method of Staggered-Tooth Milling Cutter for Manufacturing of the Complex Helical Surfaces Gheorghe Pleşu Advanced Materials Research Online: 2014-10-01 ISSN: 1662-8985, Vol. 1036, pp 388-393 doi:10.4028/www.scientific.net/amr.1036.388 2014 Trans Tech Publications, Switzerland The Computer-Assisted Design

More information

Virtual Interaction System Based on Optical Capture

Virtual Interaction System Based on Optical Capture Sensors & Transducers 203 by IFSA http://www.sensorsportal.com Virtual Interaction System Based on Optical Capture Peng CHEN, 2 Xiaoyang ZHOU, 3 Jianguang LI, Peijun WANG School of Mechanical Engineering,

More information

The Research on Collision-free Trajectory Planning for Welding Robot Based on Fishertechnik Model

The Research on Collision-free Trajectory Planning for Welding Robot Based on Fishertechnik Model Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com The Research on Collision-free Trajectory Planning for Welding Robot Based on Fishertechni Model Liu Ming Dan, Lü Xiao-Rong, Qixiang-Jun

More information

software isy-cam 2.8 and 3.6 CAD/CAM software Features isy-cam 2.8 Features isy-cam 3.6 D-4 CAD functionality (without volume modeller)

software isy-cam 2.8 and 3.6 CAD/CAM software Features isy-cam 2.8 Features isy-cam 3.6 D-4 CAD functionality (without volume modeller) CAD/CAM isy-cam 2.8 and 3.6 isy-cam 2.8 CAD functionality (without volume modeller) works with Win XP, Windows 7 and 8, 32-/64-bit version Import: DXF / EPS / AI / 3D STL data Export: NCP format proven

More information

Department of Mechatronics Engineering, International Islamic University Malaysia Jalan Gombak, 53100, Kuala Lumpur, Malaysia

Department of Mechatronics Engineering, International Islamic University Malaysia Jalan Gombak, 53100, Kuala Lumpur, Malaysia Advanced Materials Research Online: 2012-10-08 ISSN: 1662-8985, Vol. 576, pp 777-780 doi:10.4028/www.scientific.net/amr.576.777 2012 Trans Tech Publications, Switzerland Parallel Manipulator for Auto Tracking

More information

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c Advanced Materials Research Submitted: 2014-07-26 ISSN: 1662-8985, Vol. 1022, pp 392-395 Accepted: 2014-07-28 doi:10.4028/www.scientific.net/amr.1022.392 Online: 2014-08-28 2014 Trans Tech Publications,

More information

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 380-384, pp 4796-4799 doi:10.4028/www.scientific.net/amm.380-384.4796 2013 Trans Tech Publications, Switzerland Construction of

More information

SOFTWARE. CAD/CAM software. Interpreter software. Programming software. Software and control organization isy-cam 2.5 PLUS...

SOFTWARE. CAD/CAM software. Interpreter software. Programming software. Software and control organization isy-cam 2.5 PLUS... SOFTWARE Software and control organization... 4-2 CAD/CAM isy-cam 2.5 PLUS... 4-4 Interpreter Remote... 4-5 Programming... 4-6 PAL-PC 2.1... 4-7 Software and controller organisation Software and controller

More information

Effect of Mesh Size of Finite Element Analysis in Modal Analysis for Periodic Symmetric Struts Support

Effect of Mesh Size of Finite Element Analysis in Modal Analysis for Periodic Symmetric Struts Support Key Engineering Materials Online: 2011-01-20 ISSN: 1662-9795, Vols. 462-463, pp 1008-1012 doi:10.4028/www.scientific.net/kem.462-463.1008 2011 Trans Tech Publications, Switzerland Effect of Mesh Size of

More information

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2 Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 4998-5002 doi:10.4028/www.scientific.net/amm.556-562.4998 2014 Trans Tech Publications, Switzerland Research on the

More information

Gardener s spline curve

Gardener s spline curve Annales Mathematicae et Informaticae 47 (017) pp. 109 118 http://ami.uni-eszterhazy.hu Gardener s spline curve Imre Juhász Department of Descriptive Geometry University of Miskolc agtji@uni-miskolc.hu

More information

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line

DC2 File Format. 1. Header line 2. Entity line 3. Point line 4. String line DC2 File Format The DesignCAD DC2 drawing file is an ASCII file, with the data present in character format. Each "record" in the file is actually a line in a text file. There are four types of records,

More information

Introduction to Computer Graphics

Introduction to Computer Graphics Introduction to 1.1 What is computer graphics? it would be difficult to overstate the importance of computer and communication technologies in our lives. Activities as wide-ranging as film making, publishing,

More information

Application of CAD/CAE/CAM Technology in Plastics Injection Mould Design and Manufacture. Ming He Dai,Zhi Dong Yun

Application of CAD/CAE/CAM Technology in Plastics Injection Mould Design and Manufacture. Ming He Dai,Zhi Dong Yun Advanced Materials Research Vols. 399-401 (2012) pp 2271-2275 Online available since 2011/Nov/22 at www.scientific.net (2012) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amr.399-401.2271

More information

COMP30019 Graphics and Interaction Scan Converting Polygons and Lines

COMP30019 Graphics and Interaction Scan Converting Polygons and Lines COMP30019 Graphics and Interaction Scan Converting Polygons and Lines Department of Computer Science and Software Engineering The Lecture outline Introduction Scan conversion Scan-line algorithm Edge coherence

More information

GEO 154 CARTOGRAPHY II- PLOTTING USING AUTOCAD- ASSIGMENT HELP

GEO 154 CARTOGRAPHY II- PLOTTING USING AUTOCAD- ASSIGMENT HELP GEO 154 CARTOGRAPHY II- PLOTTING USING AUTOCAD- ASSIGMENT HELP DOCUMENT. For one to two reasons data may not be in a format that can be integrated into AutoCAD software, but coordinates may be separated

More information

Computational Geometry TOPICS Preliminaries Point in a Polygon Polygon Construction Convex Hulls

Computational Geometry TOPICS Preliminaries Point in a Polygon Polygon Construction Convex Hulls Computational Geometry TOPICS Preliminaries Point in a Polygon Polygon Construction Convex Hulls CSE5311 Kumar 1 Geometric Algorithms Geometric Algorithms find applications in such areas as Computer Graphics

More information

The Application of CAD/CAM in the Design of Industrial Products

The Application of CAD/CAM in the Design of Industrial Products 2018 International Conference on Medicine, Biology, Materials and Manufacturing (ICMBMM 2018) The Application of CAD/CAM in the Design of Industrial Products Hequn Liu Xianning Vocational Technical College,

More information

GENIO CAD/CAM software powered by Autodesk technology for parametric programming of boring, routing and edge-banding work centers Genio SPAI SOFTWARE

GENIO CAD/CAM software powered by Autodesk technology for parametric programming of boring, routing and edge-banding work centers Genio SPAI SOFTWARE GENIO CAD/CAM software powered by Autodesk technology for parametric programming of boring, routing and edge-banding work centers Overview is a powerful CAD/CAM system powered by Autodesk 3D environment

More information

Integration of 3D Stereo Vision Measurements in Industrial Robot Applications

Integration of 3D Stereo Vision Measurements in Industrial Robot Applications Integration of 3D Stereo Vision Measurements in Industrial Robot Applications Frank Cheng and Xiaoting Chen Central Michigan University cheng1fs@cmich.edu Paper 34, ENG 102 Abstract Three dimensional (3D)

More information

Design and Implementation of Computer Room Management System in University

Design and Implementation of Computer Room Management System in University Design and Implementation of Computer Room Management System in University YOUwen Zhang, Dong Kang* {Zhangyouwen521@163.com} HaiNan college of Economics and Business Haikou 571127, China Abstract. With

More information

The Collision-free Workspace of the Tripteron Parallel Robot Based on a Geometrical Approach

The Collision-free Workspace of the Tripteron Parallel Robot Based on a Geometrical Approach The Collision-free Workspace of the Tripteron Parallel Robot Based on a Geometrical Approach Z. Anvari 1, P. Ataei 2 and M. Tale Masouleh 3 1,2 Human-Robot Interaction Laboratory, University of Tehran

More information

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen

Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen Applied Mechanics and Materials Online: 2014-02-06 ISSN: 1662-7482, Vols. 519-520, pp 504-509 doi:10.4028/www.scientific.net/amm.519-520.504 2014 Trans Tech Publications, Switzerland Realization of Automatic

More information

7/21/2009. Chapters Learning Objectives. Fillet Tool

7/21/2009. Chapters Learning Objectives. Fillet Tool Chapters 12-13 JULY 21, 2009 Learning Objectives Chapter 12 Chapter 13 Use the FILLET tool to draw fillets, rounds, and other rounded corners. Place chamfers and angled corners with the CHAMFER tool. Separate

More information

DA-CAD User Manual Dürkopp Adler AG

DA-CAD User Manual Dürkopp Adler AG DA-CAD 5000 User Manual DA-CAD 5000 All rights reserved No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

GstarCAD Complete Features Guide

GstarCAD Complete Features Guide GstarCAD 2017 Complete Features Guide Table of Contents Core Performance Improvement... 3 Block Data Sharing Process... 3 Hatch Boundary Search Improvement... 4 New and Enhanced Functionalities... 5 Table...

More information

New method of 3D reconstruction from mechanical engineering drawings based on engineering semantics understanding

New method of 3D reconstruction from mechanical engineering drawings based on engineering semantics understanding ew method of 3D reconstruction from mechanical engineering drawings based on engineering understanding Jianping Liu 1, Bangyan e 2 College of Mechanical Engineering, South China University of Technology,

More information

INSPECTION OF THE TURBINE BLADES USING SCANNING TECHNIQUES

INSPECTION OF THE TURBINE BLADES USING SCANNING TECHNIQUES INSPECTION OF THE TURBINE BLADES USING SCANNING TECHNIQUES H. Nieciag, M. Traczynski and Z. Chuchro Department of Geometrical Quanities Metrology The Institute of Metal Cutting, 30-011 Cracow, Poland Abstract:

More information

Development of a Mechanical Creative Combination Based on 3D Printing

Development of a Mechanical Creative Combination Based on 3D Printing Development of a Mechanical Creative Combination Based on 3D Printing Xinwen Li, Yingjie Tang * College of Nuclear Technology and Automation Engineering, Chengdu University of Technology, Chengdu 610059,

More information

IMPORTING CLOCK PENDELUM INTO WORKING MODEL

IMPORTING CLOCK PENDELUM INTO WORKING MODEL IMPORTING CLOCK PENDELUM INTO WORKING MODEL Preparations in AutoCAD Computer-Aided-Analysis (CAE) is a powerful tool. But caution is required to ensure that the results are correct. This tutorial covers

More information

Design and Application of the Visual Model Pool of Mechanical Parts based on Computer-Aided Technologies

Design and Application of the Visual Model Pool of Mechanical Parts based on Computer-Aided Technologies Design and Application of the Visual Model Pool of Mechanical Parts based on Computer-Aided Technologies Xiaoying Dong, Xia Ye, Qinxian Jiang, Xianghua Zhang and Wei Bi School of Mechanical and Automobile

More information

Path Planning by Using Generalized Voronoi Diagrams and Dijkstra Algorithm. Lai Hon Lin. Project Proposal. Computational Geometry

Path Planning by Using Generalized Voronoi Diagrams and Dijkstra Algorithm. Lai Hon Lin. Project Proposal. Computational Geometry Path Planning by Using Generalized Voronoi Diagrams and Dijkstra Algorithm by Lai Hon Lin Project Proposal of Computational Geometry Assessed by: Dr. Deng Jun Hui 1. Abstract: This proposal is a description

More information

ISE 422/ME 478/ISE 522 Robotic Systems

ISE 422/ME 478/ISE 522 Robotic Systems ISE 422/ME 478/ISE 522 Robotic Systems Overview of Course R. Van Til Industrial & Systems Engineering Dept. Oakland University 1 What kind of robots will be studied? This kind Not this kind 2 Robots Used

More information

2D Object Definition (1/3)

2D Object Definition (1/3) 2D Object Definition (1/3) Lines and Polylines Lines drawn between ordered points to create more complex forms called polylines Same first and last point make closed polyline or polygon Can intersect itself

More information

Robot JR3000. Desktop Robot. 122, Chemin de la Cavée Orgeval Tel :

Robot JR3000. Desktop Robot. 122, Chemin de la Cavée Orgeval Tel : Robot JR3000 Desktop Robot Main Features Main features - Increased Structural Rigidity Faster, more precise, with greater structural rigidity for long-term, dependable use; high speed tracking function

More information

Improvement of Computer-Aided Manufacturing (CAM) Software for Laser Machining

Improvement of Computer-Aided Manufacturing (CAM) Software for Laser Machining http://dx.doi.org/10.7735/ksmte.2015.24.4.374 J. Korean Soc. Manuf. Technol. Eng. ISSN 2283-4846(Online) / ISSN 2233-6036(Print) Improvement of Computer-Aided Manufacturing (CAM) Software for Laser Machining

More information

VALIDATION OF FORWARD GEOMETRIC MODELS FOR ABB ROBOTS USING VIRTUAL MODELS AND THE SOFTWARE APPLICATIONS CATIA AND ABB ROBOT STUDIO

VALIDATION OF FORWARD GEOMETRIC MODELS FOR ABB ROBOTS USING VIRTUAL MODELS AND THE SOFTWARE APPLICATIONS CATIA AND ABB ROBOT STUDIO Proceedings in Manufacturing Systems, Volume 12, Issue 4, 2017, 145-153 ISSN 2067-9238 VALIDATION OF FORWARD GEOMETRIC MODELS FOR ABB ROBOTS USING VIRTUAL MODELS AND THE SOFTWARE APPLICATIONS CATIA AND

More information

Applied mechanics and applied technology in fuel injection pump bench. Rotational speed measurement system design based on CPLD

Applied mechanics and applied technology in fuel injection pump bench. Rotational speed measurement system design based on CPLD Advanced Materials Research Online: 2014-03-24 ISSN: 1662-8985, Vol. 910, pp 316-319 doi:10.4028/www.scientific.net/amr.910.316 2014 Trans Tech Publications, Switzerland Applied mechanics and applied technology

More information

Construction of Virtual Interactive Assembly System Pan Hu a, Lai Jiang b

Construction of Virtual Interactive Assembly System Pan Hu a, Lai Jiang b Applied Mechanics and Materials Online: 2014-02-06 ISSN: 1662-7482, Vol. 510, pp 254-259 doi:10.4028/www.scientific.net/amm.510.254 2014 Trans Tech Publications, Switzerland Construction of Virtual Interactive

More information