FPGA-based implementation of circular interpolation

Size: px
Start display at page:

Download "FPGA-based implementation of circular interpolation"

Transcription

1 Avalable onlne Journal of Chemcal and Pharmaceutcal Research, 04, 6(7): Research Artcle ISSN : CODEN(USA) : JCPRC5 FPGA-based mplementaton of crcular nterpolaton Mngyu Gao, Jaxang Lou, Jlong Ye and Zhanxong Wu Hang Zhou Dan Z Unversty, Hang Zhou, Chna ABSTRACT Owng to arthmetc speed s nfluence of computer software, the accuracy and speed of numercal control system s feed based on software nterpolaton are subject to certan restrctons. FPGA-based realzaton of four knds of hardware crcular nterpolaton algorthm n ths paper, the hardware logc desgned wth verlog hardware descrpton language, and the actual trajectory verfed by ModelSm smulaton and coordnate draw pont; ARM+FGPA-based mplementatons of four crcular nterpolaton algorthms do the verfcatons n two axes archtecture automatc CNC machne tool. From the results, mproved mn-error nterpolaton has the best precson and effcency among the four nterpolatons. So ths nterpolaton algorthm has superor practcal value on CNC machne tools and ndustral robots. Key words: DDA nterpolaton, mn-error nterpolaton, FPGA, CNC system INTRODUCTION Machne tool moton s acheved through nterpolaton n CNC systems, so nterpolaton algorthm [-3] affects the processng speed and precson drectly. Interpolaton task s to calculate the coordnates of several ntermedate ponts between the start and end of the part s contour, makng the coordnates of track are set by the nterpolaton curve. Snce calculaton s tme of each pont drectly affect the control speed of the CNC system, and the accuracy affect the fnal geometrc precson [4-5]. So the nterpolaton algorthm s crtcal to performance of CNC system devces, t s seen as the core technology of CNC system devces. There are hgh requrements for real-tme moton control n modern hgh-speed CNC systems, although software nterpolator has advantages, the software nterpolaton [6] affects by restrcton of synchronous output. So the speed, accuracy, and effcency of nterpolator algorthm are dffcult to meet the performance requrements of hgh-speed and real-tme control. The way to solve ths problem s to gve full play to the respectve advantages of software and hardware, the real-tme demandng task mplemented by specally desgned hardware. Due to the desgn of FPGA s parallel, mult-threaded and onlne programmng, and FPGA has the advantages of both hgh speed and low cost, whle overcomes the shortage of dedcated processor s nflexblty. Therefore, FPGA-based hardware nterpolaton [7] has a hgh practcal value, and t s sutable for hgh effcency and hgh precson of the workplace. Fnally, the transmsson of nstructons, parameters between ARM [8] processor and FPGA [9] s through the parallel bus of FSMC, whch meets the requrement of real-tme better. BY-POINT COMPARISON INTERPOLATION By-Pont comparson nterpolaton [0] s compare current coordnate value wth theoretcal trajectory to judge whether the pont at the top or bottom (maybe nsde or outsde) of the gven trajectory and determne the drecton of the next step. If current pont s at the bottom (nsde) of Z-axs, then next step s to move to the top (outsde) of the gven trajectory; smlarly, f current pont s at the top (outsde) of the gven trajectory, then next step s to move to the bottom (nsde) of the gven trajectory. Thus, judge current poston whle move a step, determnes next step and approaches the gven trajectory untl the end of nterpolaton. 585

2 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): Assumng that arc radus s r, to processng a quarter of the frst quadrant crcle, startng pont s and end pont s, so the arc equaton s: x + y = r () Then wrte the devaton judgment formula: F = x + y r () We can summary out the relatve poston of relatonshp between the arc and the target, as follows: When F < 0 the fxed pont P s nsde of the set arc; When F = 0, the fxed pont P falls on the gven arc; When F > 0, the fxed pont P s outsde of the set arc. Fg. : Sketch of by-pont comparson nterpolaton From Fg., we can deduce that, when the devaton judgment formula of pont P correspondng to s less than 0, then X axal feeds and the next pont s ( x, y + ) F( x +, y+ ) = x + ( y + ) r = F( x, y ) + y + (3), the devaton judgment formula s re-calculated as follow: When the devaton judgment formula of pont P correspondng to s greater or equal to 0, then -Y axal feeds and the next pont s ( x +, y ), the devaton judgment formula s re-calculated as follow: (, ) ( ) (, ) F x + y + = x + + y r = F x y + x + (4) Fnally, the start pont s on the crcle, so we can gve out the ntal value of devaton judgment formula: F( x0, y 0) = 0 (5) By-pont comparson algorthm mplemented on FPGA s relatvely smple, and the requred logc resource s not too much, but the algorthm outputs only sgnal axle pulse not both when feedng, so the processng effcency can t be hgher. DDA INTERPOLATION Dgtal ntegral nterpolaton nterpolaton s also called mathematcal dfferental analyss nterpolaton, referred to as DDA. After a unt tme nterval, each axs accumulates a value to a regster and ths value s related to current coordnate poston. When the accumulator regster s more than a set value whch we called overflow, the correspondng axs output a pulse, the accumulator regster subtracts the set value and the remander s used for the next calculaton. When calculate non-lnear nterpolaton, DDA need to change the accumulated value by current coordnate poston, whch makes unavodable roundng error. 586

3 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): Fg. : Sketch of DDA nterpolaton From Fg., assumng the arc radus s r, so the equaton of crcle s we can know: x + y = r. Partal dervatve obtaned for x, dy x = (6) dx y From the DDA nterpolaton, the nterpolaton formulas of both axls are as follows: m m m x (7) = = = x = x = v t = k y m m m y (8) = = = y = y = v t = k x Lastly, we gve out the ntal value of accumulated overflow formula, because accumulated value s compared wth the long axs and short axs, t s always less than or equal to the long axs, there must be a certan lag. So the ntal value of the regster need loadng value frstly. Here we take a preset number of half-loadng nterpolaton for mprovng the speed and accuracy of the nterpolaton. MIN-ERROR INTERPOLATION Mn-error nterpolaton [] s that accordng the mnmum devaton among A to N, B to N and C to N to do each feed. Ths nterpolaton s realzed by comparng the dstance of three ponts, so the realzaton of FPGA hardware nterpolaton algorthm needs a large amount of regster varables, whch makes waste of the logcal resource when applyng for more regster varables. { { { Fg. 3: Sketch of mn-error nterpolaton From Fg. 3, assumng the radus of crcular arc s r, start pont s S( x0, y 0), and end pont s E( xe, y e). Pont N s 587

4 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): on the arc, and also A( x +, y ), B( x, y ), C( x, y ) devaton judgment formula s: +. Arc equaton s x + y = r. Then F = x + y r (9) n = + + = + + (0) ( x ) ( y ) r F x y n = x + ( y ) r = F y + () n = + + = F + x + () 3 ( x ) y r By comparng the dstance of n, n and n3, we can know the feed drecton: When n s the smallest, the curve closed the pont, so the feed drecton feeds both formula s: and, the new devaton F = ( x + ) + ( y ) R = F + x y + (3) + When n s the smallest, the curve closed the pont, so the feed drecton s, the new devaton formula s: F = x + ( y ) R = F y + (4) + 3 When n3 s the smallest, the curve closed the pont, so the feed drecton s, the new devaton formula s: F = ( x + ) + y R = F + x + (5) + Fnally, the start pont s on the crcle, so we can gve out the ntal value of devaton judgment formula: F 0 = 0 (6) Assumng the current pont s at, Accordng to the prncple of mn-error nterpolaton and dstance of n, n and n3, we can get the next pulse feed drecton. The output pulse can be made unformly, quckly and effcently, and the nterpolaton algorthm s easer to be realzed. But ths nterpolaton needs much logc elements. Fg. 4: Sketch of mproved mn-error nterpolaton IMPROVED MIN-ERROR INTERPOLATION The controller n order to make t easer to get the mn-error nterpolaton acheved, here we propose a new algorthm whch can acheve the mn-error algorthm wthout knowng three ponts. We select the Y axs (when k >) as the longer axs. Compare the devaton between the drecton of longer axs and dagonal lne, and the feed drecton s same as the drecton of smaller devaton. In ths paper, we decde the drecton through the coordnate of mddle pont 588

5 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): lke pont md. Ths nterpolaton uses the less logc elements because of the less regster varables. So ths nterpolaton can be used well n the lmted logc elements of FPGA. As shown n Fg4, now the processng pont s located n the slope k >, assumng the radus of crcular arc s r, start A( x, y ), and end pont s B( x, y ). Then devaton judgment formula s: pont s 0 0 e e F = x + y r (7) ( x, y + ), so t s satsfes wth the formula x + y = r, whch y = y.so we can know Due to p p x = r y = r y = x F + y. p + ( ) p + + Takng d x p = and d = xmd = ( x + ), then: 5 d d = y x F (8) 4 Remove the denomnator we can get formula: 4( d d ) = 8y 4x 5 4F (9) We can know whether the shorter axs feedng by judged the symbol of d d : when d d 0, the curve s closed the pont m, then the feed drecton s.new devaton judgment formula: F = x + y r = F + x y + (0) when d d 0 formula: <, the curve s closed the pont n, then the shorter axs does nothng.new devaton judgment F = x + y r = F y + () Fnally, the start pont s on the crcle, so we can gve out the ntal value of devaton judgment formula: F( x0, y 0) = 0 () Smlarly, we can know the case of k <. The mproved mn-error nterpolaton s realzed just by the coordnate of mddle pont and swtch between longer axs and the other. Ths nterpolaton s less than mn-error nterpolaton on regster varables, so we can save more logc resource wth ths nterpolaton. Fg. 5: Smulaton waveform of by-pont comparson nterpolaton REALIZATIONS OF FOUR INTERPOLATION ALGORITHM WITH FPGA Ths artcle uses the verloglanguage to acheve hardware nterpolaton algorthm, wth ModelSmdo the smulaton 589

6 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): waveforms of a radus s 5 of /4 smooth round. Whch coordnates the arc start pont s (5,0) and end pont s (0,5). Fg. 6: Smulaton waveform of DDA nterpolaton Fg. 7: Smulaton waveform of mn-error nterpolaton Fg. 8: Smulaton waveform of mproved mn-error nterpolaton Here are the generc sgnals n the smulaton waveform: clk s the clock sgnal; rst s the reset sgnal; Start _ X 0, Start _ Z 0, End _ X and End _ Z represent the startng pont and end pont coordnates; Syn s a synchronzaton start sgnal; X _ Pwm _ Out and Z _ Pwm _ Out s the nterpolaton pulse output; Busy ndcates when the nterpolaton s fnsh; Val _ x and Val _ z show the current coordnate values. In Fg.5, the Val _ f represents the devaton judgment formula. In Fg.6, Sum _ X and Sum _ Z represent two accumulator regsters n DDA. In Fg. 7, Val _ f, Val _ n, Val _ n and Val _ n3 represent the devaton judgment formula F, n, n and n 3. THE ANALYSIS OF SPEED AND ACCURACY Accordng to the actual pulse waveform of FPGA, we can get four knds of nterpolaton trajectory, whch are shown n Fg. 9: 590

7 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): by-pont comparson 3 DDA 4 5 Fg. 9: Four knds of nterpolaton trajectory about arc Where the blue lne represents the actual trajectory nterpolaton, red represents the deal arc. The arrows ndcate the drecton of servo feed. The comparson of the four nterpolatons for processng the same crcular arc s shown as table. Table also lsts the number of processng steps (nversely related to the number of steps and the processng speed), processng accuracy (error) and logc resource used, whle the error can be obtaned wth the normalzed values. Table : processng speed, error and logc resources of four knds crcular nterpolaton Pulse and error by-pont comparson DDA Mn-error Improved mn-error Pulse (unt:mnmum step) Error (unt:mnmum step) logc elements Accordng to the dagram of smulaton and nterpolaton trajectores, we can learn that: by-pont comparson nterpolaton, each feed drecton only could be one of the axes, so the two feed axes can't be acheved smultaneously, the processng requred 0 steps, and normalzaton of errors s 0.877, but the logc elements requred are less. DDA, the ntal value of accumulator regster s set to a half of the major axs wth sem-loaded method. X axs and Z axs can feed smultaneously, but the feed must under the condton of overflow of the accumulator regster, the processng of ths arc requres 8 steps, normalzaton of errors s 0.385, and the logc elements requred are less than mn-error nterpolaton. 3 mn-error nterpolaton, determne the next pulse feed drecton by error of each nterpolaton drectly, the drecton s the same as the closest pont among the three ponts. X axs and Z axs can feed smultaneously and no need to wat the overflow of the accumulator regster, so the processng effcency would be hgher. The processng of ths arc requres 7 steps, normalzaton of errors s 0.385, but the logc elements requred are more than other nterpolatons. 4 mproved mn-error nterpolaton, frstly, the longer axs s selected, and then judge the shorter one feeds or not after each nterpolaton, X axs and Z axs can feed smultaneously and no need to wat the overflow of the accumulator regster, so the processng effcency would be hgher. The processng of ths arc requres 7 steps, normalzaton of errors s 0.385, and the logc elements requred are only 74 logc elements, whch less than 59

8 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): mn-error nterpolaton. FPGA-based hardware nterpolator has acheved good results n the processng tests of effcency and accuracy. And real-tme of communcaton between ARM and FPGA by FSMC bus s good. Meanwhle, to the dedcated nterpolaton controller, the cost of ths hardware nterpolator can be well controlled. Fg.0 s the actual processng test of mproved mn-error nterpolaton. Fg. 0: The actual processng test of mproved mn-error nterpolaton CONCLUSION ARM and FPGA-based hardware nterpolator has a hgh real-tme performance and a good cost advantage. To ths nterpolator realzed by mproved mn-error nterpolaton, by-pont comparson s worse n terms of speed and precson, and DDA s worse n terms of process s speed despte of the same precson. The logc elements of mproved mn-error nterpolaton are less than mn-error nterpolaton, so the proposed hardware nterpolator s worthy of applcaton and generalzaton. By-pont comparson nterpolaton s sutable for the general economcal CNC systems, DDA can be used n low-end requrements whch don t need hgh processng effcency because of ts hgh process precson, whle mproved mn-error nterpolaton s wdely used n the hgh precson CNC systems and ndustral robots. REFERENCES [] PANG, Q-shou, and Yu-sheng FENG. Manufacturng Automaton 6 (009): 08. [] Hua, Yan, Zuo Jan-mn, and Wang Mu-lan. Mod ern Manufacturng Engneerng 9 (007): 06. [3] TAN, Yong, Zh-sen WANG, and Xao-jng YAN. Journal of Hefe Unversty of Technology (Natural Scence) 6 (004): 008. [4] Guoyong Zhao, Hongjng An, Qngzh Zhao, Journal of Computers, vol 8, no 6 (03), 5-59, jun 03. [5] G Zhxang Shao, RufengGuo, Je L, JanJun Peng, Journal of Software, vol 6, no 0 (0), , oct 0. [6] Chen, Z. Y., W. Guo, and C. X. L. Industral Electroncs and Applcatons, 006 ST IEEE Conference on. IEEE, 006. [7] WANG, Fang, and Kun-q WANG. "Hardware Interpolaton of Moton Control System Based on CPLD." Journal of X'an Technologcal Unversty 3 (008): 007. [8] STM3F407xx.pdf( [9] Cyclone_II_Devce_Handbook.pdf( 05.pdf). [0] Huang Bn ; Wu Chunxue. The research and realzaton of Crcular nterpolaton track based on the Pont-to-pont comparson method of CNC n Sclab, Networkng and Dgtal Socety (ICNDS), 00 nd Internatonal Conference on, May 00, pp [] Chen, C.-Y. ; Lao, P.-S. ; Cheng, C.-C. ; Jong, G.-F. Desgn and Implementaton of Real-tme NURBS Interpolator for Moton Control, Industral Electroncs and Applcatons, 007. ICIEA 007. nd IEEE Conference on, May 007, pp [] Ungureanu-Anghel, D. ;Belc, D.-I. ; Raduca, E. ;Raduca, M. Mnmum vcnty nterpolaton algorthms for 59

9 Mngyu Gao et al J. Chem. Pharm. Res., 04, 6(7): calculaton of trajectory processng for a model of CNC machne tool. Computatonal Cybernetcs and Techncal Informatcs (ICCC-CONTI), 00 Internatonal Jont Conference on, May 00, pp

A high precision collaborative vision measurement of gear chamfering profile

A high precision collaborative vision measurement of gear chamfering profile Internatonal Conference on Advances n Mechancal Engneerng and Industral Informatcs (AMEII 05) A hgh precson collaboratve vson measurement of gear chamferng profle Conglng Zhou, a, Zengpu Xu, b, Chunmng

More information

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS ARPN Journal of Engneerng and Appled Scences 006-017 Asan Research Publshng Network (ARPN). All rghts reserved. NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS Igor Grgoryev, Svetlana

More information

Programming in Fortran 90 : 2017/2018

Programming in Fortran 90 : 2017/2018 Programmng n Fortran 90 : 2017/2018 Programmng n Fortran 90 : 2017/2018 Exercse 1 : Evaluaton of functon dependng on nput Wrte a program who evaluate the functon f (x,y) for any two user specfed values

More information

Contours Planning and Visual Servo Control of XXY Positioning System Using NURBS Interpolation Approach

Contours Planning and Visual Servo Control of XXY Positioning System Using NURBS Interpolation Approach Inventon Journal of Research Technology n Engneerng & Management (IJRTEM) ISSN: 2455-3689 www.jrtem.com olume 1 Issue 4 ǁ June. 2016 ǁ PP 16-23 Contours Plannng and sual Servo Control of XXY Postonng System

More information

Parallelism for Nested Loops with Non-uniform and Flow Dependences

Parallelism for Nested Loops with Non-uniform and Flow Dependences Parallelsm for Nested Loops wth Non-unform and Flow Dependences Sam-Jn Jeong Dept. of Informaton & Communcaton Engneerng, Cheonan Unversty, 5, Anseo-dong, Cheonan, Chungnam, 330-80, Korea. seong@cheonan.ac.kr

More information

Cluster Analysis of Electrical Behavior

Cluster Analysis of Electrical Behavior Journal of Computer and Communcatons, 205, 3, 88-93 Publshed Onlne May 205 n ScRes. http://www.scrp.org/ournal/cc http://dx.do.org/0.4236/cc.205.350 Cluster Analyss of Electrcal Behavor Ln Lu Ln Lu, School

More information

Computer Animation and Visualisation. Lecture 4. Rigging / Skinning

Computer Animation and Visualisation. Lecture 4. Rigging / Skinning Computer Anmaton and Vsualsaton Lecture 4. Rggng / Sknnng Taku Komura Overvew Sknnng / Rggng Background knowledge Lnear Blendng How to decde weghts? Example-based Method Anatomcal models Sknnng Assume

More information

Mathematics 256 a course in differential equations for engineering students

Mathematics 256 a course in differential equations for engineering students Mathematcs 56 a course n dfferental equatons for engneerng students Chapter 5. More effcent methods of numercal soluton Euler s method s qute neffcent. Because the error s essentally proportonal to the

More information

Analysis on the Workspace of Six-degrees-of-freedom Industrial Robot Based on AutoCAD

Analysis on the Workspace of Six-degrees-of-freedom Industrial Robot Based on AutoCAD Analyss on the Workspace of Sx-degrees-of-freedom Industral Robot Based on AutoCAD Jn-quan L 1, Ru Zhang 1,a, Fang Cu 1, Q Guan 1 and Yang Zhang 1 1 School of Automaton, Bejng Unversty of Posts and Telecommuncatons,

More information

The Research of Ellipse Parameter Fitting Algorithm of Ultrasonic Imaging Logging in the Casing Hole

The Research of Ellipse Parameter Fitting Algorithm of Ultrasonic Imaging Logging in the Casing Hole Appled Mathematcs, 04, 5, 37-3 Publshed Onlne May 04 n ScRes. http://www.scrp.org/journal/am http://dx.do.org/0.436/am.04.584 The Research of Ellpse Parameter Fttng Algorthm of Ultrasonc Imagng Loggng

More information

A Binarization Algorithm specialized on Document Images and Photos

A Binarization Algorithm specialized on Document Images and Photos A Bnarzaton Algorthm specalzed on Document mages and Photos Ergna Kavalleratou Dept. of nformaton and Communcaton Systems Engneerng Unversty of the Aegean kavalleratou@aegean.gr Abstract n ths paper, a

More information

The motion simulation of three-dof parallel manipulator based on VBAI and MATLAB Zhuo Zhen, Chaoying Liu* and Xueling Song

The motion simulation of three-dof parallel manipulator based on VBAI and MATLAB Zhuo Zhen, Chaoying Liu* and Xueling Song Internatonal Conference on Automaton, Mechancal Control and Computatonal Engneerng (AMCCE 25) he moton smulaton of three-dof parallel manpulator based on VBAI and MALAB Zhuo Zhen, Chaoyng Lu* and Xuelng

More information

An Optimal Algorithm for Prufer Codes *

An Optimal Algorithm for Prufer Codes * J. Software Engneerng & Applcatons, 2009, 2: 111-115 do:10.4236/jsea.2009.22016 Publshed Onlne July 2009 (www.scrp.org/journal/jsea) An Optmal Algorthm for Prufer Codes * Xaodong Wang 1, 2, Le Wang 3,

More information

Accounting for the Use of Different Length Scale Factors in x, y and z Directions

Accounting for the Use of Different Length Scale Factors in x, y and z Directions 1 Accountng for the Use of Dfferent Length Scale Factors n x, y and z Drectons Taha Soch (taha.soch@kcl.ac.uk) Imagng Scences & Bomedcal Engneerng, Kng s College London, The Rayne Insttute, St Thomas Hosptal,

More information

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching A Fast Vsual Trackng Algorthm Based on Crcle Pxels Matchng Zhqang Hou hou_zhq@sohu.com Chongzhao Han czhan@mal.xjtu.edu.cn Ln Zheng Abstract: A fast vsual trackng algorthm based on crcle pxels matchng

More information

Solving two-person zero-sum game by Matlab

Solving two-person zero-sum game by Matlab Appled Mechancs and Materals Onlne: 2011-02-02 ISSN: 1662-7482, Vols. 50-51, pp 262-265 do:10.4028/www.scentfc.net/amm.50-51.262 2011 Trans Tech Publcatons, Swtzerland Solvng two-person zero-sum game by

More information

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration Improvement of Spatal Resoluton Usng BlockMatchng Based Moton Estmaton and Frame Integraton Danya Suga and Takayuk Hamamoto Graduate School of Engneerng, Tokyo Unversty of Scence, 6-3-1, Nuku, Katsuska-ku,

More information

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers IOSR Journal of Electroncs and Communcaton Engneerng (IOSR-JECE) e-issn: 78-834,p- ISSN: 78-8735.Volume 9, Issue, Ver. IV (Mar - Apr. 04), PP 0-07 Content Based Image Retreval Usng -D Dscrete Wavelet wth

More information

Learning the Kernel Parameters in Kernel Minimum Distance Classifier

Learning the Kernel Parameters in Kernel Minimum Distance Classifier Learnng the Kernel Parameters n Kernel Mnmum Dstance Classfer Daoqang Zhang 1,, Songcan Chen and Zh-Hua Zhou 1* 1 Natonal Laboratory for Novel Software Technology Nanjng Unversty, Nanjng 193, Chna Department

More information

Design and Realization of Open CNC System Based on Software Motion Controller

Design and Realization of Open CNC System Based on Software Motion Controller Internatonal Forum on Management, Educaton and Informaton Technology Applcaton (IFMEITA 2016) Desgn and Realzaton of Open CNC System Based on Software Moton Controller Xu Ran1, a, Janqun Lu2, b, Weqang

More information

Performance Evaluation of an ANFIS Based Power System Stabilizer Applied in Multi-Machine Power Systems

Performance Evaluation of an ANFIS Based Power System Stabilizer Applied in Multi-Machine Power Systems Performance Evaluaton of an ANFIS Based Power System Stablzer Appled n Mult-Machne Power Systems A. A GHARAVEISI 1,2 A.DARABI 3 M. MONADI 4 A. KHAJEH-ZADEH 5 M. RASHIDI-NEJAD 1,2,5 1. Shahd Bahonar Unversty

More information

Efficient Distributed File System (EDFS)

Efficient Distributed File System (EDFS) Effcent Dstrbuted Fle System (EDFS) (Sem-Centralzed) Debessay(Debsh) Fesehaye, Rahul Malk & Klara Naherstedt Unversty of Illnos-Urbana Champagn Contents Problem Statement, Related Work, EDFS Desgn Rate

More information

Parallel matrix-vector multiplication

Parallel matrix-vector multiplication Appendx A Parallel matrx-vector multplcaton The reduced transton matrx of the three-dmensonal cage model for gel electrophoress, descrbed n secton 3.2, becomes excessvely large for polymer lengths more

More information

3D Virtual Eyeglass Frames Modeling from Multiple Camera Image Data Based on the GFFD Deformation Method

3D Virtual Eyeglass Frames Modeling from Multiple Camera Image Data Based on the GFFD Deformation Method NICOGRAPH Internatonal 2012, pp. 114-119 3D Vrtual Eyeglass Frames Modelng from Multple Camera Image Data Based on the GFFD Deformaton Method Norak Tamura, Somsangouane Sngthemphone and Katsuhro Ktama

More information

Quality Improvement Algorithm for Tetrahedral Mesh Based on Optimal Delaunay Triangulation

Quality Improvement Algorithm for Tetrahedral Mesh Based on Optimal Delaunay Triangulation Intellgent Informaton Management, 013, 5, 191-195 Publshed Onlne November 013 (http://www.scrp.org/journal/m) http://dx.do.org/10.36/m.013.5601 Qualty Improvement Algorthm for Tetrahedral Mesh Based on

More information

Simulation Based Analysis of FAST TCP using OMNET++

Simulation Based Analysis of FAST TCP using OMNET++ Smulaton Based Analyss of FAST TCP usng OMNET++ Umar ul Hassan 04030038@lums.edu.pk Md Term Report CS678 Topcs n Internet Research Sprng, 2006 Introducton Internet traffc s doublng roughly every 3 months

More information

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier Some materal adapted from Mohamed Youns, UMBC CMSC 611 Spr 2003 course sldes Some materal adapted from Hennessy & Patterson / 2003 Elsever Scence Performance = 1 Executon tme Speedup = Performance (B)

More information

The Comparison of Calibration Method of Binocular Stereo Vision System Ke Zhang a *, Zhao Gao b

The Comparison of Calibration Method of Binocular Stereo Vision System Ke Zhang a *, Zhao Gao b 3rd Internatonal Conference on Materal, Mechancal and Manufacturng Engneerng (IC3ME 2015) The Comparson of Calbraton Method of Bnocular Stereo Vson System Ke Zhang a *, Zhao Gao b College of Engneerng,

More information

A new segmentation algorithm for medical volume image based on K-means clustering

A new segmentation algorithm for medical volume image based on K-means clustering Avalable onlne www.jocpr.com Journal of Chemcal and harmaceutcal Research, 2013, 5(12):113-117 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCRC5 A new segmentaton algorthm for medcal volume mage based

More information

Kinematics Modeling and Analysis of MOTOMAN-HP20 Robot

Kinematics Modeling and Analysis of MOTOMAN-HP20 Robot nd Workshop on Advanced Research and Technolog n Industr Applcatons (WARTIA ) Knematcs Modelng and Analss of MOTOMAN-HP Robot Jou Fe, Chen Huang School of Mechancal Engneerng, Dalan Jaotong Unverst, Dalan,

More information

Brave New World Pseudocode Reference

Brave New World Pseudocode Reference Brave New World Pseudocode Reference Pseudocode s a way to descrbe how to accomplsh tasks usng basc steps lke those a computer mght perform. In ths week s lab, you'll see how a form of pseudocode can be

More information

Mallathahally, Bangalore, India 1 2

Mallathahally, Bangalore, India 1 2 7 IMPLEMENTATION OF HIGH PERFORMANCE BINARY SQUARER PRADEEP M C, RAMESH S, Department of Electroncs and Communcaton Engneerng, Dr. Ambedkar Insttute of Technology, Mallathahally, Bangalore, Inda pradeepmc@gmal.com,

More information

Distance Calculation from Single Optical Image

Distance Calculation from Single Optical Image 17 Internatonal Conference on Mathematcs, Modellng and Smulaton Technologes and Applcatons (MMSTA 17) ISBN: 978-1-6595-53-8 Dstance Calculaton from Sngle Optcal Image Xao-yng DUAN 1,, Yang-je WEI 1,,*

More information

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc.

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc. [Type text] [Type text] [Type text] ISSN : 97-735 Volume Issue 9 BoTechnology An Indan Journal FULL PAPER BTAIJ, (9), [333-3] Matlab mult-dmensonal model-based - 3 Chnese football assocaton super league

More information

Quick error verification of portable coordinate measuring arm

Quick error verification of portable coordinate measuring arm Quck error verfcaton of portable coordnate measurng arm J.F. Ouang, W.L. Lu, X.H. Qu State Ke Laborator of Precson Measurng Technolog and Instruments, Tanjn Unverst, Tanjn 7, Chna Tel.: + 86 [] 7-8-99

More information

A New Approach For the Ranking of Fuzzy Sets With Different Heights

A New Approach For the Ranking of Fuzzy Sets With Different Heights New pproach For the ankng of Fuzzy Sets Wth Dfferent Heghts Pushpnder Sngh School of Mathematcs Computer pplcatons Thapar Unversty, Patala-7 00 Inda pushpndersnl@gmalcom STCT ankng of fuzzy sets plays

More information

Computer models of motion: Iterative calculations

Computer models of motion: Iterative calculations Computer models o moton: Iteratve calculatons OBJECTIVES In ths actvty you wll learn how to: Create 3D box objects Update the poston o an object teratvely (repeatedly) to anmate ts moton Update the momentum

More information

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data Malaysan Journal of Mathematcal Scences 11(S) Aprl : 35 46 (2017) Specal Issue: The 2nd Internatonal Conference and Workshop on Mathematcal Analyss (ICWOMA 2016) MALAYSIAN JOURNAL OF MATHEMATICAL SCIENCES

More information

Assembler. Building a Modern Computer From First Principles.

Assembler. Building a Modern Computer From First Principles. Assembler Buldng a Modern Computer From Frst Prncples www.nand2tetrs.org Elements of Computng Systems, Nsan & Schocken, MIT Press, www.nand2tetrs.org, Chapter 6: Assembler slde Where we are at: Human Thought

More information

Six-axis Robot Manipulator Numerical Control Programming and Motion Simulation

Six-axis Robot Manipulator Numerical Control Programming and Motion Simulation 2016 Internatonal Conference on Appled Mechancs, Mechancal and Materals Engneerng (AMMME 2016) ISBN: 978-1-60595-409-7 S-as Robot Manpulator Numercal Control Programmng and Moton Smulaton Chen-hua SHE

More information

Positive Semi-definite Programming Localization in Wireless Sensor Networks

Positive Semi-definite Programming Localization in Wireless Sensor Networks Postve Sem-defnte Programmng Localzaton n Wreless Sensor etworks Shengdong Xe 1,, Jn Wang, Aqun Hu 1, Yunl Gu, Jang Xu, 1 School of Informaton Scence and Engneerng, Southeast Unversty, 10096, anjng Computer

More information

Development of a CNC interpolation scheme for CNC controller based on Runge-Kutta method. Abdullahil Azeem*, Syed Mithun Ali and Sanjoy Kumar Paul

Development of a CNC interpolation scheme for CNC controller based on Runge-Kutta method. Abdullahil Azeem*, Syed Mithun Ali and Sanjoy Kumar Paul Int. J. Computer Aded Engneerng and Technology, Vol. 4, No. 5, 01 445 Development of a CNC nterpolaton scheme for CNC controller based on Runge-Kutta method Bddut Bhattacharjee Unversty of Brtsh Columba,

More information

Remote Sensing Image Retrieval Algorithm based on MapReduce and Characteristic Information

Remote Sensing Image Retrieval Algorithm based on MapReduce and Characteristic Information Remote Sensng Image Retreval Algorthm based on MapReduce and Characterstc Informaton Zhang Meng 1, 1 Computer School, Wuhan Unversty Hube, Wuhan430097 Informaton Center, Wuhan Unversty Hube, Wuhan430097

More information

S1 Note. Basis functions.

S1 Note. Basis functions. S1 Note. Bass functons. Contents Types of bass functons...1 The Fourer bass...2 B-splne bass...3 Power and type I error rates wth dfferent numbers of bass functons...4 Table S1. Smulaton results of type

More information

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision SLAM Summer School 2006 Practcal 2: SLAM usng Monocular Vson Javer Cvera, Unversty of Zaragoza Andrew J. Davson, Imperal College London J.M.M Montel, Unversty of Zaragoza. josemar@unzar.es, jcvera@unzar.es,

More information

An Iterative Solution Approach to Process Plant Layout using Mixed Integer Optimisation

An Iterative Solution Approach to Process Plant Layout using Mixed Integer Optimisation 17 th European Symposum on Computer Aded Process Engneerng ESCAPE17 V. Plesu and P.S. Agach (Edtors) 2007 Elsever B.V. All rghts reserved. 1 An Iteratve Soluton Approach to Process Plant Layout usng Mxed

More information

Modeling Concave Globoidal Cam with Swinging Roller Follower: A Case Study

Modeling Concave Globoidal Cam with Swinging Roller Follower: A Case Study Modelng Concave Globodal Cam wth Swngng Roller Follower: A Case Study Nguyen Van Tuong, and Premysl Pokorny Abstract Ths paper descrbes a computer-aded desgn for desgn of the concave globodal cam wth cylndrcal

More information

R s s f. m y s. SPH3UW Unit 7.3 Spherical Concave Mirrors Page 1 of 12. Notes

R s s f. m y s. SPH3UW Unit 7.3 Spherical Concave Mirrors Page 1 of 12. Notes SPH3UW Unt 7.3 Sphercal Concave Mrrors Page 1 of 1 Notes Physcs Tool box Concave Mrror If the reflectng surface takes place on the nner surface of the sphercal shape so that the centre of the mrror bulges

More information

Determining the Optimal Bandwidth Based on Multi-criterion Fusion

Determining the Optimal Bandwidth Based on Multi-criterion Fusion Proceedngs of 01 4th Internatonal Conference on Machne Learnng and Computng IPCSIT vol. 5 (01) (01) IACSIT Press, Sngapore Determnng the Optmal Bandwdth Based on Mult-crteron Fuson Ha-L Lang 1+, Xan-Mn

More information

Load Balancing for Hex-Cell Interconnection Network

Load Balancing for Hex-Cell Interconnection Network Int. J. Communcatons, Network and System Scences,,, - Publshed Onlne Aprl n ScRes. http://www.scrp.org/journal/jcns http://dx.do.org/./jcns.. Load Balancng for Hex-Cell Interconnecton Network Saher Manaseer,

More information

An Application of the Dulmage-Mendelsohn Decomposition to Sparse Null Space Bases of Full Row Rank Matrices

An Application of the Dulmage-Mendelsohn Decomposition to Sparse Null Space Bases of Full Row Rank Matrices Internatonal Mathematcal Forum, Vol 7, 2012, no 52, 2549-2554 An Applcaton of the Dulmage-Mendelsohn Decomposton to Sparse Null Space Bases of Full Row Rank Matrces Mostafa Khorramzadeh Department of Mathematcal

More information

RADIX-10 PARALLEL DECIMAL MULTIPLIER

RADIX-10 PARALLEL DECIMAL MULTIPLIER RADIX-10 PARALLEL DECIMAL MULTIPLIER 1 MRUNALINI E. INGLE & 2 TEJASWINI PANSE 1&2 Electroncs Engneerng, Yeshwantrao Chavan College of Engneerng, Nagpur, Inda E-mal : mrunalngle@gmal.com, tejaswn.deshmukh@gmal.com

More information

Wishing you all a Total Quality New Year!

Wishing you all a Total Quality New Year! Total Qualty Management and Sx Sgma Post Graduate Program 214-15 Sesson 4 Vnay Kumar Kalakband Assstant Professor Operatons & Systems Area 1 Wshng you all a Total Qualty New Year! Hope you acheve Sx sgma

More information

VISUAL SELECTION OF SURFACE FEATURES DURING THEIR GEOMETRIC SIMULATION WITH THE HELP OF COMPUTER TECHNOLOGIES

VISUAL SELECTION OF SURFACE FEATURES DURING THEIR GEOMETRIC SIMULATION WITH THE HELP OF COMPUTER TECHNOLOGIES UbCC 2011, Volume 6, 5002981-x manuscrpts OPEN ACCES UbCC Journal ISSN 1992-8424 www.ubcc.org VISUAL SELECTION OF SURFACE FEATURES DURING THEIR GEOMETRIC SIMULATION WITH THE HELP OF COMPUTER TECHNOLOGIES

More information

High-Boost Mesh Filtering for 3-D Shape Enhancement

High-Boost Mesh Filtering for 3-D Shape Enhancement Hgh-Boost Mesh Flterng for 3-D Shape Enhancement Hrokazu Yagou Λ Alexander Belyaev y Damng We z Λ y z ; ; Shape Modelng Laboratory, Unversty of Azu, Azu-Wakamatsu 965-8580 Japan y Computer Graphcs Group,

More information

Enhanced AMBTC for Image Compression using Block Classification and Interpolation

Enhanced AMBTC for Image Compression using Block Classification and Interpolation Internatonal Journal of Computer Applcatons (0975 8887) Volume 5 No.0, August 0 Enhanced AMBTC for Image Compresson usng Block Classfcaton and Interpolaton S. Vmala Dept. of Comp. Scence Mother Teresa

More information

PHOTOGRAMMETRIC ANALYSIS OF ASYNCHRONOUSLY ACQUIRED IMAGE SEQUENCES

PHOTOGRAMMETRIC ANALYSIS OF ASYNCHRONOUSLY ACQUIRED IMAGE SEQUENCES PHOTOGRAMMETRIC ANALYSIS OF ASYNCHRONOUSLY ACQUIRED IMAGE SEQUENCES Karsten Raguse 1, Chrstan Hepke 2 1 Volkswagen AG, Research & Development, Dept. EZTV, Letter Box 1788, 38436 Wolfsburg, Germany Emal:

More information

An Improved Rotary Interpolation Based on FPGA

An Improved Rotary Interpolation Based on FPGA Sensors & Transducers Vol. 76 Issue 8 August 04 pp. 96-305 Sensors & Transducers 04 by IFSA Publishing S. L. http://www.sensorsportal.com An Improved Rotary Interpolation Based on FPGA * Mingyu Gao Jiaxiang

More information

Data Representation in Digital Design, a Single Conversion Equation and a Formal Languages Approach

Data Representation in Digital Design, a Single Conversion Equation and a Formal Languages Approach Data Representaton n Dgtal Desgn, a Sngle Converson Equaton and a Formal Languages Approach Hassan Farhat Unversty of Nebraska at Omaha Abstract- In the study of data representaton n dgtal desgn and computer

More information

Outline. Digital Systems. C.2: Gates, Truth Tables and Logic Equations. Truth Tables. Logic Gates 9/8/2011

Outline. Digital Systems. C.2: Gates, Truth Tables and Logic Equations. Truth Tables. Logic Gates 9/8/2011 9/8/2 2 Outlne Appendx C: The Bascs of Logc Desgn TDT4255 Computer Desgn Case Study: TDT4255 Communcaton Module Lecture 2 Magnus Jahre 3 4 Dgtal Systems C.2: Gates, Truth Tables and Logc Equatons All sgnals

More information

Harvard University CS 101 Fall 2005, Shimon Schocken. Assembler. Elements of Computing Systems 1 Assembler (Ch. 6)

Harvard University CS 101 Fall 2005, Shimon Schocken. Assembler. Elements of Computing Systems 1 Assembler (Ch. 6) Harvard Unversty CS 101 Fall 2005, Shmon Schocken Assembler Elements of Computng Systems 1 Assembler (Ch. 6) Why care about assemblers? Because Assemblers employ some nfty trcks Assemblers are the frst

More information

The Research of Support Vector Machine in Agricultural Data Classification

The Research of Support Vector Machine in Agricultural Data Classification The Research of Support Vector Machne n Agrcultural Data Classfcaton Le Sh, Qguo Duan, Xnmng Ma, Me Weng College of Informaton and Management Scence, HeNan Agrcultural Unversty, Zhengzhou 45000 Chna Zhengzhou

More information

A proportional fair scheduling algorithm based on QoS utility function in wireless networks

A proportional fair scheduling algorithm based on QoS utility function in wireless networks Avalable onlne www.jocpr.com Journal of Chemcal and Pharmaceutcal esearch, 2014, 6(5):1957-1963 esearch Artcle ISSN : 0975-7384 CODEN(USA) : JCPC5 A proportonal far schedulng algorthm based on QoS utlty

More information

MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION

MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION Paulo Quntlano 1 & Antono Santa-Rosa 1 Federal Polce Department, Brasla, Brazl. E-mals: quntlano.pqs@dpf.gov.br and

More information

A Five-Point Subdivision Scheme with Two Parameters and a Four-Point Shape-Preserving Scheme

A Five-Point Subdivision Scheme with Two Parameters and a Four-Point Shape-Preserving Scheme Mathematcal and Computatonal Applcatons Artcle A Fve-Pont Subdvson Scheme wth Two Parameters and a Four-Pont Shape-Preservng Scheme Jeqng Tan,2, Bo Wang, * and Jun Sh School of Mathematcs, Hefe Unversty

More information

Inertial Measurement Unit Simulator

Inertial Measurement Unit Simulator Inertal Measurement Unt Smulator Krl Alexev Abstract Durng the last few years mcromnaturzed nertal sensors were ntroduced n many applcatons. Ther small sze, low power consumpton, rugged constructon open

More information

Inverse kinematic Modeling of 3RRR Parallel Robot

Inverse kinematic Modeling of 3RRR Parallel Robot ème Congrès Franças de Mécanque Lyon, 4 au 8 Août 5 Inverse knematc Modelng of RRR Parallel Robot Ouafae HAMDOUN, Fatma Zahra BAGHLI, Larb EL BAKKALI Modelng and Smulaton of Mechancal Systems Laboratory,

More information

An Improved Image Segmentation Algorithm Based on the Otsu Method

An Improved Image Segmentation Algorithm Based on the Otsu Method 3th ACIS Internatonal Conference on Software Engneerng, Artfcal Intellgence, Networkng arallel/dstrbuted Computng An Improved Image Segmentaton Algorthm Based on the Otsu Method Mengxng Huang, enjao Yu,

More information

Geometric error measurement and identification for rotational axes of five-axis CNC machine tool

Geometric error measurement and identification for rotational axes of five-axis CNC machine tool Receved for revew: yyyy-mm-dd 205 Journal of Mechancal Engneerng. All rghts reserved. Receved revsed form: yyyy-mm-dd DI code rgnal aper Accepted for publcaton: yyyy-mm-dd Geometrc error measurement and

More information

A Model Based on Multi-agent for Dynamic Bandwidth Allocation in Networks Guang LU, Jian-Wen QI

A Model Based on Multi-agent for Dynamic Bandwidth Allocation in Networks Guang LU, Jian-Wen QI 216 Jont Internatonal Conference on Artfcal Intellgence and Computer Engneerng (AICE 216) and Internatonal Conference on etwork and Communcaton Securty (CS 216) ISB: 978-1-6595-362-5 A Model Based on Mult-agent

More information

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization Problem efntons and Evaluaton Crtera for Computatonal Expensve Optmzaton B. Lu 1, Q. Chen and Q. Zhang 3, J. J. Lang 4, P. N. Suganthan, B. Y. Qu 6 1 epartment of Computng, Glyndwr Unversty, UK Faclty

More information

A Novel Adaptive Descriptor Algorithm for Ternary Pattern Textures

A Novel Adaptive Descriptor Algorithm for Ternary Pattern Textures A Novel Adaptve Descrptor Algorthm for Ternary Pattern Textures Fahuan Hu 1,2, Guopng Lu 1 *, Zengwen Dong 1 1.School of Mechancal & Electrcal Engneerng, Nanchang Unversty, Nanchang, 330031, Chna; 2. School

More information

Design of intelligent sensor based on BP neural network and ZigBee wireless sensor network

Design of intelligent sensor based on BP neural network and ZigBee wireless sensor network Avalable onlne www.ocpr.com Journal of Chemcal and Pharmaceutcal Research, 204, 6(6):820-826 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 Desgn of ntellgent sensor based on BP neural network and

More information

Virtual Memory. Background. No. 10. Virtual Memory: concept. Logical Memory Space (review) Demand Paging(1) Virtual Memory

Virtual Memory. Background. No. 10. Virtual Memory: concept. Logical Memory Space (review) Demand Paging(1) Virtual Memory Background EECS. Operatng System Fundamentals No. Vrtual Memory Prof. Hu Jang Department of Electrcal Engneerng and Computer Scence, York Unversty Memory-management methods normally requres the entre process

More information

Method of Wireless Sensor Network Data Fusion

Method of Wireless Sensor Network Data Fusion Method of Wreless Sensor Network Data Fuson https://do.org/10.3991/joe.v1309.7589 L-l Ma!! ", Jang-png Lu Inner Mongola Agrcultural Unversty, Hohhot, Inner Mongola, Chna lujangpng@mau.edu.cn J-dong Luo

More information

CHAPTER 4 PARALLEL PREFIX ADDER

CHAPTER 4 PARALLEL PREFIX ADDER 93 CHAPTER 4 PARALLEL PREFIX ADDER 4.1 INTRODUCTION VLSI Integer adders fnd applcatons n Arthmetc and Logc Unts (ALUs), mcroprocessors and memory addressng unts. Speed of the adder often decdes the mnmum

More information

Computer-Aided Design. The feedrate scheduling of NURBS interpolator for CNC machine tools

Computer-Aided Design. The feedrate scheduling of NURBS interpolator for CNC machine tools Computer-Aded Desgn 43 (011) 61 68 Contents lsts avalable at ScenceDrect Computer-Aded Desgn journal homepage: www.elsever.com/locate/cad The feedrate schedulng of NURBS nterpolator for CNC machne tools

More information

Assembler. Shimon Schocken. Spring Elements of Computing Systems 1 Assembler (Ch. 6) Compiler. abstract interface.

Assembler. Shimon Schocken. Spring Elements of Computing Systems 1 Assembler (Ch. 6) Compiler. abstract interface. IDC Herzlya Shmon Schocken Assembler Shmon Schocken Sprng 2005 Elements of Computng Systems 1 Assembler (Ch. 6) Where we are at: Human Thought Abstract desgn Chapters 9, 12 abstract nterface H.L. Language

More information

Finite Element Analysis of Rubber Sealing Ring Resilience Behavior Qu Jia 1,a, Chen Geng 1,b and Yang Yuwei 2,c

Finite Element Analysis of Rubber Sealing Ring Resilience Behavior Qu Jia 1,a, Chen Geng 1,b and Yang Yuwei 2,c Advanced Materals Research Onlne: 03-06-3 ISSN: 66-8985, Vol. 705, pp 40-44 do:0.408/www.scentfc.net/amr.705.40 03 Trans Tech Publcatons, Swtzerland Fnte Element Analyss of Rubber Sealng Rng Reslence Behavor

More information

Dynamic wetting property investigation of AFM tips in micro/nanoscale

Dynamic wetting property investigation of AFM tips in micro/nanoscale Dynamc wettng property nvestgaton of AFM tps n mcro/nanoscale The wettng propertes of AFM probe tps are of concern n AFM tp related force measurement, fabrcaton, and manpulaton technques, such as dp-pen

More information

Assignment # 2. Farrukh Jabeen Algorithms 510 Assignment #2 Due Date: June 15, 2009.

Assignment # 2. Farrukh Jabeen Algorithms 510 Assignment #2 Due Date: June 15, 2009. Farrukh Jabeen Algorthms 51 Assgnment #2 Due Date: June 15, 29. Assgnment # 2 Chapter 3 Dscrete Fourer Transforms Implement the FFT for the DFT. Descrbed n sectons 3.1 and 3.2. Delverables: 1. Concse descrpton

More information

An Image Compression Algorithm based on Wavelet Transform and LZW

An Image Compression Algorithm based on Wavelet Transform and LZW An Image Compresson Algorthm based on Wavelet Transform and LZW Png Luo a, Janyong Yu b School of Chongqng Unversty of Posts and Telecommuncatons, Chongqng, 400065, Chna Abstract a cylpng@63.com, b y27769864@sna.cn

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(6): Research Article. A selective ensemble classification method on microarray data

Journal of Chemical and Pharmaceutical Research, 2014, 6(6): Research Article. A selective ensemble classification method on microarray data Avalable onlne www.ocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(6):2860-2866 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 A selectve ensemble classfcaton method on mcroarray

More information

Development of a FPGA-based Motion Control IC for Robot Arm

Development of a FPGA-based Motion Control IC for Robot Arm Development of a FPGA-based oton Control IC for Robot Arm Yng-Sheh ung, ember IEEE Southern Tawan Unversty of Technology No. Nan-Ta Street, Yung-ang Tanan County, 7, TAIWAN kung@mal.stut.edu.tw Gua-Sheh

More information

An Image Fusion Approach Based on Segmentation Region

An Image Fusion Approach Based on Segmentation Region Rong Wang, L-Qun Gao, Shu Yang, Yu-Hua Cha, and Yan-Chun Lu An Image Fuson Approach Based On Segmentaton Regon An Image Fuson Approach Based on Segmentaton Regon Rong Wang, L-Qun Gao, Shu Yang 3, Yu-Hua

More information

AADL : about scheduling analysis

AADL : about scheduling analysis AADL : about schedulng analyss Schedulng analyss, what s t? Embedded real-tme crtcal systems have temporal constrants to meet (e.g. deadlne). Many systems are bult wth operatng systems provdng multtaskng

More information

Wireless Sensor Network Localization Research

Wireless Sensor Network Localization Research Sensors & Transducers 014 by IFSA Publshng, S L http://wwwsensorsportalcom Wreless Sensor Network Localzaton Research Lang Xn School of Informaton Scence and Engneerng, Hunan Internatonal Economcs Unversty,

More information

The Greedy Method. Outline and Reading. Change Money Problem. Greedy Algorithms. Applications of the Greedy Strategy. The Greedy Method Technique

The Greedy Method. Outline and Reading. Change Money Problem. Greedy Algorithms. Applications of the Greedy Strategy. The Greedy Method Technique //00 :0 AM Outlne and Readng The Greedy Method The Greedy Method Technque (secton.) Fractonal Knapsack Problem (secton..) Task Schedulng (secton..) Mnmum Spannng Trees (secton.) Change Money Problem Greedy

More information

AC : TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS

AC : TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS AC 2011-1615: TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS Nkunja Swan, South Carolna State Unversty Dr. Swan s currently a Professor at

More information

X- Chart Using ANOM Approach

X- Chart Using ANOM Approach ISSN 1684-8403 Journal of Statstcs Volume 17, 010, pp. 3-3 Abstract X- Chart Usng ANOM Approach Gullapall Chakravarth 1 and Chaluvad Venkateswara Rao Control lmts for ndvdual measurements (X) chart are

More information

Numerical model describing optimization of fibres winding process on open and closed frame

Numerical model describing optimization of fibres winding process on open and closed frame Journal of Physcs: Conference Seres PAPER OPEN ACCESS Numercal model descrbng optmzaton of fbres wndng process on open and closed frame To cte ths artcle: M Petr et al 06 J Phys: Conf Ser 738 0094 Vew

More information

Boundary Condition Simulation for Structural Local Refined Modeling Using Genetic Algorithm

Boundary Condition Simulation for Structural Local Refined Modeling Using Genetic Algorithm 2016 Internatonal Conference on Artfcal Intellgence: Technques and Applcatons (AITA 2016) ISBN: 978-1-60595-389-2 Boundary Condton Smulaton for Structural Local Refned Modelng Usng Genetc Algorthm Zhong

More information

Available online at Available online at Advanced in Control Engineering and Information Science

Available online at   Available online at   Advanced in Control Engineering and Information Science Avalable onlne at wwwscencedrectcom Avalable onlne at wwwscencedrectcom Proceda Proceda Engneerng Engneerng 00 (2011) 15000 000 (2011) 1642 1646 Proceda Engneerng wwwelsevercom/locate/proceda Advanced

More information

The Shortest Path of Touring Lines given in the Plane

The Shortest Path of Touring Lines given in the Plane Send Orders for Reprnts to reprnts@benthamscence.ae 262 The Open Cybernetcs & Systemcs Journal, 2015, 9, 262-267 The Shortest Path of Tourng Lnes gven n the Plane Open Access Ljuan Wang 1,2, Dandan He

More information

INVERSE DYNAMICS ANALYSIS AND SIMULATION OF A CLASS OF UNDER- CONSTRAINED CABLE-DRIVEN PARALLEL SYSTEM

INVERSE DYNAMICS ANALYSIS AND SIMULATION OF A CLASS OF UNDER- CONSTRAINED CABLE-DRIVEN PARALLEL SYSTEM U.P.B. Sc. Bull., Seres D, Vol. 78, Iss., 6 ISSN 454-58 INVERSE DYNAMICS ANALYSIS AND SIMULATION OF A CLASS OF UNDER- CONSTRAINED CABLE-DRIVEN PARALLEL SYSTEM We LI, Zhgang ZHAO, Guangtan SHI, Jnsong LI

More information

Motivation. EE 457 Unit 4. Throughput vs. Latency. Performance Depends on View Point?! Computer System Performance. An individual user wants to:

Motivation. EE 457 Unit 4. Throughput vs. Latency. Performance Depends on View Point?! Computer System Performance. An individual user wants to: 4.1 4.2 Motvaton EE 457 Unt 4 Computer System Performance An ndvdual user wants to: Mnmze sngle program executon tme A datacenter owner wants to: Maxmze number of Mnmze ( ) http://e-tellgentnternetmarketng.com/webste/frustrated-computer-user-2/

More information

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Proceedngs of the Wnter Smulaton Conference M E Kuhl, N M Steger, F B Armstrong, and J A Jones, eds A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Mark W Brantley Chun-Hung

More information

Kinematics of pantograph masts

Kinematics of pantograph masts Abstract Spacecraft Mechansms Group, ISRO Satellte Centre, Arport Road, Bangalore 560 07, Emal:bpn@sac.ernet.n Flght Dynamcs Dvson, ISRO Satellte Centre, Arport Road, Bangalore 560 07 Emal:pandyan@sac.ernet.n

More information

Feature-based image registration using the shape context

Feature-based image registration using the shape context Feature-based mage regstraton usng the shape context LEI HUANG *, ZHEN LI Center for Earth Observaton and Dgtal Earth, Chnese Academy of Scences, Bejng, 100012, Chna Graduate Unversty of Chnese Academy

More information

Range images. Range image registration. Examples of sampling patterns. Range images and range surfaces

Range images. Range image registration. Examples of sampling patterns. Range images and range surfaces Range mages For many structured lght scanners, the range data forms a hghly regular pattern known as a range mage. he samplng pattern s determned by the specfc scanner. Range mage regstraton 1 Examples

More information