CPU Animation. Introduction. CPU skinning. CPUSkin Scalar:

Size: px
Start display at page:

Download "CPU Animation. Introduction. CPU skinning. CPUSkin Scalar:"

Transcription

1 CPU Aniation Introduction The iportance of real-tie character aniation has greatly increased in odern gaes. Aniating eshes ia 'skinning' can be perfored on both a general purpose CPU and a ore specialized GPU. Howeer, to distribute the workload and axiize efficiency on a processor graphics syste, skinning can be perfored on the CPU and lighting and clipping coputations can be perfored on the GPU. One of the adantages of perforing CPU skinning is that the aniated post transfored data are readily aailable for collision detection. Also ulticore and ectorization with Intel Adanced Vector Extensions (Intel AVX) can be used to iproe perforance of the skinning algorith on an AVX capable CPU. The objectie of this saple is to proide best known ethods to perfor CPU skinning on an AVX capable processor graphics syste. The saple copares perforance of linear blend skinning algorith on the CPU and GPU. There are different skinning techniques ipleented in the saple:. CPUSkin Scalar: This technique onloads the CPU and perfors character aniation by skinning the odels on the CPU.. CPUSkin AVX: This technique optiizes the onloaded CPU skinning by using Intel AVX instructions.. GPUSkin: This technique ipleents GPU character aniation by skinning the odels in the ertex shader. There is one dragon odel whose esh is skinned to perfor one of 4 aniations: naely a fly loop, a run loop, a glide loop, and a run fly run loop. The dragon odel has 4,58 ertices and each ertex is influenced by a axiu of 4 bone atrices. CPU skinning This section proides ore details on each of the CPU skinning techniques. CPUSkin Scalar: The aniated position, noral and tangent for a ertex is coputed by transforing the default bindpose position, noral and tangent for that ertex by a set of weighted atrices that influences it. The weights reflect the extent of influence each bone atrix has on the final aniated ertex. For exaple if M, M, M and M are the four bone atrices that influence ertex and W, W, W and W are the weights respectiely then, the new aniated position, noral and tangent is coputed as shown aboe. Pos, Nor and Tan are the bind-pose position, noral, and tangent for ertex.

2 aniatedpos aniatednoral aniatedtangent Pos W M Tan W Nor W Pos M M W M Nor W M Tan W M Pos W M Tan W Pos Nor W M M W M Tan W M Nor W M CPUSkin AVX The CPU skinning algorith was optiized by ipleenting three different ethods using Intel AVX as listed below and ethod which proided the best perforance was retained. This ethod is an extension of the Intel SSE ipleentation explained in (Waeren, 5).. Use Intel AVX to aniate 8 ertices at a tie.. Use Intel AVX to aniate ertices at a tie (ipleent the Intel SSE ersion on ertices at a tie). Use Intel AVX to optiize the atrix transforation and work on only ertex at a tie. The CPUSkin AVX technique uses Intel AVX to transfor the default bind pose position, noral and tangent for each ertex with the weighted su of atrices that influences the ertex. Intel AVX is used to ectorize the atrix transforation while coputing the aniated position as shown below. Siilarly the aniated noral and tangent is coputed. aniatedpos aniatedpos aniatedpos Pos Pos Pos Let WeightedMatrix W W where WeightedMatrix W WeightedMatrix M M M Pos W W W M M M W W Pos M M W W W M M M Pos W M

3 Use AVX to ectorize the atrix ultiply Let Pos Substituti ng in aniatedpos ' ' ' ' x y z and let aniatedpos x y z w ' ' ' ' x y z w x y z tp Pos WeightedMatrix x x x x y y y y z z z z tp x y x y z x y z x y z z Extract the 4 lower FPs and 4 higher ' ' ' ' x y z w x y x y x y x y z FPs and add the together z z z GPU Skinning This technique skins the odels in the ertex shader on the GPU. Each instance of the odel uses a unique set of bone transforation atrices. The set of atrices for all the instances are consolidated and sent to the GPU ia a single bonematrix dynaic buffer. The bonematrix buffer is updated each frae with the atrix inforation for each instance. The ertex buffer contains the default bind pose inforation. Eploying instancing the ertex shader uses the bind pose inforation fro the ertex buffer and the atrix inforation for each instance fro the bonematrix buffer and uniquely skins each odel instance on the GPU. Optiizations for CPU skinning There are seeral optiizations ipleented in the CPUAniation saple. Multi- threading The saple uses the task anager created by ( (Minadakis, ) for ulti-threading the CPU skinning update. The task anager is used as it abstracts and siplifies the task creation and

4 synchronization process. When ulti-threading is enabled in the saple the task anager creates a set of tasks: one task for each dragon instance in the scene. Each task is responsible for copleting the CPU skinning update for a single dragon instance in the scene. Vectorizing with Intel AVX The CPU skinning algorith is optiized by using Intel AVX copiler intrinsics. Please refer to CPU Skinning section for ore details on how the CPU skinning algorith is ectorized. Pipelining /double buffering As the skinning calculations for each frae is independent of the preious frae, the CPU skinning update can be pipelined by using double buffers. Double buffering is used so that skinning update and rendering can be perfored siultaneously. One of the buffers stores the aniation inforation for the current frae and is used by the ain thread for rendering. The other buffer stores aniation inforation for the next frae and is updated by the aniation thread. When pipelining is enabled the user can choose how often the CPU skinning update should be perfored. For exaple the user can choose to perfor CPU skinning once eery fraes. This eans one of the buffers is apped once eery fraes for skinning update and in the eantie the other buffer is used to render the scene. At the end of the fraes the application akes sure that the skinning update is coplete and swaps the two buffers so that the newly updated aniation can be used to render the scene. Saple Usage Figure shows a screenshot of the CPUAniation saple. The saple loads with 5 dragon instances, with each instance perforing one of the aniations. Use the cobo box to choose fro one of the Skinning Techniques. Use the Instances slider to ary the nuber of dragons in the scene. The axiu nuber of dragons in the scene is set to. The Enable Pipeline checkbox enables / disables the ability to use double buffering when perforing the CPU skinning update. Pipelining can be enabled only when ulti-threading is enabled in the saple. Use the Fraes CPU Skin spans slider to choose how often the CPU skinning updates should be perfored. If the Fraes CPU Skin spans slider is set to the CPU skinning update is perfored once eery fraes. When arying the Fraes CPU Skin spans slider ake sure the ertices are skinned on the CPU at least ~ ties per second. The Aniate checkbox enables / disables aniation in the scene. The Multi-Threading checkbox enables /disables Intel TBB optiizations and the Wirefrae checkbox enables / disables wirefrae fill ode in the scene.

5 Figure : Screenshot of the CPUAniation saple The total nuber of ertices skinned on the CPU/GPU, the tie taken to coplete a skinning update on the CPU and the frae tie inus the tie spent on the draw call for CPU skinning are displayed in the top left corner of the screen. Perforance The perforance for the CPUAniation saple is easured on a.ghz Intel icroarchitecture code nae Sandy Bridge-based syste which has 4 cores / 8 threads. The tie is easured in illiseconds. Skinning tie is the tie taken to coplete a single CPU skinning update for all the dragons in the scene and Frae tie is the tie taken to coplete skinning and rendering a single frae. Table shows the perforance for CPU skinning when the application is run in single threaded ode and Table shows the perforance when the application is run in ulti-threaded pipeline enabled ode with CPU skinning perfored once eery frae.

6 Skinning Technique #of dragons # of ertices Skinned CPUSkin Scalar CPU Skin AVX Skinning tie (s) Skinning tie (s) 4, , , ,45, ,79,. 5.7,95, Table : Skinning perforance in single threaded ode Skinning Technique #of dragons # of ertices Skinned CPU Skin Scalar CPU Skin AVX Skinning tie (s) Skinning tie (s) 4, , , ,45, ,79, ,95, Table : Skinning perforance in ultithreaded, pipeline enabled ode with CPU skinning perfored once eery frae Fro Table and Table we can see that for CPU Skin Scalar there is a perforance gain of 8% 5% and for CPU Skin AVX there is perforance gain of 65% % depending upon the nuber of ertices skinned on the CPU in the scene. Figure and Figure copares the perforance for single threaded and ultithreaded pipeline enabled odes for CPU Skin Scalar and CPU Skin AVX techniques respectiely. Fro Table we can see that there is a perforance gain of 9% % fro CPU Skin Scalar to CPU Skin AVX technique depending upon the nuber of ertices skinned on the CPU in the scene. Figure 4 copares the perforance of CPU Skin Scalar and CPU Skin AVX for the ultithreaded pipeline enabled ode. Table shows the frae tie for CPU and GPU skinning techniques. Frae tie for the CPU skinning techniques was easured when the saple was run in a ultithreaded pipeline enabled ode. Irrespectie of the technique, skinning was perfored once eery frae.

7 Tie in illiseconds Tie in illiseconds Skinning tie for CPU Skin Scalar (lower is better) Nuber of ertices skinned on the CPU 56.8 Single threaded Multithreaded pipeline enabled Figure : Copares skinning tie perforance of CPU Skin Scalar technique in single threaded and ultithreaded pipeline enabled ode Skinning tie for CPU Skin AVX (lower is better) Nuber of ertices skinned on the CPU Single threaded Multithreaded pipeline enabled Figure : Copares skinning tie perforance of CPU Skin AVX technique in single threaded and ultithreaded pipeline enabled odes

8 Tie in illiseconds Fro Table we can see that there is a perforance gain of 7% 6% fro GPU Skin technique to CPU Skin AVX technique depending upon the nuber of ertices skinned in the scene. Figure 5 copare the frae tie perforance for the skinning techniques Skinning tie for Scalar s. AVX (lower is better) Nuber of ertices skinned on the CPU CPUSkin Scalar Multithreaded Pipeline Enabled CPUSkin AVX Multithreaded Pipeline enabled Figure 4: Copares skinning tie perforance of CPU Skin Scalar and CPU Skin AVX techniques for ultithreaded pipeline enabled ode Skinning Technique #of dragons # of ertices Skinned CPU Skin Scalar CPU Skin AVX GPU Skin Frae tie (s) Frae tie (s) Frae tie (s) 4, , , ,45, ,79, ,95, Table : Frae tie perforance for ultithreaded pipeline enabled ode with CPU skinning perfored once eery frae

9 Tie in illiseconds Skinning Technique #of dragons # of ertices CPUSkin Scalar CPU Skin AVX Skinned Fraes CPU Frae Tie Fraes CPU Frae Tie Skin spans Skin spans 4, , , ,45, ,79, ,95, Table 4: Frae tie perforance for ultithreaded pipeline enabled ode with CPU skinning perfored once eery N fraes 9 Frae tie perforance (lower is better) Nuber of ertices skinned in the scene CPU Skin Scalar CPU Skin AVX GPU Skin Figure 5: Copares frae tie perforance for the skinning techniques Table 4 shows the tie taken to coplete a single frae in ultithreaded pipeline enabled ode when CPU skinning is perfored once eery N fraes by setting Fraes CPU Skin spans slider to a alue >.

10 Tie in illiseconds There are certain cases in which CPU skinning has to be perfored once eery frae so that there are at least ~ aniation updates per second. For such cases Table 4 has the sae alue as in Table. Fro Table and Table 4 we can see that for CPU Skin Scalar there is a perforance gain of 7% 7% and for CPU Skin AVX there is a perforance gain of % 4% depending upon the nuber of dragons in the scene. Figure 6 and Figure 7 copares the frae tie perforance when CPU skinning is perfored once eery frae and when it s perfored once eery N fraes. Frae tie for CPU Skin Scalar (lower is better) Nuber of ertices skinned on the CPU CPU Skinning perfored once eery frae CPUSkin perfored once eery 'N' fraes Figure 6: Copares perforance of CPU Skin Scalar technique when skinning in perfored once eery frae and when skinning is perfored once eery N fraes Conclusions Fro Table and Figure 6 we can see that CPU Skinning is clearly the winner as copared to GPU skinning on an IVB syste. Future Work There is an opportunity to ipleent ore optiizations for CPU skinning as listed below:

11 Tie in illiseconds Reorder the ertices so that all ertices that use the sae set of atrices for skinning are contiguous in the list. By doing so, we can aoid reloading the atrices ultiple ties. Once the Intel Adanced Vector Extensions (Intel AVX) instruction set is released, we can use fused ultiply adds in the Intel AVX optiization code. Frae tie for CPU Skin AVX (lower is better) Nuber of ertices skinned on the CPU CPU Skinning perfored once eery frae CPUSkin perfored once eery 'N' fraes Figure 7: Copares perforance of CPU Skin Scalar technique when skinning in perfored once eery frae and when skinning is perfored once eery N fraes References (9). Retrieed fro Daies, L. (, February d-gaes/). DXSDK. (, June). Skinning saple. Id Software. (9, August). Fro Texture Virtualization to Massie Parallelization. Intel Threading Building Blocks. (n.d.). Retrieed fro

12 Minadakis, Y. (, March). Using Tasking to Scale Gae Engine Systes. Waeren, J.. (5). Fast Skinning. Id. Software.

Modeling Parallel Applications Performance on Heterogeneous Systems

Modeling Parallel Applications Performance on Heterogeneous Systems Modeling Parallel Applications Perforance on Heterogeneous Systes Jaeela Al-Jaroodi, Nader Mohaed, Hong Jiang and David Swanson Departent of Coputer Science and Engineering University of Nebraska Lincoln

More information

CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS

CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS 641 CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS Marketa Zajarosova 1* *Ph.D. VSB - Technical University of Ostrava, THE CZECH REPUBLIC arketa.zajarosova@vsb.cz Abstract Custoer relationship

More information

An Innovate Dynamic Load Balancing Algorithm Based on Task

An Innovate Dynamic Load Balancing Algorithm Based on Task An Innovate Dynaic Load Balancing Algorith Based on Task Classification Hong-bin Wang,,a, Zhi-yi Fang, b, Guan-nan Qu,*,c, Xiao-dan Ren,d College of Coputer Science and Technology, Jilin University, Changchun

More information

Implementation of Active Queue Management in a Combined Input and Output Queued Switch

Implementation of Active Queue Management in a Combined Input and Output Queued Switch pleentation of Active Queue Manageent in a obined nput and Output Queued Switch Bartek Wydrowski and Moshe Zukeran AR Special Research entre for Ultra-Broadband nforation Networks, EEE Departent, The University

More information

Applying Multiple Neural Networks on Large Scale Data

Applying Multiple Neural Networks on Large Scale Data 0 International Conference on Inforation and Electronics Engineering IPCSIT vol6 (0) (0) IACSIT Press, Singapore Applying Multiple Neural Networks on Large Scale Data Kritsanatt Boonkiatpong and Sukree

More information

An Improved Decision-making Model of Human Resource Outsourcing Based on Internet Collaboration

An Improved Decision-making Model of Human Resource Outsourcing Based on Internet Collaboration International Journal of Hybrid Inforation Technology, pp. 339-350 http://dx.doi.org/10.14257/hit.2016.9.4.28 An Iproved Decision-aking Model of Huan Resource Outsourcing Based on Internet Collaboration

More information

arxiv:0805.1434v1 [math.pr] 9 May 2008

arxiv:0805.1434v1 [math.pr] 9 May 2008 Degree-distribution stability of scale-free networs Zhenting Hou, Xiangxing Kong, Dinghua Shi,2, and Guanrong Chen 3 School of Matheatics, Central South University, Changsha 40083, China 2 Departent of

More information

Dynamic Placement for Clustered Web Applications

Dynamic Placement for Clustered Web Applications Dynaic laceent for Clustered Web Applications A. Karve, T. Kibrel, G. acifici, M. Spreitzer, M. Steinder, M. Sviridenko, and A. Tantawi IBM T.J. Watson Research Center {karve,kibrel,giovanni,spreitz,steinder,sviri,tantawi}@us.ib.co

More information

CLOSED-LOOP SUPPLY CHAIN NETWORK OPTIMIZATION FOR HONG KONG CARTRIDGE RECYCLING INDUSTRY

CLOSED-LOOP SUPPLY CHAIN NETWORK OPTIMIZATION FOR HONG KONG CARTRIDGE RECYCLING INDUSTRY CLOSED-LOOP SUPPLY CHAIN NETWORK OPTIMIZATION FOR HONG KONG CARTRIDGE RECYCLING INDUSTRY Y. T. Chen Departent of Industrial and Systes Engineering Hong Kong Polytechnic University, Hong Kong yongtong.chen@connect.polyu.hk

More information

The Benefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelism

The Benefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelism The enefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelis Stijn Eyeran Lieven Eeckhout Ghent University, elgiu Stijn.Eyeran@elis.UGent.be, Lieven.Eeckhout@elis.UGent.be

More information

Markovian inventory policy with application to the paper industry

Markovian inventory policy with application to the paper industry Coputers and Cheical Engineering 26 (2002) 1399 1413 www.elsevier.co/locate/copcheeng Markovian inventory policy with application to the paper industry K. Karen Yin a, *, Hu Liu a,1, Neil E. Johnson b,2

More information

A Scalable Application Placement Controller for Enterprise Data Centers

A Scalable Application Placement Controller for Enterprise Data Centers W WWW 7 / Track: Perforance and Scalability A Scalable Application Placeent Controller for Enterprise Data Centers Chunqiang Tang, Malgorzata Steinder, Michael Spreitzer, and Giovanni Pacifici IBM T.J.

More information

Research Article Performance Evaluation of Human Resource Outsourcing in Food Processing Enterprises

Research Article Performance Evaluation of Human Resource Outsourcing in Food Processing Enterprises Advance Journal of Food Science and Technology 9(2): 964-969, 205 ISSN: 2042-4868; e-issn: 2042-4876 205 Maxwell Scientific Publication Corp. Subitted: August 0, 205 Accepted: Septeber 3, 205 Published:

More information

ASIC Design Project Management Supported by Multi Agent Simulation

ASIC Design Project Management Supported by Multi Agent Simulation ASIC Design Project Manageent Supported by Multi Agent Siulation Jana Blaschke, Christian Sebeke, Wolfgang Rosenstiel Abstract The coplexity of Application Specific Integrated Circuits (ASICs) is continuously

More information

Calculating the Return on Investment (ROI) for DMSMS Management. The Problem with Cost Avoidance

Calculating the Return on Investment (ROI) for DMSMS Management. The Problem with Cost Avoidance Calculating the Return on nvestent () for DMSMS Manageent Peter Sandborn CALCE, Departent of Mechanical Engineering (31) 45-3167 sandborn@calce.ud.edu www.ene.ud.edu/escml/obsolescence.ht October 28, 21

More information

Managing Complex Network Operation with Predictive Analytics

Managing Complex Network Operation with Predictive Analytics Managing Coplex Network Operation with Predictive Analytics Zhenyu Huang, Pak Chung Wong, Patrick Mackey, Yousu Chen, Jian Ma, Kevin Schneider, and Frank L. Greitzer Pacific Northwest National Laboratory

More information

The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic Jobs

The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic Jobs Send Orders for Reprints to reprints@benthascience.ae 206 The Open Fuels & Energy Science Journal, 2015, 8, 206-210 Open Access The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic

More information

PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO

PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO Bulletin of the Transilvania University of Braşov Series I: Engineering Sciences Vol. 4 (53) No. - 0 PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO V. CAZACU I. SZÉKELY F. SANDU 3 T. BĂLAN Abstract:

More information

A Soft Real-time Scheduling Server on the Windows NT

A Soft Real-time Scheduling Server on the Windows NT A Soft Real-tie Scheduling Server on the Windows NT Chih-han Lin, Hao-hua Chu, Klara Nahrstedt Departent of Coputer Science University of Illinois at Urbana Chapaign clin2, h-chu3, klara@cs.uiuc.edu Abstract

More information

A Multi-Core Pipelined Architecture for Parallel Computing

A Multi-Core Pipelined Architecture for Parallel Computing Parallel & Cloud Coputing PCC Vol, Iss A Multi-Core Pipelined Architecture for Parallel Coputing Duoduo Liao *1, Sion Y Berkovich Coputing for Geospatial Research Institute Departent of Coputer Science,

More information

and that of the outgoing water is mv f

and that of the outgoing water is mv f Week 6 hoework IMPORTANT NOTE ABOUT WEBASSIGN: In the WebAssign ersions of these probles, arious details hae been changed, so that the answers will coe out differently. The ethod to find the solution is

More information

Use of extrapolation to forecast the working capital in the mechanical engineering companies

Use of extrapolation to forecast the working capital in the mechanical engineering companies ECONTECHMOD. AN INTERNATIONAL QUARTERLY JOURNAL 2014. Vol. 1. No. 1. 23 28 Use of extrapolation to forecast the working capital in the echanical engineering copanies A. Cherep, Y. Shvets Departent of finance

More information

Analyzing Spatiotemporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy

Analyzing Spatiotemporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy Vol. 9, No. 5 (2016), pp.303-312 http://dx.doi.org/10.14257/ijgdc.2016.9.5.26 Analyzing Spatioteporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy Chen Yang, Renjie Zhou

More information

Machine Learning Applications in Grid Computing

Machine Learning Applications in Grid Computing Machine Learning Applications in Grid Coputing George Cybenko, Guofei Jiang and Daniel Bilar Thayer School of Engineering Dartouth College Hanover, NH 03755, USA gvc@dartouth.edu, guofei.jiang@dartouth.edu

More information

How To Balance Over Redundant Wireless Sensor Networks Based On Diffluent

How To Balance Over Redundant Wireless Sensor Networks Based On Diffluent Load balancing over redundant wireless sensor networks based on diffluent Abstract Xikui Gao Yan ai Yun Ju School of Control and Coputer Engineering North China Electric ower University 02206 China Received

More information

Online Bagging and Boosting

Online Bagging and Boosting Abstract Bagging and boosting are two of the ost well-known enseble learning ethods due to their theoretical perforance guarantees and strong experiental results. However, these algoriths have been used

More information

RECURSIVE DYNAMIC PROGRAMMING: HEURISTIC RULES, BOUNDING AND STATE SPACE REDUCTION. Henrik Kure

RECURSIVE DYNAMIC PROGRAMMING: HEURISTIC RULES, BOUNDING AND STATE SPACE REDUCTION. Henrik Kure RECURSIVE DYNAMIC PROGRAMMING: HEURISTIC RULES, BOUNDING AND STATE SPACE REDUCTION Henrik Kure Dina, Danish Inforatics Network In the Agricultural Sciences Royal Veterinary and Agricultural University

More information

Analyzing Methods Study of Outer Loop Current Sharing Control for Paralleled DC/DC Converters

Analyzing Methods Study of Outer Loop Current Sharing Control for Paralleled DC/DC Converters Analyzing Methods Study of Outer Loop Current Sharing Control for Paralleled DC/DC Conerters Yang Qiu, Ming Xu, Jinjun Liu, and Fred C. Lee Center for Power Electroni Systes The Bradley Departent of Electrical

More information

Introduction to the Microsoft Sync Framework. Michael Clark Development Manager Microsoft

Introduction to the Microsoft Sync Framework. Michael Clark Development Manager Microsoft Introduction to the Michael Clark Developent Manager Microsoft Agenda Why Is Sync both Interesting and Hard Sync Fraework Overview Using the Sync Fraework Future Directions Suary Why Is Sync Iportant Coputing

More information

Real Time Target Tracking with Binary Sensor Networks and Parallel Computing

Real Time Target Tracking with Binary Sensor Networks and Parallel Computing Real Tie Target Tracking with Binary Sensor Networks and Parallel Coputing Hong Lin, John Rushing, Sara J. Graves, Steve Tanner, and Evans Criswell Abstract A parallel real tie data fusion and target tracking

More information

INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE SYSTEMS

INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE SYSTEMS Artificial Intelligence Methods and Techniques for Business and Engineering Applications 210 INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE

More information

Lecture L9 - Linear Impulse and Momentum. Collisions

Lecture L9 - Linear Impulse and Momentum. Collisions J. Peraire, S. Widnall 16.07 Dynaics Fall 009 Version.0 Lecture L9 - Linear Ipulse and Moentu. Collisions In this lecture, we will consider the equations that result fro integrating Newton s second law,

More information

Exploiting Hardware Heterogeneity within the Same Instance Type of Amazon EC2

Exploiting Hardware Heterogeneity within the Same Instance Type of Amazon EC2 Exploiting Hardware Heterogeneity within the Sae Instance Type of Aazon EC2 Zhonghong Ou, Hao Zhuang, Jukka K. Nurinen, Antti Ylä-Jääski, Pan Hui Aalto University, Finland; Deutsch Teleko Laboratories,

More information

Image restoration for a rectangular poor-pixels detector

Image restoration for a rectangular poor-pixels detector Iage restoration for a rectangular poor-pixels detector Pengcheng Wen 1, Xiangjun Wang 1, Hong Wei 2 1 State Key Laboratory of Precision Measuring Technology and Instruents, Tianjin University, China 2

More information

A quantum secret ballot. Abstract

A quantum secret ballot. Abstract A quantu secret ballot Shahar Dolev and Itaar Pitowsky The Edelstein Center, Levi Building, The Hebrerw University, Givat Ra, Jerusale, Israel Boaz Tair arxiv:quant-ph/060087v 8 Mar 006 Departent of Philosophy

More information

Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona Network

Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona Network 2013 European Control Conference (ECC) July 17-19, 2013, Zürich, Switzerland. Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona

More information

This paper studies a rental firm that offers reusable products to price- and quality-of-service sensitive

This paper studies a rental firm that offers reusable products to price- and quality-of-service sensitive MANUFACTURING & SERVICE OPERATIONS MANAGEMENT Vol., No. 3, Suer 28, pp. 429 447 issn 523-464 eissn 526-5498 8 3 429 infors doi.287/so.7.8 28 INFORMS INFORMS holds copyright to this article and distributed

More information

An Optimal Task Allocation Model for System Cost Analysis in Heterogeneous Distributed Computing Systems: A Heuristic Approach

An Optimal Task Allocation Model for System Cost Analysis in Heterogeneous Distributed Computing Systems: A Heuristic Approach An Optial Tas Allocation Model for Syste Cost Analysis in Heterogeneous Distributed Coputing Systes: A Heuristic Approach P. K. Yadav Central Building Research Institute, Rooree- 247667, Uttarahand (INDIA)

More information

SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS

SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS WHITE PAPER SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS Quanti Solutions. Advancing HIM through Innovation HEALTHCARE SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS Quanti Solutions. Advancing HIM through Innovation

More information

Fuzzy Sets in HR Management

Fuzzy Sets in HR Management Acta Polytechnica Hungarica Vol. 8, No. 3, 2011 Fuzzy Sets in HR Manageent Blanka Zeková AXIOM SW, s.r.o., 760 01 Zlín, Czech Republic blanka.zekova@sezna.cz Jana Talašová Faculty of Science, Palacký Univerzity,

More information

Calculation Method for evaluating Solar Assisted Heat Pump Systems in SAP 2009. 15 July 2013

Calculation Method for evaluating Solar Assisted Heat Pump Systems in SAP 2009. 15 July 2013 Calculation Method for evaluating Solar Assisted Heat Pup Systes in SAP 2009 15 July 2013 Page 1 of 17 1 Introduction This docuent describes how Solar Assisted Heat Pup Systes are recognised in the National

More information

Fuzzy Evaluation on Network Security Based on the New Algorithm of Membership Degree Transformation M(1,2,3)

Fuzzy Evaluation on Network Security Based on the New Algorithm of Membership Degree Transformation M(1,2,3) 324 JOURNAL OF NETWORKS, VOL. 4, NO. 5, JULY 29 Fuzzy Evaluation on Networ Security Based on the New Algorith of Mebership Degree Transforation M(,2,3) Hua Jiang School of Econoics and Manageent, Hebei

More information

Standards and Protocols for the Collection and Dissemination of Graduating Student Initial Career Outcomes Information For Undergraduates

Standards and Protocols for the Collection and Dissemination of Graduating Student Initial Career Outcomes Information For Undergraduates National Association of Colleges and Eployers Standards and Protocols for the Collection and Disseination of Graduating Student Initial Career Outcoes Inforation For Undergraduates Developed by the NACE

More information

Method of supply chain optimization in E-commerce

Method of supply chain optimization in E-commerce MPRA Munich Personal RePEc Archive Method of supply chain optiization in E-coerce Petr Suchánek and Robert Bucki Silesian University - School of Business Adinistration, The College of Inforatics and Manageent

More information

The individual neurons are complicated. They have a myriad of parts, subsystems and control mechanisms. They convey information via a host of

The individual neurons are complicated. They have a myriad of parts, subsystems and control mechanisms. They convey information via a host of CHAPTER 4 ARTIFICIAL NEURAL NETWORKS 4. INTRODUCTION Artificial Neural Networks (ANNs) are relatively crude electronic odels based on the neural structure of the brain. The brain learns fro experience.

More information

Energy Proportionality for Disk Storage Using Replication

Energy Proportionality for Disk Storage Using Replication Energy Proportionality for Disk Storage Using Replication Jinoh Ki and Doron Rote Lawrence Berkeley National Laboratory University of California, Berkeley, CA 94720 {jinohki,d rote}@lbl.gov Abstract Energy

More information

Resource Allocation in Wireless Networks with Multiple Relays

Resource Allocation in Wireless Networks with Multiple Relays Resource Allocation in Wireless Networks with Multiple Relays Kağan Bakanoğlu, Stefano Toasin, Elza Erkip Departent of Electrical and Coputer Engineering, Polytechnic Institute of NYU, Brooklyn, NY, 0

More information

Factored Models for Probabilistic Modal Logic

Factored Models for Probabilistic Modal Logic Proceedings of the Twenty-Third AAAI Conference on Artificial Intelligence (2008 Factored Models for Probabilistic Modal Logic Afsaneh Shirazi and Eyal Air Coputer Science Departent, University of Illinois

More information

Efficient Key Management for Secure Group Communications with Bursty Behavior

Efficient Key Management for Secure Group Communications with Bursty Behavior Efficient Key Manageent for Secure Group Counications with Bursty Behavior Xukai Zou, Byrav Raaurthy Departent of Coputer Science and Engineering University of Nebraska-Lincoln Lincoln, NE68588, USA Eail:

More information

Media Adaptation Framework in Biofeedback System for Stroke Patient Rehabilitation

Media Adaptation Framework in Biofeedback System for Stroke Patient Rehabilitation Media Adaptation Fraework in Biofeedback Syste for Stroke Patient Rehabilitation Yinpeng Chen, Weiwei Xu, Hari Sundara, Thanassis Rikakis, Sheng-Min Liu Arts, Media and Engineering Progra Arizona State

More information

On the Mutual Coefficient of Restitution in Two Car Collinear Collisions

On the Mutual Coefficient of Restitution in Two Car Collinear Collisions //006 On the Mutual Coefficient of Restitution in Two Car Collinear Collisions Milan Batista Uniersity of Ljubljana, Faculty of Maritie Studies and Transportation Pot poorscako 4, Sloenia, EU ilan.batista@fpp.edu

More information

Intelligent Paging Strategy for Multi-Carrier CDMA System

Intelligent Paging Strategy for Multi-Carrier CDMA System IJSI International Journal of oputer Science Issues, Vol. 8, Issue, No, Noveber ISSN (Online): 9-8 www.ijsi.org Intelligent Paging Strategy for Multi-arrier DMA Syste Sheikh Shanawaz Mostafa, Khondker

More information

Computers and Mathematics with Applications. The evaluation of barrier option prices under stochastic volatility

Computers and Mathematics with Applications. The evaluation of barrier option prices under stochastic volatility Coputers and Matheatics with Applications 64 () 34 48 Contents lists aailable at SciVerse ScienceDirect Coputers and Matheatics with Applications journal hoepage: www.elseier.co/locate/cawa The ealuation

More information

Optimal Resource-Constraint Project Scheduling with Overlapping Modes

Optimal Resource-Constraint Project Scheduling with Overlapping Modes Optial Resource-Constraint Proect Scheduling with Overlapping Modes François Berthaut Lucas Grèze Robert Pellerin Nathalie Perrier Adnène Hai February 20 CIRRELT-20-09 Bureaux de Montréal : Bureaux de

More information

2. FINDING A SOLUTION

2. FINDING A SOLUTION The 7 th Balan Conference on Operational Research BACOR 5 Constanta, May 5, Roania OPTIMAL TIME AND SPACE COMPLEXITY ALGORITHM FOR CONSTRUCTION OF ALL BINARY TREES FROM PRE-ORDER AND POST-ORDER TRAVERSALS

More information

An Integrated Approach for Monitoring Service Level Parameters of Software-Defined Networking

An Integrated Approach for Monitoring Service Level Parameters of Software-Defined Networking International Journal of Future Generation Counication and Networking Vol. 8, No. 6 (15), pp. 197-4 http://d.doi.org/1.1457/ijfgcn.15.8.6.19 An Integrated Approach for Monitoring Service Level Paraeters

More information

Option B: Credit Card Processing

Option B: Credit Card Processing Attachent B Option B: Credit Card Processing Request for Proposal Nuber 4404 Z1 Bidders are required coplete all fors provided in this attachent if bidding on Option B: Credit Card Processing. Note: If

More information

Evaluating Inventory Management Performance: a Preliminary Desk-Simulation Study Based on IOC Model

Evaluating Inventory Management Performance: a Preliminary Desk-Simulation Study Based on IOC Model Evaluating Inventory Manageent Perforance: a Preliinary Desk-Siulation Study Based on IOC Model Flora Bernardel, Roberto Panizzolo, and Davide Martinazzo Abstract The focus of this study is on preliinary

More information

Searching strategy for multi-target discovery in wireless networks

Searching strategy for multi-target discovery in wireless networks Searching strategy for ulti-target discovery in wireless networks Zhao Cheng, Wendi B. Heinzelan Departent of Electrical and Coputer Engineering University of Rochester Rochester, NY 467 (585) 75-{878,

More information

Research on Risk Assessment of PFI Projects Based on Grid-fuzzy Borda Number

Research on Risk Assessment of PFI Projects Based on Grid-fuzzy Borda Number Researc on Risk Assessent of PFI Projects Based on Grid-fuzzy Borda Nuber LI Hailing 1, SHI Bensan 2 1. Scool of Arcitecture and Civil Engineering, Xiua University, Cina, 610039 2. Scool of Econoics and

More information

How To Attract Ore Traffic On A Network With A Daoi (Orca) On A Gpa Network

How To Attract Ore Traffic On A Network With A Daoi (Orca) On A Gpa Network How Secure are Secure Interdoain Routing Protocols? Sharon Goldberg Microsoft Research Michael Schapira Yale & UC Berkeley Peter Huon AT&T Labs Jennifer Rexford Princeton ABSTRACT In response to high-profile

More information

1 Adaptive Control. 1.1 Indirect case:

1 Adaptive Control. 1.1 Indirect case: Adative Control Adative control is the attet to redesign the controller while online, by looking at its erforance and changing its dynaic in an autoatic way. Adative control is that feedback law that looks

More information

Construction Economics & Finance. Module 3 Lecture-1

Construction Economics & Finance. Module 3 Lecture-1 Depreciation:- Construction Econoics & Finance Module 3 Lecture- It represents the reduction in arket value of an asset due to age, wear and tear and obsolescence. The physical deterioration of the asset

More information

A Study on the Chain Restaurants Dynamic Negotiation Games of the Optimization of Joint Procurement of Food Materials

A Study on the Chain Restaurants Dynamic Negotiation Games of the Optimization of Joint Procurement of Food Materials International Journal of Coputer Science & Inforation Technology (IJCSIT) Vol 6, No 1, February 2014 A Study on the Chain estaurants Dynaic Negotiation aes of the Optiization of Joint Procureent of Food

More information

A Hybrid Grey-Game-MCDM Method for ERP Selecting Based on BSC. M. H. Kamfiroozi, 2 A. BonyadiNaeini

A Hybrid Grey-Game-MCDM Method for ERP Selecting Based on BSC. M. H. Kamfiroozi, 2 A. BonyadiNaeini Int. J. Manag. Bus. Res., 3 (1), 13-20, Winter 2013 IAU A Hybrid Grey-Gae-MCDM Method for ERP Selecting Based on BSC 1 M. H. Kafiroozi, 2 A. BonyadiNaeini 1,2 Departent of Industrial Engineering, Iran

More information

Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and migration algorithms

Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and migration algorithms Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and igration algoriths Chaia Ghribi, Makhlouf Hadji and Djaal Zeghlache Institut Mines-Téléco, Téléco SudParis UMR CNRS 5157 9, Rue

More information

IMPLEMENTING VIRTUAL DESIGN AND CONSTRUCTION (VDC) IN VEIDEKKE USING SIMPLE METRICS TO IMPROVE THE DESIGN MANAGEMENT PROCESS.

IMPLEMENTING VIRTUAL DESIGN AND CONSTRUCTION (VDC) IN VEIDEKKE USING SIMPLE METRICS TO IMPROVE THE DESIGN MANAGEMENT PROCESS. Ipleenting Virtual Design and Construction (VDC) in Veidekke Using Siple Metrics to Iprove IMPLEMENTING VIRTUAL DESIGN AND CONSTRUCTION (VDC) IN VEIDEKKE USING SIMPLE METRICS TO IMPROVE THE DESIGN MANAGEMENT

More information

Partitioning Data on Features or Samples in Communication-Efficient Distributed Optimization?

Partitioning Data on Features or Samples in Communication-Efficient Distributed Optimization? Partitioning Data on Features or Saples in Counication-Efficient Distributed Optiization? Chenxin Ma Industrial and Systes Engineering Lehigh University, USA ch54@lehigh.edu Martin Taáč Industrial and

More information

Real-Time Camera Tracking and 3D Reconstruction Using Signed Distance Functions

Real-Time Camera Tracking and 3D Reconstruction Using Signed Distance Functions Real-Tie Caera Tracking and 3D Reconstruction Using Signed Distance Functions Erik Bylow, Jürgen Stur, Christian Kerl, Fredrik Kahl and Daniel Creers Center for Matheatical Sciences, Lund University, Lund,

More information

High Performance Chinese/English Mixed OCR with Character Level Language Identification

High Performance Chinese/English Mixed OCR with Character Level Language Identification 2009 0th International Conference on Docuent Analysis and Recognition High Perforance Chinese/English Mixed OCR with Character Level Language Identification Kai Wang Institute of Machine Intelligence,

More information

AN ALGORITHM FOR REDUCING THE DIMENSION AND SIZE OF A SAMPLE FOR DATA EXPLORATION PROCEDURES

AN ALGORITHM FOR REDUCING THE DIMENSION AND SIZE OF A SAMPLE FOR DATA EXPLORATION PROCEDURES Int. J. Appl. Math. Coput. Sci., 2014, Vol. 24, No. 1, 133 149 DOI: 10.2478/acs-2014-0011 AN ALGORITHM FOR REDUCING THE DIMENSION AND SIZE OF A SAMPLE FOR DATA EXPLORATION PROCEDURES PIOTR KULCZYCKI,,

More information

Workflow Management in Cloud Computing

Workflow Management in Cloud Computing Workflow Manageent in Cloud Coputing Monika Bharti M.E. student Coputer Science and Engineering Departent Thapar University, Patiala Anju Bala Assistant Professor Coputer Science and Engineering Departent

More information

The Application of Bandwidth Optimization Technique in SLA Negotiation Process

The Application of Bandwidth Optimization Technique in SLA Negotiation Process The Application of Bandwidth Optiization Technique in SLA egotiation Process Srecko Krile University of Dubrovnik Departent of Electrical Engineering and Coputing Cira Carica 4, 20000 Dubrovnik, Croatia

More information

ADJUSTING FOR QUALITY CHANGE

ADJUSTING FOR QUALITY CHANGE ADJUSTING FOR QUALITY CHANGE 7 Introduction 7.1 The easureent of changes in the level of consuer prices is coplicated by the appearance and disappearance of new and old goods and services, as well as changes

More information

The Velocities of Gas Molecules

The Velocities of Gas Molecules he Velocities of Gas Molecules by Flick Colean Departent of Cheistry Wellesley College Wellesley MA 8 Copyright Flick Colean 996 All rights reserved You are welcoe to use this docuent in your own classes

More information

Performance Evaluation of Machine Learning Techniques using Software Cost Drivers

Performance Evaluation of Machine Learning Techniques using Software Cost Drivers Perforance Evaluation of Machine Learning Techniques using Software Cost Drivers Manas Gaur Departent of Coputer Engineering, Delhi Technological University Delhi, India ABSTRACT There is a treendous rise

More information

6. Time (or Space) Series Analysis

6. Time (or Space) Series Analysis ATM 55 otes: Tie Series Analysis - Section 6a Page 8 6. Tie (or Space) Series Analysis In this chapter we will consider soe coon aspects of tie series analysis including autocorrelation, statistical prediction,

More information

Modeling Nurse Scheduling Problem Using 0-1 Goal Programming: A Case Study Of Tafo Government Hospital, Kumasi-Ghana

Modeling Nurse Scheduling Problem Using 0-1 Goal Programming: A Case Study Of Tafo Government Hospital, Kumasi-Ghana Modeling Nurse Scheduling Proble Using 0-1 Goal Prograing: A Case Study Of Tafo Governent Hospital, Kuasi-Ghana Wallace Agyei, Willia Obeng-Denteh, Eanuel A. Andaa Abstract: The proble of scheduling nurses

More information

Package termstrc. February 20, 2015

Package termstrc. February 20, 2015 Type Package Title Zero-coupon Yield Curve Estiation Version 1.3.7 Date 2013-11-03 Author Robert Ferstl, Josef Hayden Package terstrc February 20, 2015 Maintainer Josef Hayden The

More information

Cooperative Caching for Adaptive Bit Rate Streaming in Content Delivery Networks

Cooperative Caching for Adaptive Bit Rate Streaming in Content Delivery Networks Cooperative Caching for Adaptive Bit Rate Streaing in Content Delivery Networs Phuong Luu Vo Departent of Coputer Science and Engineering, International University - VNUHCM, Vietna vtlphuong@hciu.edu.vn

More information

Impact of Processing Costs on Service Chain Placement in Network Functions Virtualization

Impact of Processing Costs on Service Chain Placement in Network Functions Virtualization Ipact of Processing Costs on Service Chain Placeent in Network Functions Virtualization Marco Savi, Massio Tornatore, Giacoo Verticale Dipartiento di Elettronica, Inforazione e Bioingegneria, Politecnico

More information

Considerations on Distributed Load Balancing for Fully Heterogeneous Machines: Two Particular Cases

Considerations on Distributed Load Balancing for Fully Heterogeneous Machines: Two Particular Cases Considerations on Distributed Load Balancing for Fully Heterogeneous Machines: Two Particular Cases Nathanaël Cheriere Departent of Coputer Science ENS Rennes Rennes, France nathanael.cheriere@ens-rennes.fr

More information

COMBINING CRASH RECORDER AND PAIRED COMPARISON TECHNIQUE: INJURY RISK FUNCTIONS IN FRONTAL AND REAR IMPACTS WITH SPECIAL REFERENCE TO NECK INJURIES

COMBINING CRASH RECORDER AND PAIRED COMPARISON TECHNIQUE: INJURY RISK FUNCTIONS IN FRONTAL AND REAR IMPACTS WITH SPECIAL REFERENCE TO NECK INJURIES COMBINING CRASH RECORDER AND AIRED COMARISON TECHNIQUE: INJURY RISK FUNCTIONS IN FRONTAL AND REAR IMACTS WITH SECIAL REFERENCE TO NECK INJURIES Anders Kullgren, Maria Krafft Folksa Research, 66 Stockhol,

More information

Modeling operational risk data reported above a time-varying threshold

Modeling operational risk data reported above a time-varying threshold Modeling operational risk data reported above a tie-varying threshold Pavel V. Shevchenko CSIRO Matheatical and Inforation Sciences, Sydney, Locked bag 7, North Ryde, NSW, 670, Australia. e-ail: Pavel.Shevchenko@csiro.au

More information

The AGA Evaluating Model of Customer Loyalty Based on E-commerce Environment

The AGA Evaluating Model of Customer Loyalty Based on E-commerce Environment 6 JOURNAL OF SOFTWARE, VOL. 4, NO. 3, MAY 009 The AGA Evaluating Model of Custoer Loyalty Based on E-coerce Environent Shaoei Yang Econoics and Manageent Departent, North China Electric Power University,

More information

Online Community Detection for Large Complex Networks

Online Community Detection for Large Complex Networks Proceedings of the Twenty-Third International Joint Conference on Artificial Intelligence Online Counity Detection for Large Coplex Networks Wangsheng Zhang, Gang Pan, Zhaohui Wu, Shijian Li Departent

More information

Adaptive Modulation and Coding for Unmanned Aerial Vehicle (UAV) Radio Channel

Adaptive Modulation and Coding for Unmanned Aerial Vehicle (UAV) Radio Channel Recent Advances in Counications Adaptive odulation and Coding for Unanned Aerial Vehicle (UAV) Radio Channel Airhossein Fereidountabar,Gian Carlo Cardarilli, Rocco Fazzolari,Luca Di Nunzio Abstract In

More information

Airline Yield Management with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN

Airline Yield Management with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN Airline Yield Manageent with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN Integral Developent Corporation, 301 University Avenue, Suite 200, Palo Alto, California 94301 SHALER STIDHAM

More information

Gaussian Processes for Regression: A Quick Introduction

Gaussian Processes for Regression: A Quick Introduction Gaussian Processes for Regression A Quick Introduction M Ebden, August 28 Coents to arkebden@engoacuk MOTIVATION Figure illustrates a typical eaple of a prediction proble given soe noisy observations of

More information

New for 2016! Get Licensed

New for 2016! Get Licensed Financial Manageent 2016 HS There s only one place you need to go for all your professional developent needs. The Power to Know. NEW Experience a different school of learning! New for 2016! Online courses

More information

PREDICTION OF MILKLINE FILL AND TRANSITION FROM STRATIFIED TO SLUG FLOW

PREDICTION OF MILKLINE FILL AND TRANSITION FROM STRATIFIED TO SLUG FLOW PREDICTION OF MILKLINE FILL AND TRANSITION FROM STRATIFIED TO SLUG FLOW ABSTRACT: by Douglas J. Reineann, Ph.D. Assistant Professor of Agricultural Engineering and Graee A. Mein, Ph.D. Visiting Professor

More information

Preference-based Search and Multi-criteria Optimization

Preference-based Search and Multi-criteria Optimization Fro: AAAI-02 Proceedings. Copyright 2002, AAAI (www.aaai.org). All rights reserved. Preference-based Search and Multi-criteria Optiization Ulrich Junker ILOG 1681, route des Dolines F-06560 Valbonne ujunker@ilog.fr

More information

IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1. Secure Wireless Multicast for Delay-Sensitive Data via Network Coding

IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1. Secure Wireless Multicast for Delay-Sensitive Data via Network Coding IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1 Secure Wireless Multicast for Delay-Sensitive Data via Network Coding Tuan T. Tran, Meber, IEEE, Hongxiang Li, Senior Meber, IEEE,

More information

Design of Model Reference Self Tuning Mechanism for PID like Fuzzy Controller

Design of Model Reference Self Tuning Mechanism for PID like Fuzzy Controller Research Article International Journal of Current Engineering and Technology EISSN 77 46, PISSN 347 56 4 INPRESSCO, All Rights Reserved Available at http://inpressco.co/category/ijcet Design of Model Reference

More information

An online sulfur monitoring system can improve process balance sheets

An online sulfur monitoring system can improve process balance sheets Originally appeared in: February 2007, pgs 109-116. Used with perission. An online sulfur onitoring syste can iprove process balance sheets A Canadian gas processor used this technology to eet environental

More information

GLOBAL LOCALIZATION USING DEAD-RECKONING AND KINECT SENSORS FOR ROBOTS WITH OMNIDIRECTIONAL MECANUM WHEELS

GLOBAL LOCALIZATION USING DEAD-RECKONING AND KINECT SENSORS FOR ROBOTS WITH OMNIDIRECTIONAL MECANUM WHEELS Journal of Marine Science and Technology, Vol., No. 3, pp. 3-33 (4) 3 DOI:.69/JMST-3-99-4 GOBA OCAIZATION USING DEAD-RECKONING AND KINECT SENSORS FOR ROBOTS WITH OMNIDIRECTIONA MECANUM WHEES Ching-Chih

More information

IBM Unica Marketing Operations and Campaign Version 8 Release 6 May 25, 2012. Integration Guide

IBM Unica Marketing Operations and Campaign Version 8 Release 6 May 25, 2012. Integration Guide IBM Unica Marketing Operations and Campaign Version 8 Release 6 May 25, 2012 Integration Guide Note Before using this information and the product it supports, read the information in Notices on page 51.

More information

Exercise 4 INVESTIGATION OF THE ONE-DEGREE-OF-FREEDOM SYSTEM

Exercise 4 INVESTIGATION OF THE ONE-DEGREE-OF-FREEDOM SYSTEM Eercise 4 IVESTIGATIO OF THE OE-DEGREE-OF-FREEDOM SYSTEM 1. Ai of the eercise Identification of paraeters of the euation describing a one-degree-of- freedo (1 DOF) atheatical odel of the real vibrating

More information

Partitioned Elias-Fano Indexes

Partitioned Elias-Fano Indexes Partitioned Elias-ano Indexes Giuseppe Ottaviano ISTI-CNR, Pisa giuseppe.ottaviano@isti.cnr.it Rossano Venturini Dept. of Coputer Science, University of Pisa rossano@di.unipi.it ABSTRACT The Elias-ano

More information

Introduction to Unit Conversion: the SI

Introduction to Unit Conversion: the SI The Matheatics 11 Copetency Test Introduction to Unit Conversion: the SI In this the next docuent in this series is presented illustrated an effective reliable approach to carryin out unit conversions

More information