HEURISTIC METHOD OF DYNAMIC STRESS ANALYSIS IN MULTIBODY SIMULATION USING HPC

Size: px
Start display at page:

Download "HEURISTIC METHOD OF DYNAMIC STRESS ANALYSIS IN MULTIBODY SIMULATION USING HPC"

Transcription

1 11th World Congress on Computatonal Mechancs (WCCM XI) 5th European Conference on Computatonal Mechancs (ECCM V) 6th European Conference on Computatonal Flud Dynamcs (ECFD VI) E. Oñate, J. Olver and A. Huerta (Eds) HEURISTIC METHOD OF DYNAMIC STRESS ANALYSIS IN MULTIBODY SIMULATION USING HPC V.V. GETMANSKIY*, A.S. GOROBTSOV*, T.D. ISMAILOV* AND A.E. ANDREEV* * Volgograd State Techncal Unversty, Faculty Electroncs and Computer Scence, Volgograd, Lenn avenue, 28, 45, Russa, e-mal: vm@vstu.ru Key Words: Dynamc stress analyss, Multbody smulaton, Ambguous constrants, Dscrete elements, Doman decomposton, Parallel computng. Abstract. A parallel method of stress-stran smulaton of sngle body n multbody dynamc model s proposed n ths paper. Method s based on dscrete elements approxmaton of deformable body and doman decomposton. Multthreaded mplementaton usng POSIX threads lbrary wth custom synchronzaton prmtves gves a relatvely good speedup of parallel computng on NUMA archtecture n comparson wth OpenMP mplementaton. Smulaton of 13M elements mesh s performed on up to 32 cores. The results and effcency estmaton of concurrent smulaton are presented. 1 INTRODUCTION Actual task n vehcle desgn s a stress-stran analyss of vehcle parts wth maxmal dynamc loads. Tradtonal stress estmaton approaches are based on FEM methods whch compute only quas-statc stress dstrbuton and gve poor results n nonlnear dynamc cases. For example a lower arm model n truck suspenson system s consdered. It s connected to vehcle frame and wheel hub. Reactons from jonts to these bodes are used for determnng the stress dstrbuton. The reactons are obtaned from multbody smulaton of full vehcle. Weak couplng of multbody solver and stress solver s used n proposed method [1]. It uses separate solvers wth transferrng data durng smulaton and assgnng correspondng data to coupled parameters [2, 3]. Coupled parameters are reacton forces whch are transferred from multbody model to stress submodel at each tme step. Multbody solver (MBS) s based on augmented Lagrangan formulaton wth natural coordnates [4, 5]. Parallelzaton of stress solver usng OpenMP s lmted by shared memory systems and loses n performance n case of NUMA archtecture. Iteratve procedure allows loops parallelng whch go along wth threads reallocaton on each teraton. Overheads caused by threads reallocaton are analysed for example n work [6]. Small amount of tme for parallel blocks n comparson wth total smulaton tme does not allow usng OpenMP effcently. As a soluton to the problem stated above t was developed a parallel stress-stran smulaton method based on doman decomposton and custom threads synchronzaton routnes.

2 2 DISCRETE ELEMENTS METHOD FOR DEFORMABLE BODY REPRESENTATION A lower arm n vehcle suspenson system has large dynamc loads when the vehcle runs on random road profle. Some consderaton for lower arm desgn usng FEM smulaton s presented n work [7]. However quas-statc approach lacks n case of dynamc loads. In proposed method deformable body s approxmated by rgd dscrete elements. Computatonal doman s regular orthogonal mesh based on CAD geometry of the part. Each mesh node s a rgd dscrete element wth 6 degrees of freedoms. Each element s connected to adjacent elements by flexble jont. Regular dscrete elements structure greatly smplfes the constructon of dfferental equaton system n natural coordnates. The nerta matrx s dagonal and all elements are descrbed by smlar ordnary dfferental equatons to wthn number of lnks to adjacent elements. Flexble body has a rgd counterpart n multbody model whch s called reference body. The system of equatons for flexble body has a followng form n coordnate system of reference body: y, y, Mat sy y M y = q t,, (1) where y s a vector of dscrete elements coordnates, M s a matrx of nerta for set of dscrete elements, a s a vector constructed of reference body acceleraton vector components, s y, y s a stablzng component. Reference body acceleraton s obtaned from multbody model. The functon qy,y,t descrbes the forces between rgd elements. Stress values are computed based on the values of the forces on each teraton. Random perturbng effect makes flexble body model unstable. Addtonal stablzng component s y, y s ntroduced n Equaton (1) to constran the poston of dscrete elements. Rght-hand sdes of the equaton are completed wth nerta forces takng nto account moton of the reference body n multbody model. Fgure 1: Flexble body to rgd body connecton Flexble body s connected to multbody model wth jonts. To complete the equaton t s necessary to add reacton forces n flexble jonts to subset of Equatons (1) corresponded to 2

3 sold elements on contact surfaces. There are two knds of jonts shown n Fgure 1: sprngdamper force f 1 = f and stff jont wth reacton force f2 r x, ry, rz. The equaton of moton for boundary dscrete element has a followng form n case of unform dstrbuton of reacton force along boundary: M y = f( t) F q ( y, y, t) M a ( t) s ( y, y), F (2) where F s a set of node ndces of boundary wth appled reacton f. So the reference body data obtaned from multbody solver s enough to calculate forces of nerta and reactons n jonts. Equaton (1) s solved usng Runge-Kutta 4-th order method (RK4). The data of reference body s transferred to stress solver on sync tme steps. Numercal ntegraton tme steps of multbody solver ( tman ) and stress solver ( tsub ) are dfferent n general case. For smplfcaton t s posed that tme steps are dvsble. If tsub tman, then tman N tsub, where N s an nteger multpler. There s general tme counter wth mnmal tme step t mn t sub, tman and couplng tme counter wth maxmal tme step t max t t. Solver algorthm s presented below. sub, man The followng seral algorthm s mplemented and used for smulaton: t, t, t mn t, t t max t, t sub t,, man sub man Whle t T If t tman Then MBS teraton solvng for current tme t tman tman tman If t t Then Rght-hand sde ate for stress-stran solver t t t If t tsub Then Stress-stran solver teraton for tme t sub tsub tsub tsub Wrtng smulaton results t t t Each teraton of stress solver gves computed postons of dscrete elements. They are used to obtan dsplacements. Stresses n deformable body n each dscrete element can be calculated usng formula sub man 3

4 , (3) where j are stress tensor components, 2 E 1, E 2 1 j are stran tensor components, 2,, E s an elastcty modulus. Equvalent tensle stresses are calculated usng von Mses crteron: jj 6 j.5. (4) 1 j1 3 PARALLEL STRESS-STRAIN SOLVER 3.1 Parallel algorthm Overlappng doman decomposton s used for parallel algorthm. The postons of nner nodes of each subdoman are solved correctly n sngle teratons. The postons of outer nodes whch overlap are solved ncorrectly but they have correspondng nner nodes n adjacent subdoman. It s requred to exchange data from nner elements of adjacent subdomans to outer elements to correct the postons. Each subdoman terates ndependently except data exchange steps. The equaton order reducton s used whle ntegratng Equaton (1). In ths case the equaton s wrtten n smplfed form as where x s a new vector of unknowns, T x q ~ t, x, (5) x y y, q ~ s a new rght-hand sde functon. For ntegraton tme step of h RK4 formulas for ODE system are where k hq ~ 1 t, x k hq ~ t h 2, x k ~ 3 hqt h 2, x k ~ 2 k h q t h x k. 2 k 1 4, 3 x 1 x 1 6 k1 2k 2 2k 3 k 4, (6) 2 2 4

5 Calculaton of each k requres computng rght-hand sdes of Equaton (5). It s necessary to exchange data after each rght-hand sde calculaton to take nto account adjacent subdomans. So t s necessary 4 barrer synchronzatons after each of k computng. Parallel algorthm mples multbody solver and each subdoman solvers n separate threads. It s stated below. Parallel algorthm t, t, sub t, t mn t t, t max t t man sub, man MBS thread Whle t T If t tman Then MBS teraton solvng for current tme t tman tman tman If t t Then Sendng reactons to submodels Barrer Wrtng smulaton results t t t Submodel thread Whle t T If t t Then Barrer Rght-hand sde ate for stress-stran solver t t t If t tsub Then Stress-stran solver teraton for tme t sub For 1 To 4 Do k calculatng Data exchange Barrer y t calculatng tsub tsub tsub Wrtng smulaton results t t t 3.2 Synchronzaton sub, Data exchange s organzed usng sync table. Sync has a structure of adjacency matrx for subdomans and contans node number from whch data s send and to whch t s receved. man 5

6 The rows of sync table for sendng data contan ndces of nodes from whch data s send from subdoman wth number correspond to row number. The rows of sync table for recevng data contan ndces of nodes to whch data s receved to subdoman wth number correspond to row number. At exchange step data s packed to buffer before send usng addresses from -th row of sync table for -th parallel process and unpacked to addresses n subdoman solver memory after receve. 3.3 Doman decomposton Important characterstc of developed method s load balancng and mnmzaton of data exchange. Both of these tasks are solved by doman decomposton methods. Two methods were researched: recursve coordnate bsecton and multlevel methods for graph parttonng descrbed n work [8]. Frst geometrcal method s suted for convex geometry. Orthogonalty of the mesh gves a plane sectons wth mnmal number of cut lnks n case of same amount of nodes n cut boundary. But ths method does not gve mnmal number of total cut lnks. Method does not guarantee the connectvty of subdoman n concave cases. Some modfcatons for connectvty also don t gve a soluton n general case. Decomposton to overlappng subdomans makes the mathematcal formulaton more smple and easy to mplement for parallel computng. The same approach s used n parallel mplementaton of FEM smulaton [9]. Dscrete elements approach also can be used n fatgue analyss whch s usually accompaned wth doman decomposton [1]. Second method of multlevel graph parttonng solves NP task of edge cut mnmzaton wth relatve amount of nodes n each part restrctons. Shortly algorthm conssts of 3 steps: Source graph s compressed by combnng vertces untl several hundred vertces remans. Random matchng s used or heavy edge matchng n case of weghted edges s used. Compressed graph s decomposed by some decomposton methods, for example recursve bsecton. Compressed graph s unpacked to graph wth ntal amount of nodes wth conservng of decomposton. Kernghan-Ln heurstc s used usually for refnng the parts durng unpack [11]. Fgure 2: Suspenson lower arm model before (a) and after (b) decomposton 6

7 So a multlevel algorthm whch s mplemented n METIS lbrary s used for decomposton. Decomposton results for lower arm model of 13M elements are shown n Fgure 2. Imbalance and redundancy factors are used for qualty estmaton of decomposton. Redundancy R n and mbalance D n for decomposton of model of N nodes to n submodels are calculated as follows: R n n 1 N N, D n N N P max, (7) N where P requred relatve amount of nodes n submodel,. Redundancy and mbalance n worst case of 32 subdomans are 32 3% 4 MULTITHREADED IMPLEMENTATION N number of nodes n submodel R, D 4 32 %. For parallelzaton t was used pthreads lbrary. Parallel mplementaton of the program uses 2 custom synchronzaton prmtves: barrer for specfed number of threads; sgnal wthout watng. Several multthreaded synchronzaton strateges can be found n work [12]. 4.1 Barrer Ths synchronzaton prmtve ensures that the code whch s stuated n the program after the method Wat wll not be executed by the current thread untl the number of watng threads n ths method does not reach N. Such mplementaton allows the reuse of the barrer requred for the correct work of the cyclc part of the program. The barrer prevents premature executon of program code located after a synchronzaton pont provdng equal performance of multple threads under unbalanced loadng. Wat method algorthm Lock mutex Increase counter n : n n 1 If n N Then Wat for condton sgnalzng and unlock mutex Else Reset counter n : n Sgnalze condton to watng threads Unlock mutex 4.2 Sgnal wthout watng Ths synchronzaton prmtve extends the functonalty of a conventonal varable (condton) for use n the cyclc part of the program. Sgnal wthout watng ensures that the thread that calls method Wat wll wat untl the number of calls of ths method by that thread 7

8 does not match the number of calls of method Sgnal by the sgnallng thread. Sgnal wthout watng prevents the executon of the program code located after the synchronzaton pont by the watng threads untl recevng a sgnal from the sgnallng thread. Wat method algorthm Lock mutex Get dentfer of the current thread If the map counters does not contan key Add par, to the map counters Fnd the counter n w n the map counters by the key Increase the counter n w : n n 1 w w If n w 1 Increase the counter n : n n 1 If nw ns If the flag f s not set: f false Set the flag f : f true Wat for condton sgnalzng and unlock mutex Else If n N Reset the counter n : n Decrease the counter n s : n s n s 1 Decrease all counters n the map counters Unlock mutex Sgnal method algorthm Lock mutex Increase the counter n s : n s n s 1 If the flag f s not set: f true Reset the flag f : f false Sgnalze condton to watng threads Else If n N Reset the counter n : n Decrease the counter n s : n s n s 1 Decrease all counters n the map counters Unlock mutex 8

9 5 RESULTS Meshes wth dfferent number of nodes are used for smulaton. It s necessary to use hgh detaled meshes of several mllon elements for detaled geometry descrpton by orthogonal mesh. Smulaton was performed on Core-7 92 platform and on 2-socket Opteron x16 cores platform. The frst platform has turbo-boost and hyper-threadng capabltes. The second platform has NUMA archtecture. Fgure 3: Speedup of multthreaded smulaton on platform wth sngle 4-core CPU Intel Core 2,67GHz (a) and two 16-core CPUs AMD Opteron 2.1GHz (b) Speedup results are presented n Fgure 3. Effcency for 2 4 cores s almost perfect on NUMA platform. It s decreases to 75% on 8 cores and to 25 3% on 32 cores. Effcency decreases faster to 8% on 4 cores of Core-7 CPU, and to 44% usng 8 threads (wth hyperthreadng). Fgure 4: Suspenson lower arm stress-stran smulaton results The obtaned speedup s well correlated wth the research on custom OpenMP mplementaton for NUMA. 9

10 6 CONCLUSION The proposed method gves qute good speedup on shared memory platform wth NUMA. Effcency decreases wth ncreasng of number of threads but the speedup of 1 s acheved on 32 cores. A custom thread handlng sgnfcantly reduces overheads on NUMA-archtecture n comparson wth OpenMP. Parallel stress-stran smulaton method s also applcable to dstrbuted memory system such as clusters and can be mplemented usng MPI. REFERENCES [1] V.V. Getmansky, A.S. Gorobtsov, E.S. Sergeev, T.D. Ismalov, O.V. Shapovalov, Concurrent smulaton of multbody systems coupled wth stress-stran and heat transfer solvers, Journal of Computatonal Scence, 3(6), , 212. [2] M. Arnold, Numercal methods for smulaton n appled dynamcs, M. Arnold, W. Schehlen, (Edtors), Smulaton Technques for Appled Dynamcs, , Sprnger Venna, 28. [3] R. Kübler, W. Schehlen, Two Methods of Smulator Couplng, Mathematcal and Computer Modellng of Dynamcal Systems, 6(2), , 2. [4] E. Bayo, J. Garca de Jalon, M.A. Serna, A modfed Lagrangan formulaton for the dynamc analyss of constraned mechancal systems, Comput. Methods Appl. Mech. Eng., 71(2), , [5] M. Valasek, Z. Ska, O. Vaculn, Multbody formalsm for real-tme applcaton usng natural coordnates and modfed state space, Multbody System Dynamcs, 17, , 27. [6] P. Carrbault, M. Pérache, H. Jourdren, Enablng low-overhead hybrd MPI/OpenMP parallelsm wth MPC, Proc. of the 6th nternatonal conference on Beyond Loop Level Parallelsm n OpenMP accelerators, Taskng and more, 1-14, Sprnger-Verlag, Berln, Hedelberg, 21. [7] M.M. Rahman, M.M. Noor, K. Kadrgama, M.A. Maleque, R.A. Bakar, Modelng, analyss and fatgue lfe predcton of lower suspenson arm, Advanced Materals Research, 264, , 211. [8] G. Karyps, V. Kumar, Multlevel algorthms for mult-constrant graph parttonng, Proc. of the 1998 ACM/IEEE conference on Supercomputng IEEE Computer Socety, 1-13, Washngton, DC, USA, [9] J. Zhang, L. Zhang, H. Jang, An Implementaton Method of Parallel Fnte Element Computaton Based on Overlappng Doman Decomposton, Proceedngs of the Second nternatonal conference on Hgh Performance Computng and Applcatons, , 21. [1] L.C. L, C.A. Tang, G. L, S.Y. Wang, Z.Z. Lang, Y.B. Zhang, Numercal Smulaton of 3D Hydraulc Fracturng Based on an Improved Flow-Stress-Damage Model and a Parallel FEM Technque, Rock Mechancs and Rock Engneerng, 45(5), , 212. [11] B.W. Kernghan, S. Ln, An Effcent Heurstc Procedure for Parttonng Graphs, Bell Sys. Tech. J., 49(2), , 197. [12] A.B. Downey, The lttle book of semaphores 2 nd edton, CreateSpace, 29. 1

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

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

Preconditioning Parallel Sparse Iterative Solvers for Circuit Simulation

Preconditioning Parallel Sparse Iterative Solvers for Circuit Simulation Precondtonng Parallel Sparse Iteratve Solvers for Crcut Smulaton A. Basermann, U. Jaekel, and K. Hachya 1 Introducton One mportant mathematcal problem n smulaton of large electrcal crcuts s the soluton

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

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

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

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

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

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

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

AMath 483/583 Lecture 21 May 13, Notes: Notes: Jacobi iteration. Notes: Jacobi with OpenMP coarse grain

AMath 483/583 Lecture 21 May 13, Notes: Notes: Jacobi iteration. Notes: Jacobi with OpenMP coarse grain AMath 483/583 Lecture 21 May 13, 2011 Today: OpenMP and MPI versons of Jacob teraton Gauss-Sedel and SOR teratve methods Next week: More MPI Debuggng and totalvew GPU computng Read: Class notes and references

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

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

Smoothing Spline ANOVA for variable screening

Smoothing Spline ANOVA for variable screening Smoothng Splne ANOVA for varable screenng a useful tool for metamodels tranng and mult-objectve optmzaton L. Rcco, E. Rgon, A. Turco Outlne RSM Introducton Possble couplng Test case MOO MOO wth Game Theory

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

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

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

S.P.H. : A SOLUTION TO AVOID USING EROSION CRITERION?

S.P.H. : A SOLUTION TO AVOID USING EROSION CRITERION? S.P.H. : A SOLUTION TO AVOID USING EROSION CRITERION? Célne GALLET ENSICA 1 place Emle Bloun 31056 TOULOUSE CEDEX e-mal :cgallet@ensca.fr Jean Luc LACOME DYNALIS Immeuble AEROPOLE - Bat 1 5, Avenue Albert

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

LS-TaSC Version 2.1. Willem Roux Livermore Software Technology Corporation, Livermore, CA, USA. Abstract

LS-TaSC Version 2.1. Willem Roux Livermore Software Technology Corporation, Livermore, CA, USA. Abstract 12 th Internatonal LS-DYNA Users Conference Optmzaton(1) LS-TaSC Verson 2.1 Wllem Roux Lvermore Software Technology Corporaton, Lvermore, CA, USA Abstract Ths paper gves an overvew of LS-TaSC verson 2.1,

More information

Multiblock method for database generation in finite element programs

Multiblock method for database generation in finite element programs Proc. of the 9th WSEAS Int. Conf. on Mathematcal Methods and Computatonal Technques n Electrcal Engneerng, Arcachon, October 13-15, 2007 53 Multblock method for database generaton n fnte element programs

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

Module Management Tool in Software Development Organizations

Module Management Tool in Software Development Organizations Journal of Computer Scence (5): 8-, 7 ISSN 59-66 7 Scence Publcatons Management Tool n Software Development Organzatons Ahmad A. Al-Rababah and Mohammad A. Al-Rababah Faculty of IT, Al-Ahlyyah Amman Unversty,

More information

Topology Design using LS-TaSC Version 2 and LS-DYNA

Topology Design using LS-TaSC Version 2 and LS-DYNA Topology Desgn usng LS-TaSC Verson 2 and LS-DYNA Wllem Roux Lvermore Software Technology Corporaton, Lvermore, CA, USA Abstract Ths paper gves an overvew of LS-TaSC verson 2, a topology optmzaton tool

More information

The Codesign Challenge

The Codesign Challenge ECE 4530 Codesgn Challenge Fall 2007 Hardware/Software Codesgn The Codesgn Challenge Objectves In the codesgn challenge, your task s to accelerate a gven software reference mplementaton as fast as possble.

More information

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints Australan Journal of Basc and Appled Scences, 2(4): 1204-1208, 2008 ISSN 1991-8178 Sum of Lnear and Fractonal Multobjectve Programmng Problem under Fuzzy Rules Constrants 1 2 Sanjay Jan and Kalash Lachhwan

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

Very simple computational domains can be discretized using boundary-fitted structured meshes (also called grids)

Very simple computational domains can be discretized using boundary-fitted structured meshes (also called grids) Structured meshes Very smple computatonal domans can be dscretzed usng boundary-ftted structured meshes (also called grds) The grd lnes of a Cartesan mesh are parallel to one another Structured meshes

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

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET Jae-young Lee, Shahram Payandeh, and Ljljana Trajovć School of Engneerng Scence Smon Fraser Unversty 8888 Unversty

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

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

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data A Fast Content-Based Multmeda Retreval Technque Usng Compressed Data Borko Furht and Pornvt Saksobhavvat NSF Multmeda Laboratory Florda Atlantc Unversty, Boca Raton, Florda 3343 ABSTRACT In ths paper,

More information

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET

APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET APPLICATION OF PREDICTION-BASED PARTICLE FILTERS FOR TELEOPERATIONS OVER THE INTERNET Jae-young Lee, Shahram Payandeh, and Ljljana Trajovć School of Engneerng Scence Smon Fraser Unversty 8888 Unversty

More information

A unified library of nonlinear solution schemes

A unified library of nonlinear solution schemes A unfed lbrary of nonlnear soluton schemes Sofe E. Leon, Glauco H. Paulno, Anderson Perera, Ivan F. M. Menezes, Eduardo N. Lages 7/27/2011 Motvaton Nonlnear problems are prevalent n structural, flud, contnuum,

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

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

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

The Performance of Geothermal Field Modeling in Distributed Component Environment

The Performance of Geothermal Field Modeling in Distributed Component Environment Porows A., Peta A., Kowal A., Dane T.: The Performance of Geothermal Feld Modelng n Dstrbuted Component Envronment. In: Innovatons n Computng Scences and Software Engneerng, Sprnger,, pp 79-83. 79 Ths

More information

Parallel Numerics. 1 Preconditioning & Iterative Solvers (From 2016)

Parallel Numerics. 1 Preconditioning & Iterative Solvers (From 2016) Technsche Unverstät München WSe 6/7 Insttut für Informatk Prof. Dr. Thomas Huckle Dpl.-Math. Benjamn Uekermann Parallel Numercs Exercse : Prevous Exam Questons Precondtonng & Iteratve Solvers (From 6)

More information

Research Article. ISSN (Print) s k and. d k rate of k -th flow, source node and

Research Article. ISSN (Print) s k and. d k rate of k -th flow, source node and Scholars Journal of Engneerng and Technology (SJET) Sch. J. Eng. Tech., 2015; 3(4A):343-350 Scholars Academc and Scentfc Publsher (An Internatonal Publsher for Academc and Scentfc Resources) www.saspublsher.com

More information

Concurrent Apriori Data Mining Algorithms

Concurrent Apriori Data Mining Algorithms Concurrent Apror Data Mnng Algorthms Vassl Halatchev Department of Electrcal Engneerng and Computer Scence York Unversty, Toronto October 8, 2015 Outlne Why t s mportant Introducton to Assocaton Rule Mnng

More information

Collaborating components in mesh-based electronic packaging

Collaborating components in mesh-based electronic packaging Scentfc Programmng 12 (2004) 65 70 65 IOS Press Collaboratng components n mesh-based electronc packagng P. Chow a and C.-H. La b a Fujtsu Laboratores of Europe Lmted, Hayes Park Central, Hayes End Road,

More information

Support Vector Machines

Support Vector Machines /9/207 MIST.6060 Busness Intellgence and Data Mnng What are Support Vector Machnes? Support Vector Machnes Support Vector Machnes (SVMs) are supervsed learnng technques that analyze data and recognze patterns.

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

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

Control strategies for network efficiency and resilience with route choice

Control strategies for network efficiency and resilience with route choice Control strateges for networ effcency and reslence wth route choce Andy Chow Ru Sha Centre for Transport Studes Unversty College London, UK Centralsed strateges UK 1 Centralsed strateges Some effectve

More information

An Accurate Evaluation of Integrals in Convex and Non convex Polygonal Domain by Twelve Node Quadrilateral Finite Element Method

An Accurate Evaluation of Integrals in Convex and Non convex Polygonal Domain by Twelve Node Quadrilateral Finite Element Method Internatonal Journal of Computatonal and Appled Mathematcs. ISSN 89-4966 Volume, Number (07), pp. 33-4 Research Inda Publcatons http://www.rpublcaton.com An Accurate Evaluaton of Integrals n Convex and

More information

PHYSICS-ENHANCED L-SYSTEMS

PHYSICS-ENHANCED L-SYSTEMS PHYSICS-ENHANCED L-SYSTEMS Hansrud Noser 1, Stephan Rudolph 2, Peter Stuck 1 1 Department of Informatcs Unversty of Zurch, Wnterthurerstr. 190 CH-8057 Zurch Swtzerland noser(stuck)@f.unzh.ch, http://www.f.unzh.ch/~noser(~stuck)

More information

Wavefront Reconstructor

Wavefront Reconstructor A Dstrbuted Smplex B-Splne Based Wavefront Reconstructor Coen de Vsser and Mchel Verhaegen 14-12-201212 2012 Delft Unversty of Technology Contents Introducton Wavefront reconstructon usng Smplex B-Splnes

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

Solitary and Traveling Wave Solutions to a Model. of Long Range Diffusion Involving Flux with. Stability Analysis

Solitary and Traveling Wave Solutions to a Model. of Long Range Diffusion Involving Flux with. Stability Analysis Internatonal Mathematcal Forum, Vol. 6,, no. 7, 8 Soltary and Travelng Wave Solutons to a Model of Long Range ffuson Involvng Flux wth Stablty Analyss Manar A. Al-Qudah Math epartment, Rabgh Faculty of

More information

Design of Structure Optimization with APDL

Design of Structure Optimization with APDL Desgn of Structure Optmzaton wth APDL Yanyun School of Cvl Engneerng and Archtecture, East Chna Jaotong Unversty Nanchang 330013 Chna Abstract In ths paper, the desgn process of structure optmzaton wth

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

Virtual Machine Migration based on Trust Measurement of Computer Node

Virtual Machine Migration based on Trust Measurement of Computer Node Appled Mechancs and Materals Onlne: 2014-04-04 ISSN: 1662-7482, Vols. 536-537, pp 678-682 do:10.4028/www.scentfc.net/amm.536-537.678 2014 Trans Tech Publcatons, Swtzerland Vrtual Machne Mgraton based on

More information

An inverse problem solution for post-processing of PIV data

An inverse problem solution for post-processing of PIV data An nverse problem soluton for post-processng of PIV data Wt Strycznewcz 1,* 1 Appled Aerodynamcs Laboratory, Insttute of Avaton, Warsaw, Poland *correspondng author: wt.strycznewcz@lot.edu.pl Abstract

More information

Subspace clustering. Clustering. Fundamental to all clustering techniques is the choice of distance measure between data points;

Subspace clustering. Clustering. Fundamental to all clustering techniques is the choice of distance measure between data points; Subspace clusterng Clusterng Fundamental to all clusterng technques s the choce of dstance measure between data ponts; D q ( ) ( ) 2 x x = x x, j k = 1 k jk Squared Eucldean dstance Assumpton: All features

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

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

Modeling of the Absorption of the Electromagnetic Wave Energy in the Human Head Induced by Cell Phone

Modeling of the Absorption of the Electromagnetic Wave Energy in the Human Head Induced by Cell Phone Journal of Appled Mathematcs and Physcs, 14,, 179-184 Publshed Onlne November 14 n ScRes. http://www.scrp.org/ournal/amp http://dx.do.org/1.436/amp.14.114 Modelng of the Absorpton of the Electromagnetc

More information

Conditional Speculative Decimal Addition*

Conditional Speculative Decimal Addition* Condtonal Speculatve Decmal Addton Alvaro Vazquez and Elsardo Antelo Dep. of Electronc and Computer Engneerng Unv. of Santago de Compostela, Span Ths work was supported n part by Xunta de Galca under grant

More information

CMPS 10 Introduction to Computer Science Lecture Notes

CMPS 10 Introduction to Computer Science Lecture Notes CPS 0 Introducton to Computer Scence Lecture Notes Chapter : Algorthm Desgn How should we present algorthms? Natural languages lke Englsh, Spansh, or French whch are rch n nterpretaton and meanng are not

More information

6.854 Advanced Algorithms Petar Maymounkov Problem Set 11 (November 23, 2005) With: Benjamin Rossman, Oren Weimann, and Pouya Kheradpour

6.854 Advanced Algorithms Petar Maymounkov Problem Set 11 (November 23, 2005) With: Benjamin Rossman, Oren Weimann, and Pouya Kheradpour 6.854 Advanced Algorthms Petar Maymounkov Problem Set 11 (November 23, 2005) Wth: Benjamn Rossman, Oren Wemann, and Pouya Kheradpour Problem 1. We reduce vertex cover to MAX-SAT wth weghts, such that the

More information

Hybrid Non-Blind Color Image Watermarking

Hybrid Non-Blind Color Image Watermarking Hybrd Non-Blnd Color Image Watermarkng Ms C.N.Sujatha 1, Dr. P. Satyanarayana 2 1 Assocate Professor, Dept. of ECE, SNIST, Yamnampet, Ghatkesar Hyderabad-501301, Telangana 2 Professor, Dept. of ECE, AITS,

More information

SENSITIVITY ANALYSIS WITH UNSTRUCTURED FREE MESH GENERATORS IN 2-D AND 3-D SHAPE OPTIMIZATION.

SENSITIVITY ANALYSIS WITH UNSTRUCTURED FREE MESH GENERATORS IN 2-D AND 3-D SHAPE OPTIMIZATION. SENSITIVITY ANALYSIS WITH UNSTRUCTURED FREE MESH GENERATORS IN 2-D AND 3-D SHAPE OPTIMIZATION. P. Duysnx, W.H. Zhang, C. Fleury. Aerospace Laboratory, LTAS, Unversty of Lège B-4000 LIEGE, BELGIUM. ABSTRACT.

More information

CHAPTER 2 PROPOSED IMPROVED PARTICLE SWARM OPTIMIZATION

CHAPTER 2 PROPOSED IMPROVED PARTICLE SWARM OPTIMIZATION 24 CHAPTER 2 PROPOSED IMPROVED PARTICLE SWARM OPTIMIZATION The present chapter proposes an IPSO approach for multprocessor task schedulng problem wth two classfcatons, namely, statc ndependent tasks and

More information

Scheduling Remote Access to Scientific Instruments in Cyberinfrastructure for Education and Research

Scheduling Remote Access to Scientific Instruments in Cyberinfrastructure for Education and Research Schedulng Remote Access to Scentfc Instruments n Cybernfrastructure for Educaton and Research Je Yn 1, Junwe Cao 2,3,*, Yuexuan Wang 4, Lanchen Lu 1,3 and Cheng Wu 1,3 1 Natonal CIMS Engneerng and Research

More information

SHAPE OPTIMIZATION OF STRUCTURES BY MODIFIED HARMONY SEARCH

SHAPE OPTIMIZATION OF STRUCTURES BY MODIFIED HARMONY SEARCH INTERNATIONAL JOURNAL OF OPTIMIZATION IN CIVIL ENGINEERING Int. J. Optm. Cvl Eng., 2011; 3:485-494 SHAPE OPTIMIZATION OF STRUCTURES BY MODIFIED HARMONY SEARCH S. Gholzadeh *,, A. Barzegar and Ch. Gheyratmand

More information

Fast Computation of Shortest Path for Visiting Segments in the Plane

Fast Computation of Shortest Path for Visiting Segments in the Plane Send Orders for Reprnts to reprnts@benthamscence.ae 4 The Open Cybernetcs & Systemcs Journal, 04, 8, 4-9 Open Access Fast Computaton of Shortest Path for Vstng Segments n the Plane Ljuan Wang,, Bo Jang

More information

Reproducing Works of Calder

Reproducing Works of Calder Reproducng Works of Calder Dongkyoo Lee*, Hee-Jung Bae*, Chang Tae Km*, Dong-Chun Lee*, Dae-Hyun Jung*, Nam-Kyung Lee*, Kyoo-Ho Lee*, Nakhoon Baek**, J. Won Lee***, Kwan Woo Ryu* and James K. Hahn*** *

More information

Simplification of 3D Meshes

Simplification of 3D Meshes Smplfcaton of 3D Meshes Addy Ngan /4/00 Outlne Motvaton Taxonomy of smplfcaton methods Hoppe et al, Mesh optmzaton Hoppe, Progressve meshes Smplfcaton of 3D Meshes 1 Motvaton Hgh detaled meshes becomng

More information

On the Network Partitioning of Large Urban Transportation Networks

On the Network Partitioning of Large Urban Transportation Networks On the etwor Parttonng of Large Urban Transportaton etwors Hamdeh Etemadna and Khaled Abdelghany Abstract Ths paper ams at developng a traffc networ parttonng mechansm for dstrbuted traffc management applcatons.

More information

A mathematical programming approach to the analysis, design and scheduling of offshore oilfields

A mathematical programming approach to the analysis, design and scheduling of offshore oilfields 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 A mathematcal programmng approach to the analyss, desgn and

More information

Optimal Scheduling of Capture Times in a Multiple Capture Imaging System

Optimal Scheduling of Capture Times in a Multiple Capture Imaging System Optmal Schedulng of Capture Tmes n a Multple Capture Imagng System Tng Chen and Abbas El Gamal Informaton Systems Laboratory Department of Electrcal Engneerng Stanford Unversty Stanford, Calforna 9435,

More information

Chapter 6 Programmng the fnte element method Inow turn to the man subject of ths book: The mplementaton of the fnte element algorthm n computer programs. In order to make my dscusson as straghtforward

More information

Analysis of 3D Cracks in an Arbitrary Geometry with Weld Residual Stress

Analysis of 3D Cracks in an Arbitrary Geometry with Weld Residual Stress Analyss of 3D Cracks n an Arbtrary Geometry wth Weld Resdual Stress Greg Thorwald, Ph.D. Ted L. Anderson, Ph.D. Structural Relablty Technology, Boulder, CO Abstract Materals contanng flaws lke nclusons

More information

A Parallelization Design of JavaScript Execution Engine

A Parallelization Design of JavaScript Execution Engine , pp.171-184 http://dx.do.org/10.14257/mue.2014.9.7.15 A Parallelzaton Desgn of JavaScrpt Executon Engne Duan Huca 1,2, N Hong 2, Deng Feng 2 and Hu Lnln 2 1 Natonal Network New eda Engneerng Research

More information

Loop Transformations, Dependences, and Parallelization

Loop Transformations, Dependences, and Parallelization Loop Transformatons, Dependences, and Parallelzaton Announcements Mdterm s Frday from 3-4:15 n ths room Today Semester long project Data dependence recap Parallelsm and storage tradeoff Scalar expanson

More information

GSLM Operations Research II Fall 13/14

GSLM Operations Research II Fall 13/14 GSLM 58 Operatons Research II Fall /4 6. Separable Programmng Consder a general NLP mn f(x) s.t. g j (x) b j j =. m. Defnton 6.. The NLP s a separable program f ts objectve functon and all constrants are

More information

Parallel Artificial Bee Colony Algorithm for the Traveling Salesman Problem

Parallel Artificial Bee Colony Algorithm for the Traveling Salesman Problem Parallel Artfcal Bee Colony Algorthm for the Travelng Salesman Problem Kun Xu, Mngyan Jang, Dongfeng Yuan The School of Informaton Scence and Engneerng Shandong Unversty, Jnan, 250100, Chna E-mal: xukun_sdu@163.com,

More information

Parameterization of Quadrilateral Meshes

Parameterization of Quadrilateral Meshes Parameterzaton of Quadrlateral Meshes L Lu 1, CaMng Zhang 1,, and Frank Cheng 3 1 School of Computer Scence and Technology, Shandong Unversty, Jnan, Chna Department of Computer Scence and Technology, Shandong

More information

Support Vector Machines. CS534 - Machine Learning

Support Vector Machines. CS534 - Machine Learning Support Vector Machnes CS534 - Machne Learnng Perceptron Revsted: Lnear Separators Bnar classfcaton can be veed as the task of separatng classes n feature space: b > 0 b 0 b < 0 f() sgn( b) Lnear Separators

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

Proper Choice of Data Used for the Estimation of Datum Transformation Parameters

Proper Choice of Data Used for the Estimation of Datum Transformation Parameters Proper Choce of Data Used for the Estmaton of Datum Transformaton Parameters Hakan S. KUTOGLU, Turkey Key words: Coordnate systems; transformaton; estmaton, relablty. SUMMARY Advances n technologes and

More information

Meta-heuristics for Multidimensional Knapsack Problems

Meta-heuristics for Multidimensional Knapsack Problems 2012 4th Internatonal Conference on Computer Research and Development IPCSIT vol.39 (2012) (2012) IACSIT Press, Sngapore Meta-heurstcs for Multdmensonal Knapsack Problems Zhbao Man + Computer Scence Department,

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

Hermite Splines in Lie Groups as Products of Geodesics

Hermite Splines in Lie Groups as Products of Geodesics Hermte Splnes n Le Groups as Products of Geodescs Ethan Eade Updated May 28, 2017 1 Introducton 1.1 Goal Ths document defnes a curve n the Le group G parametrzed by tme and by structural parameters n the

More information

LU Decomposition Method Jamie Trahan, Autar Kaw, Kevin Martin University of South Florida United States of America

LU Decomposition Method Jamie Trahan, Autar Kaw, Kevin Martin University of South Florida United States of America nbm_sle_sm_ludecomp.nb 1 LU Decomposton Method Jame Trahan, Autar Kaw, Kevn Martn Unverst of South Florda Unted States of Amerca aw@eng.usf.edu nbm_sle_sm_ludecomp.nb 2 Introducton When solvng multple

More information

Modeling of Fillets in Thin-walled Beams Using Shell/Plate and Beam Finite. Elements

Modeling of Fillets in Thin-walled Beams Using Shell/Plate and Beam Finite. Elements Modelng of Fllets n Thn-walled Beams Usng Shell/Plate and Beam Fnte Elements K. He Graduate Research Assstant W.D. Zhu Professor and Correspondng Author Emal: wzhu@umbc.edu; Tel: 410-455-3394 Department

More information

Routing in Degree-constrained FSO Mesh Networks

Routing in Degree-constrained FSO Mesh Networks Internatonal Journal of Hybrd Informaton Technology Vol., No., Aprl, 009 Routng n Degree-constraned FSO Mesh Networks Zpng Hu, Pramode Verma, and James Sluss Jr. School of Electrcal & Computer Engneerng

More information

CSCI 104 Sorting Algorithms. Mark Redekopp David Kempe

CSCI 104 Sorting Algorithms. Mark Redekopp David Kempe CSCI 104 Sortng Algorthms Mark Redekopp Davd Kempe Algorthm Effcency SORTING 2 Sortng If we have an unordered lst, sequental search becomes our only choce If we wll perform a lot of searches t may be benefcal

More information

Overview. Basic Setup [9] Motivation and Tasks. Modularization 2008/2/20 IMPROVED COVERAGE CONTROL USING ONLY LOCAL INFORMATION

Overview. Basic Setup [9] Motivation and Tasks. Modularization 2008/2/20 IMPROVED COVERAGE CONTROL USING ONLY LOCAL INFORMATION Overvew 2 IMPROVED COVERAGE CONTROL USING ONLY LOCAL INFORMATION Introducton Mult- Smulator MASIM Theoretcal Work and Smulaton Results Concluson Jay Wagenpfel, Adran Trachte Motvaton and Tasks Basc Setup

More information

UN MODÈLE FINI DE L'CÉlément 4D POUR PERCER UN TUNNEL G.J. Schotmeijer 1, S.J.M. van Eekelen 1

UN MODÈLE FINI DE L'CÉlément 4D POUR PERCER UN TUNNEL G.J. Schotmeijer 1, S.J.M. van Eekelen 1 A 4D FINITE ELEMENT MODEL FOR TUNNELLING UN MODÈLE FINI DE L'CÉlément 4D POUR PERCER UN TUNNEL G.J. Schotmejer 1, S.J.M. van Eekelen 1 1 GeoDelft, Delft, The Netherlands, smr@geodelft.nl ABSTRACT. Ths

More information

Genetic Tuning of Fuzzy Logic Controller for a Flexible-Link Manipulator

Genetic Tuning of Fuzzy Logic Controller for a Flexible-Link Manipulator Genetc Tunng of Fuzzy Logc Controller for a Flexble-Lnk Manpulator Lnda Zhxa Sh Mohamed B. Traba Department of Mechancal Unversty of Nevada, Las Vegas Department of Mechancal Engneerng Las Vegas, NV 89154-407

More information

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms Course Introducton Course Topcs Exams, abs, Proects A quc loo at a few algorthms 1 Advanced Data Structures and Algorthms Descrpton: We are gong to dscuss algorthm complexty analyss, algorthm desgn technques

More information

Message-Passing Algorithms for Quadratic Programming Formulations of MAP Estimation

Message-Passing Algorithms for Quadratic Programming Formulations of MAP Estimation Message-Passng Algorthms for Quadratc Programmng Formulatons of MAP Estmaton Akshat Kumar Department of Computer Scence Unversty of Massachusetts Amherst akshat@cs.umass.edu Shlomo Zlbersten Department

More information

Structural Optimization Using OPTIMIZER Program

Structural Optimization Using OPTIMIZER Program SprngerLnk - Book Chapter http://www.sprngerlnk.com/content/m28478j4372qh274/?prnt=true ق.ظ 1 of 2 2009/03/12 11:30 Book Chapter large verson Structural Optmzaton Usng OPTIMIZER Program Book III European

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

Computation of Ex-Core Detector Weighting Functions for VVER-440 Using MCNP5

Computation of Ex-Core Detector Weighting Functions for VVER-440 Using MCNP5 Computaton of Ex-Core Detector Weghtng Functons for VVER-440 Usng MCNP5 Gabrel Farkas, Jozef Lpka, Ján Haščík, Vladmír Slugeň Slovak Unversty of Technology, Faculty of Electrcal Engneerng and Informaton

More information

Heterogeneous Parallel Computing: from Clusters of Workstations to Hierarchical Hybrid Platforms

Heterogeneous Parallel Computing: from Clusters of Workstations to Hierarchical Hybrid Platforms Heterogeneous Parallel Computng: from Clusters of Workstatons to Herarchcal Hybrd Platforms A.L. Lastovetsky 1 DOI: 10.14529/jsf140304 c The Author 2014. Ths paper s publshed wth open access at SuperFr.org

More information