Decompression Method For Massive Compressed Files In Mobile Rich Media Applications

Size: px
Start display at page:

Download "Decompression Method For Massive Compressed Files In Mobile Rich Media Applications"

Transcription

1 th IEEE International Conference on Computer and Information Technology (CIT 2010) Decompression Method For Massive Compressed Files In Mobile Rich Media Applications Houchen Li, Zhijie Qiu, Lei Luo School of Computer Science and Engineering, University of Electronic Science and Technology of China, Chengdu Abstract Aiming at the characteristics of mobile terminal equipments, the program of decompressing massive compressed files in mobile rich media applications is investigated in this paper. Firstly, the demand for decompressing is analyzed according to the demand for rich media applications and the special requirements of mobile terminals, so as to design rational decompression program. And then, the optimization of the decompression flow of open source project LiteUnzip, which is to adapt to the characteristics of various mobile platforms, improve the disadvantage of long execution time for single times process, improve decompression efficiency, and renovate LiteUnzip into a high-efficiency decompression program that can be suitable for mobile terminals, is described. Finally, the specific implementation of decompressing massive compressed files in rich media application programs in mobile terminals is achieved. Keywords decompress, interactive application, mobile terminals, massive compressed files, rich media applications, user experience 1. Introduction With the popularity of intelligent cell phone, and the coming of 3G and super 3G age, as well as the promotion by various aspects of the industrial chain, mobile internet is no longer limited to such applications as image, ring, news, and information on WAP, blog, search, and communities have already extended to the mobile internet, and people will experience services such as games, music, video, animation, position service, and business affairs anytime and anywhere[1]. It is obviously that the contents of mobile internet are becoming massive while the application of mobile rich media is one of the most typical service and expression means for massive data on mobile internet. Rich media is different from traditional media and it combines multimedia objects such as graph, image, animation, and audio and video organically in time/space and provides rich expression means and interaction ability [2]. It is mainly characterized in generating dynamic actions based on time or user interaction[3]. Compression and decompression technology will surely be widely applied in the application of mobile rich media to satisfy the demands for transmission and processing of massive multimedia objects. However, embedded equipments such as intelligent cell phone, have limited processing capacity, and the system platforms of such mobile terminals are of many varieties and different system platforms have different characteristics. Compression and decompression method suitable for different system platforms of mobile terminals is a necessity for mobile internet which is now enjoying fast development. Since decompression of compressed files is on the contrary to compression of files, and the application program of mobile rich media, as the client terminal in application of mobile internet, generally has greater demand for decompression than that for compression. Therefore, this paper emphasizes the research on and implementation of decompression program for massive compressed files. The compression program frame can be obtained by making corresponding reverse processing to the following decompression programs[4], for whose details will not be mentioned in this paper. 2. Requirements analysis of decompression 2.1 Analysis of decompression requirements according to the characteristics of mobile terminal platform The mobile terminal platform is not only characterized in poor hardware performance, its embedded operating systems are also diverse and differ /10 $ IEEE DOI /CIT

2 from each other greatly. The unique characteristics of various mobile terminal system platforms have special requirements for decompression of massive compressed files, such as: 1. Symbian OS: although Symbian OS supports multithread in the process, it does not encourage multithread actually but to avoid multithread as far as possible and use an event driven collaborative multitasking model active object instead[5]. One of the reasons is that running of multiple threads may cause the system to come to a stop due to context switching[6]. Besides, the scheduling switch between threads also requires additional overhead of the system. Although the active object stimulates multiple threads in a process, it can only be executed under single thread. For the rich media application program, including graphic user interface[7], the operation in each active object must be completed quickly, otherwise UI events will be blocked and thus to affect user s experience. Therefore, to realize the decompression of massive compressed files in Symbian platform, it is better not to use new thread to accomplish the decompression and not to affect the response to user s operation in the meantime. 2. Brew platform: brew platform supports multithread, but its threads are non-preemptive, and currently running thread must give up its execution right actively, namely present thread should suspend itself actively so as to schedule other threads[8]. Therefore, the thread responsible for decompression should suspend its own thread after completing a segment of decompression flow so as to enable the scheduling of other threads and provide fast response to user s operation[9]. Therefore, the decompression program that can adapt to the diverse characteristics of mobile terminal platform should be able to complete the decompression operation without long blocking other emergency services even not use multithreading technology. So, it requires that the decompression flow can be rationally divided into several smaller program processing procedures. 2.2 Analysis of decompression requirements according to decompression efficiency For compressed file with massive data, the application program will first inspect a certain file (such as a certificate and configuration file, etc.) in the compressed file and then decide whether to obtain other files in the compressed file or to decompress some of the files in the compressed file instead of decompressing all of them according to the inspection results. To support decompression of partial files, it requires that any designated file in the compressed file can be decompressed. To decompress designated files requires traversing the entrance information of all the files in the compressed file and matching each information so as to determine whether the designated file is in the compressed file or not and obtain entrance information of the designated file. Obtaining related information (including entrance information of the file and file name, etc.) of the file can be independent from obtaining data of the file, namely the operation of file decompression data is unnecessary to follow the operation of obtaining entrance information of the file, so that decompression can use the previously obtained and buffered entrance information of the file to avoid repeated entrance information obtaining of the same file which exists in the decompression function library of open source project LiteUnzip[10]. 2.3 Outline of decompression requirements in mobile rich media applications According to the above analysis, the decompression function in the rich media application program of the mobile terminal platform can satisfy the following demands: 1. Decompression flow must be able to be divided into several smaller program processing procedures rationally; 2. Any designated file in the compressed file can be decompressed separately; 3. Related information of each file in the compressed file can be traversed easily; 4. Obtaining related information of the file is independent from obtaining file data. 3. Design of decompression solution Single operation of obtaining data from the compressed file may obtain related information of the file or obtain file data and decompress such data, and both of the processes include file data reading flow and data analyzing and processing flow and both of them are relatively time-consuming. The decompression program is mainly described by the processing means of the two processes. 3.1 Obtaining related information of files To support obtaining related information of a designated file, related information of the file can be obtained by two means: 1. Obtain related information through the index value of the file in the compressed file (if the number of files 2067

3 in the compressed file is n, the range of index value is 0 ~ n-1), and the program flow is as below: Fig 1. Flow of obtaining related information of a file through index value 1 Whether there is related information of the designated file in the program buffer or not; 2Search the location of related information of the designated file in the compressed file from current file information visiting location (original file information visiting location of the program is the location of related information of the first file) in single direction, and if current file information visiting location is after the location of related information of the file to be visited, the searching will be started from the location of related information of the first file until the description information of the designated file is visited; 3 Read the data containing related information of the file from the compressed file; 4 Analyze such data, construct entrance information of the file (which is required for decompressing data of the file, including initial value of crc32 accumulated checksum, time of creation and modification of the file, etc.), and obtain other information such as file name, so as to obtain related information of the file with designated index value. In the meantime, the program will storage related information of the file into program buffer for use when necessary. 2. Obtain related information of the designated file through file name, and the program flow is as below: Fig 2. Flow of obtaining related information of a file through file name 1 If it is the first time to enter the traversal process, the index value of current file is set to be 0; if the index value of current file is greater than or equal to the total number of files in the compressed file less 1, the index value of current file is set to be 0; otherwise, the index value of current file will increase by 1; 2 Execute the above flow of obtaining related information of the file through index value of the file; 3 Match the file name of the file in this index value with the file name of the file required and judge whether the file in this index value is the file required. The above two means of obtaining related information of the file satisfy the demand for traversing related information of all files in the compressed file and make necessary information preparation for decompressing any designated file in the compressed file. In the meantime, the flow of obtaining related information of a file according index value of the file is short and the execution process is simple, not requiring division into smaller processing procedures, and is the unit execution process for obtaining related information of the file, while the process of obtaining related information of a designated file through file name is composed of several unit execution processes. 3.2 Decompression of file data On the premise that related information of the file has been obtained, the entrance information of the file can be obtained, and the data of this file can be decompressed according to the entrance information of the file designated. Since the flows of such key algorithms as decryption algorithm, decompression algorithm, and crc32 algorithm used for decompression are flows of accumulated operation 2068

4 to data one by one, the division of file decompression process is realizable. Fig 3. Flow of decompressing file data block by block according to entrance information of the file 1 Related information of the file designated should be obtained first before obtaining entrance information of the file designated, and then pick up the entrance information of the file; 2 Pick up part of the data that has not been decompressed from the compressed file according to currently valid entrance information of the file. The length of such data picked up can be determined according to the processing capacity of different mobile terminals. Generally, The length of this data is an empirical value determined in specific engineering practice. As long as it will not affect the processing of UI event, the greater the value, the better; 3 Whether all the data of the designated file has been decompressed. 4. Implementation of decompression program Take the decompression of compressed file in ZIP/GZIP format as the example, modify the program framework of the open source project LiteUnzip whose functions are sound, and explain how to improve the decompression flow to satisfy the special demands of the rich media application program on mobile terminal for decompressing massive compressed file. 4.1 Decompression flow of LiteUnzip Fig 4. Decompression flow of LiteUnzip 1 Optional operation types include: obtaining the entrance information of a designated file in the compressed file and decompressing the designated file. Before this procedure, the file to be operated in the compressed file must have been designated; 2 Search from the location of related information of the first file in the compressed file until the description information of the designated file is visited, and obtain the entrance information of this file; 3 Read the file data according to the entrance information of the file obtained, and decode and decompress such data and perform crc32 verification, and store the file data decompressed to the designated buffer; 4 Determine whether other files need to be processed or not, if yes, this file is the designated file in subsequent flows, otherwise, destroy the decompression handle. It is easily found that the operation of obtaining entrance information of the file is repeated during the process of actual file data decompression and the process of obtaining related information of the file only, which causes loss in efficiency. Besides, the actual decompression operation must follow the operation of obtaining entrance information of the file, so that the entrance information of the file previously obtained can not be used for this decompression, which also causes unnecessary efficiency loss. LiteUnzip can only decompress the whole file at one time especially in 2069

5 decompression of large file, which will cause blocking of other emergency services. 4.2 Optimizing LiteUnzip decompression flow with decompression program The modifications to decompression flow of LiteUnzip will be explained below. The improvements are made from such four aspects as obtaining entrance information of the file, buffering of entrance information of the file, and separation of obtaining entrance information of the file from actual decompression flow, and division of operation granularity of decompression flow. operated in the compressed file must have been designated; 2 Obtain the entrance information of the designated file from the compressed file by searching from current file information visiting location in single direction. If current file information visiting location is after the location of related information of the file to be visited, the searching will be started from the location of related information of the first file. After obtaining the entrance information of this file, add such entrance information to the buffer; 3 Read a segment of file data with specified length, and decrypt and decompress such data and perform crc32 verification; 4 Determine whether other files in the compressed file need to be processed or not, if yes, this file is the designated file in subsequent flows, otherwise, destroy the decompression handle and exit the processing flow. 5. Test The decompression program realized is tested on intelligent cell phone below. 5.1 Test conditions Model of the intelligent cell phone is CoolPAD E200, its memory capacity is 128 MB RAM and 256 MB ROM,and its firmware is brew The source data for this test is a compressed file test.zip which is 778,662Byte, and ordering of the information of the files contained in the compressed file is as shown in table 1: Table 1. List of files in the compressed file used for the test File name Size before decompression (Byte) file1.txt 878 2,571 File2.txt 5,027 18,387 File3.txt 10,208 24,725 File4.txt 762,375 1,106,536 File5.txt Decompression test Size after decompression (Byte) Fig 5. Decompression flow of optimized LiteUnzip 1 Determine whether the entrance information of the designated file has been obtained and has existed in the program buffer; the determination here is performed to the designated file, and before which, the file to be File name Table 2. Results of LiteUnzip decompression test Time Maximum Decompr Total required for decompres ession decompressi obtaining sion time times on time (ms) description for single (number information block of of blocks) of the file data (ms) (ms) file1.txt File2.txt File3.txt File4.txt 1 11, ,131 File5.txt

6 Note: if the time required in the table is 0, it means that the time of this procedure is too short and less than 1ms. The program logic designed for the test is: to determine whether file file5.txt is the compressed file, if it is, decompress all the files in the compressed file test.zip in turns. 1. Use the function of LiteUnzip directly to realize the decompression function in the test application program. The test results is shown in table Use the optimized LiteUnzip to realize the decompression function in the test application program. The test results is shown in table 3. Table 3. Results of optimized LiteUnzip decompression test File Time required for obtaining description Maximum decompre ssion time for single Decompre ssion times (number of blocks) Total decompress ion time (ms) information of the file (ms) block of data (ms) file1.txt File2.txt File3.txt File4.txt ,140 File5.txt Note: if the time required in the table is 0, it means that the time of this procedure is too short and less than 1ms. 5.3 Test results analysis For brew platform, the UI thread can only be run after current decompression thread is suspended, then the time required for obtaining description information of the file and decompression time for a single block is the time of blocking of UI thread. According to table 2, LiteUnzip decompresses all the data of the whole file at one time before optimizing, the decompression time for a single block of data is long when decompressing large file. While the decompression time for a single block of data is short when using the optimized LiteUnzip for decompression. Therefore, the decompression program designed above can enable timely response to UI events and other emergency services. Comparing table 2 with table 3, it is obviously that the time required for obtaining the description information of each file in turns increases gradually before optimizing LiteUnzip, while the time required for obtaining the description information of each file is basically the same after optimizing LiteUnzip. It is obviously that execution efficiency of obtaining description information of the file is improved. The time for obtaining description information of the file file5.txt after optimizing LiteUnzip is much shorter than that before the optimization. This is because the file file5.txt should be checked first for existence before decompressing the compressed file test.zip, during which the description information of file file5.txt should be obtained, and the optimized LiteUnzip will buffer the description information. It is predictable that when files in the compressed file are massive, the time for generating the description information of files at the back of the compressed file in order will be long (the worst situation is when current file visiting location is the first file), and such buffering mechanism can improve decompression efficiency remarkably. 6. Conclusion This decompression program solves the problems of low efficiency, serious blocking of other emergency services when the rich media application programs in mobile terminals with limited processing capacities decompress massive compressed files. Through rational arrangement of time-consuming processing, obtained data can be reused as far as possible, long processing procedure can be divided into several smaller execution processes, and better experiences can be provided to the users. 7. References [1] The future development trend of mobile Internet [OL]. aencysxyant [2] Ji-Xian Zhang, LuoLei. An embedded rich media interactive technology based on the expansion of the SVG Tiny 1.2[C] //Proceedings of the International Conference on Computer Science and Software Engineering, 2008: [3] Ji-Xian Zhang, Lei Luo. A method for improving interaction of embedded rich media application[c] //Proceedings of the International Conference on Advanced Computer Theory and Engineering, 2008: [4] Principle and Realization of Compression of ZIP(lz77 compression algorithm)[ol]. [5] Symbian OS [OL]. [6] Steve Babin, Developing Software for Symbian OS: An Introduction to Creating Smartphone Applications in C++ [M]. Beijing: Posts & telecom press, 2006: [7] 3GPP. TS26.142V Dynamic and Interactive Multimedia Scenes(Release 8)[S]. 3GPP 2008 [8] Hong-Wei Cao, Advanced and proficient in BREW [M]. Beijing: Publishing house of electronic Industory, 2009: [9] Dufourd J C, Avaro O, Concolato C. An MPEG standard for rich media services[j]. IEEE Transactions on Multimedia, 2005, 12(4): [10] Jeff Glatt, LiteZip/LiteUnzip[OL]

Reduction of Bitstream Transfer Time in FPGA

Reduction of Bitstream Transfer Time in FPGA IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 2, Ver. III (Mar - Apr. 2014), PP 82-86 Reduction of Bitstream Transfer Time in

More information

Open Research Online The Open University s repository of research publications and other research outputs

Open Research Online The Open University s repository of research publications and other research outputs Open Research Online The Open University s repository of research publications and other research outputs Developing an intelligent table tennis umpiring system Conference or Workshop Item How to cite:

More information

GOLOMB Compression Technique For FPGA Configuration

GOLOMB Compression Technique For FPGA Configuration GOLOMB Compression Technique For FPGA Configuration P.Hema Assistant Professor,EEE Jay Shriram Group Of Institutions ABSTRACT Bit stream compression is important in reconfigurable system design since it

More information

THE PRESSURE SIGNAL CALIBRATION TECHNOLOGY OF THE COMPREHENSIVE TEST

THE PRESSURE SIGNAL CALIBRATION TECHNOLOGY OF THE COMPREHENSIVE TEST THE PRESSURE SIGNAL CALIBRATION TECHNOLOGY OF THE COMPREHENSIVE TEST SYSTEM Yixiong Xu Mechatronic Engineering, Shanghai University of Engineering Science, Shanghai, China ABSTRACT The pressure signal

More information

Traffic circles. February 9, 2009

Traffic circles. February 9, 2009 Traffic circles February 9, 2009 Abstract The use of a traffic circle is a relatively common means of controlling traffic in an intersection. Smaller Traffic circles can be especially effective in routing

More information

Fast Software-managed Code Decompression

Fast Software-managed Code Decompression Fast Software-managed Code Decompression Charles Lefurgy and Trevor Mudge Advanced Computer Architecture Laboratory Electrical Engineering and Computer Science Dept. The University of Michigan, Ann Arbor

More information

SUPPLEMENT MATERIALS

SUPPLEMENT MATERIALS SUPPLEMENT MATERIALS This document provides the implementation details of LW-FQZip 2 and the detailed experimental results of the comparison studies. 1. Implementation details of LW-FQZip 2 LW-FQZip 2

More information

Basketball field goal percentage prediction model research and application based on BP neural network

Basketball field goal percentage prediction model research and application based on BP neural network ISSN : 0974-7435 Volume 10 Issue 4 BTAIJ, 10(4), 2014 [819-823] Basketball field goal percentage prediction model research and application based on BP neural network Jijun Guo Department of Physical Education,

More information

UNIVERSITY OF WATERLOO

UNIVERSITY OF WATERLOO UNIVERSITY OF WATERLOO Department of Chemical Engineering ChE 524 Process Control Laboratory Instruction Manual January, 2001 Revised: May, 2009 1 Experiment # 2 - Double Pipe Heat Exchanger Experimental

More information

A study on the relation between safety analysis process and system engineering process of train control system

A study on the relation between safety analysis process and system engineering process of train control system A study on the relation between safety analysis process and system engineering process of train control system Abstract - In this paper, the relationship between system engineering lifecycle and safety

More information

Journal of Chemical and Pharmaceutical Research, 2016, 8(6): Research Article. Walking Robot Stability Based on Inverted Pendulum Model

Journal of Chemical and Pharmaceutical Research, 2016, 8(6): Research Article. Walking Robot Stability Based on Inverted Pendulum Model Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2016, 8(6):463-467 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Walking Robot Stability Based on Inverted Pendulum

More information

Case Study. PayPal s Sparkline Case Study. About Sparkline

Case Study. PayPal s Sparkline Case Study. About Sparkline Our People. Your Solution. PayPal s Sparkline Case Study Case Study PayPal, an ebay subsidiary, is a digital payment provider offering flexible payment methods with more than 81 million active accounts

More information

RELEASE NOTES Onsight Connect for ios Software Version 8.1

RELEASE NOTES Onsight Connect for ios Software Version 8.1 RELEASE NOTES Onsight Connect for ios Software Version 8.1 May 2017 Table of Contents Overview... 4 Software Installation... 4 Required Equipment... 4 Software Release Notes for Version 8.1.13... 5 New

More information

Feasibility Analysis of China s Traffic Congestion Charge Legislation

Feasibility Analysis of China s Traffic Congestion Charge Legislation International Conference on Social Science and Technology Education (ICSSTE 2015) Feasibility Analysis of China s Traffic Congestion Charge Legislation Wang Jiyun Beijing Jiaotong University Law School

More information

Study on the Influencing Factors of Gas Mixing Length in Nitrogen Displacement of Gas Pipeline Kun Huang 1,a Yan Xian 2,b Kunrong Shen 3,c

Study on the Influencing Factors of Gas Mixing Length in Nitrogen Displacement of Gas Pipeline Kun Huang 1,a Yan Xian 2,b Kunrong Shen 3,c Applied Mechanics and Materials Online: 2013-06-13 ISSN: 1662-7482, Vols. 321-324, pp 299-304 doi:10.4028/www.scientific.net/amm.321-324.299 2013 Trans Tech Publications, Switzerland Study on the Influencing

More information

Software Engineering. M Umair.

Software Engineering. M Umair. Software Engineering M Umair www.m-umair.com Advantages of Agile Change is embraced With shorter planning cycles, it s easy to accommodate and accept changes at any time during the project. There is always

More information

C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a

C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a 9 0 9 7 C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a 30S/30E/30M An Interactive Digital Media Course 9 0 9 7 : C o d i n g f o r i n t e r a C t i v e d i g i t a l M e d i a 3 0 S

More information

GOLFER. The Golf Putting Robot

GOLFER. The Golf Putting Robot GOLFER The Golf Putting Robot Written By Wing Pan Yuen For EEL 5666 Intelligent Machines Design Laboratory December 05, 1999 Table of Contents Abstract Introduction Executive Summary Integrated System

More information

Decompression of run-time compressed PE-files

Decompression of run-time compressed PE-files Decompression of run-time compressed PE-files MIROSLAV VNUK, PAVOL NÁVRAT Slovak University of Technology Faculty of Informatics and Information Technologies Ilkovičova 3, 842 6 Bratislava, Slovakia Abstract.

More information

Modeling of Hydraulic Hose Paths

Modeling of Hydraulic Hose Paths Mechanical Engineering Conference Presentations, Papers, and Proceedings Mechanical Engineering 9-2002 Modeling of Hydraulic Hose Paths Kurt A. Chipperfield Iowa State University Judy M. Vance Iowa State

More information

CSU_Yunlu 2D Soccer Simulation Team Description Paper 2015

CSU_Yunlu 2D Soccer Simulation Team Description Paper 2015 CSU_Yunlu 2D Soccer Simulation Team Description Paper 2015 Tao Huang, Jieli Yin Fu Jiang, Xiaoyong Zhang, Jun Peng School of Information Science and Engineering, Central South University, Changsha, Hunan

More information

Yuele Jia Computer Science School, Southwest Petroleum University, Chengdu , Sichuan, China

Yuele Jia Computer Science School, Southwest Petroleum University, Chengdu , Sichuan, China doi:10.1311/001.39.10.41 Snubbing Operation Process Simulation Based on String Stress Actuation Yuele Jia Computer Science School, Southwest Petroleum University, Chengdu 610500, Sichuan, China Zhi Chen

More information

Profile-driven Selective Code Compression

Profile-driven Selective Code Compression Profile-driven Selective Code Compression Yuan Xie and Wayne Wolf Electrical Engineering Department Princeton University Princeton, NJ 08540, USA yuanxie,wolf@ee.princeton.edu Haris Lekatsas NEC USA 4

More information

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

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc. [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 9 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(9), 2014 [4222-4227] Evaluation on test of table tennis equipment based

More information

PSM I PROFESSIONAL SCRUM MASTER

PSM I PROFESSIONAL SCRUM MASTER PSM I PROFESSIONAL SCRUM MASTER 1 Upon What kind of process control is SCRUM based? a) IDEAL b) SCRUM enterprise c) Empirical d) Agile 2 If burndown charts are used to visualize progress, what do they

More information

The Application of Pedestrian Microscopic Simulation Technology in Researching the Influenced Realm around Urban Rail Transit Station

The Application of Pedestrian Microscopic Simulation Technology in Researching the Influenced Realm around Urban Rail Transit Station Journal of Traffic and Transportation Engineering 4 (2016) 242-246 doi: 10.17265/2328-2142/2016.05.002 D DAVID PUBLISHING The Application of Pedestrian Microscopic Simulation Technology in Researching

More information

Pedestrian traffic flow operations on a platform: observations and comparison with simulation tool SimPed

Pedestrian traffic flow operations on a platform: observations and comparison with simulation tool SimPed Pedestrian traffic flow operations on a platform: observations and comparison with simulation tool SimPed W. Daamen & S. P. Hoogendoorn Department Transport & Planning, Delft University of Technology,

More information

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS #19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS Final Research Report Luis E. Navarro-Serment, Ph.D. The Robotics Institute Carnegie Mellon University November 25, 2018. Disclaimer

More information

P r o j e c t M a n a g e M e n t f o r I n t e r a c t I v e D I g I t a l M e D I a

P r o j e c t M a n a g e M e n t f o r I n t e r a c t I v e D I g I t a l M e D I a 9 1 0 0 P r o j e c t M a n a g e M e n t f o r I n t e r a c t I v e D I g I t a l M e D I a 40S/40E/40M An Interactive Digital Media Course 9 1 0 0 : P r o j e c t M a n a g e M e n t f o r I n t e

More information

Arithmetic Coding Modification to Compress SMS

Arithmetic Coding Modification to Compress SMS G8-5 2011 International Conference on Electrical Engineering and Informatics 17-19 July 2011, Bandung, Indonesia Arithmetic Coding Modification to Compress SMS Ario Yudo Husodo #1, Rinaldi Munir *2 #*

More information

An Architecture for Combined Test Data Compression and Abort-on-Fail Test

An Architecture for Combined Test Data Compression and Abort-on-Fail Test An Architecture for Combined Test Data Compression and Abort-on-Fail Test Erik Larsson and Jon Persson Embedded Systems Laboratory Department of Computer and Information Science Linköpings Universitet,

More information

Fast Floating Point Compression on the Cell BE Processor

Fast Floating Point Compression on the Cell BE Processor Fast Floating Point Compression on the Cell BE Processor Ajith Padyana, T.V. Siva Kumar, P.K.Baruah Sri Satya Sai University Prasanthi Nilayam - 515134 Andhra Pradhesh, India ajith.padyana@gmail.com, tvsivakumar@gmail.com,

More information

THE CANDU 9 DISTRffiUTED CONTROL SYSTEM DESIGN PROCESS

THE CANDU 9 DISTRffiUTED CONTROL SYSTEM DESIGN PROCESS THE CANDU 9 DISTRffiUTED CONTROL SYSTEM DESIGN PROCESS J.E. HARBER, M.K. KATTAN Atomic Energy of Canada Limited 2251 Speakman Drive, Mississauga, Ont., L5K 1B2 CA9900006 and M.J. MACBETH Institute for

More information

Research of Variable Volume and Gas Injection DC Inverter Air Conditioning Compressor

Research of Variable Volume and Gas Injection DC Inverter Air Conditioning Compressor Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2016 Research of Variable Volume and Gas Inection DC Inverter Air Conditioning Compressor

More information

THEORY OF TRAINING, THEORETICAL CONSIDERATIONS WOMEN S RACE WALKING

THEORY OF TRAINING, THEORETICAL CONSIDERATIONS WOMEN S RACE WALKING THEORY OF TRAINING, THEORETICAL CONSIDERATIONS WOMEN S RACE WALKING Prof.Corina ȚIFREA Ph.D General characteristics of race walking Sport performance is multiply determined, but we can t definitely settle

More information

Early Skip Decision based on Merge Index of SKIP for HEVC Encoding

Early Skip Decision based on Merge Index of SKIP for HEVC Encoding , pp.287-292 http://dx.doi.org/10.14257/astl.2016.139.60 Early Skip Decision based on Merge Index of SKIP for HEVC Encoding Jinwoo Jeong, Sungjei Kim, and Yong-Hwan Kim, Intelligent Image Processing Research

More information

Linear Compressor Suction Valve Optimization

Linear Compressor Suction Valve Optimization Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2016 Linear Compressor Suction Valve Optimization Rinaldo Puff Embraco, Brazil, rinaldo.puff@embraco.com

More information

Analysis and realization of synchronized swimming in URWPGSim2D

Analysis and realization of synchronized swimming in URWPGSim2D International Conference on Manufacturing Science and Engineering (ICMSE 2015) Analysis and realization of synchronized swimming in URWPGSim2D Han Lu1, a *, Li Shu-qin2, b * 1 School of computer, Beijing

More information

Application of Bayesian Networks to Shopping Assistance

Application of Bayesian Networks to Shopping Assistance Application of Bayesian Networks to Shopping Assistance Yang Xiang, Chenwen Ye, and Deborah Ann Stacey University of Guelph, CANADA Abstract. We develop an on-line shopping assistant that can help a e-shopper

More information

2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic. Pressure Measurement Engineered solutions for all applications

2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic. Pressure Measurement Engineered solutions for all applications Application Description AG/266PILD-EN Rev. C 2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic Pressure Measurement Engineered solutions for all applications Increase plant productivity

More information

FLOW CONSIDERATIONS IN INDUSTRIAL SILENCER DESIGN

FLOW CONSIDERATIONS IN INDUSTRIAL SILENCER DESIGN FLOW CONSIDERATIONS IN INDUSTRIAL SILENCER DESIGN George Feng, Kinetics Noise Control, Inc., 3570 Nashua Drive, Mississauga, Ontario Vadim Akishin, Kinetics Noise Control, Inc., 3570 Nashua Drive, Mississauga,

More information

A Novel Decode-Aware Compression Technique for Improved Compression and Decompression

A Novel Decode-Aware Compression Technique for Improved Compression and Decompression A Novel Decode-Aware Compression Technique for Improved Compression and Decompression J. Suresh Babu, K. Tirumala Rao & P. Srinivas Department Of Electronics & Comm. Engineering, Nimra College of Engineering

More information

Spacecraft Simulation Tool. Debbie Clancy JHU/APL

Spacecraft Simulation Tool. Debbie Clancy JHU/APL FSW Workshop 2011 Using Flight Software in a Spacecraft Simulation Tool Debbie Clancy JHU/APL debbie.clancy@jhuapl.edu 443-778-7721 Agenda Overview of RBSP and FAST Technical Challenges Dropping FSW into

More information

A SEMI-PRESSURE-DRIVEN APPROACH TO RELIABILITY ASSESSMENT OF WATER DISTRIBUTION NETWORKS

A SEMI-PRESSURE-DRIVEN APPROACH TO RELIABILITY ASSESSMENT OF WATER DISTRIBUTION NETWORKS A SEMI-PRESSURE-DRIVEN APPROACH TO RELIABILITY ASSESSMENT OF WATER DISTRIBUTION NETWORKS S. S. OZGER PhD Student, Dept. of Civil and Envir. Engrg., Arizona State Univ., 85287, Tempe, AZ, US Phone: +1-480-965-3589

More information

Instrument pucks. Copyright MBARI Michael Risi SIAM design review November 17, 2003

Instrument pucks. Copyright MBARI Michael Risi SIAM design review November 17, 2003 Instrument pucks Michael Risi SIAM design review November 17, 2003 Instrument pucks Pucks and Plug-and-Work The MBARI puck prototype Puck software interface Pucks in practice (A Puck s Tale) Embedding

More information

Large olympic stadium expansion and development planning of surplus value

Large olympic stadium expansion and development planning of surplus value Large olympic stadium expansion and development planning of surplus value Weiqi Jiang Institute of Physical Education, Huanggang Normal University, Huangzhou 438000, China Abstract. This article from the

More information

Utilization of the spare capacity of exclusive bus lanes based on a dynamic allocation strategy

Utilization of the spare capacity of exclusive bus lanes based on a dynamic allocation strategy Urban Transport XX 173 Utilization of the spare capacity of exclusive bus lanes based on a dynamic allocation strategy X. Wang 1 & Q. Li 2 1 Department of Transportation Management Engineering, Zhejiang

More information

The Development and Policy Recommendations for Dockless Bike Share (DBS) in China

The Development and Policy Recommendations for Dockless Bike Share (DBS) in China The Development and Policy Recommendations for Dockless Bike Share (DBS) in China Liu Shaokun, Li Wei, Deng Han @ ITDP Institute for Transportation and Development Policy In 2014, the ofo was established

More information

beestanbul RoboCup 3D Simulation League Team Description Paper 2012

beestanbul RoboCup 3D Simulation League Team Description Paper 2012 beestanbul RoboCup 3D Simulation League Team Description Paper 2012 Baris Demirdelen, Berkay Toku, Onuralp Ulusoy, Tuna Sonmez, Kubra Ayvaz, Elif Senyurek, and Sanem Sariel-Talay Artificial Intelligence

More information

VR Fully Immersive Baseball Game

VR Fully Immersive Baseball Game CASE STUDY VR Fully Immersive Baseball Game AVRspot The Story Behind VR Fully Immersive Baseball Game is a virtual reality game for HTC Vive and Vive Tracker platforms that recreates the immersive experience

More information

Handlebar Bi-Directional Portable Pump on Vehicle Yingying Tang1, Yang Jiang1, Yugang Xin1 and Baida Yang1

Handlebar Bi-Directional Portable Pump on Vehicle Yingying Tang1, Yang Jiang1, Yugang Xin1 and Baida Yang1 7th International Conference on Mechatronics, Computer and Education Informationization (MCEI 2017) Handlebar Bi-Directional Portable Pump on Vehicle Yingying Tang1, Yang Jiang1, Yugang Xin1 and Baida

More information

Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot

Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot 2007 IEEE International Conference on Robotics and Automation Roma, Italy, 10-14 April 2007 ThC9.3 Emergent walking stop using 3-D ZMP modification criteria map for humanoid robot Tomohito Takubo, Takeshi

More information

Who takes the driver seat for ISO and DO 254 verification?

Who takes the driver seat for ISO and DO 254 verification? Who takes the driver seat for ISO 26262 and DO 254 verification? Reconciling requirement based verification with coverage-driven verification Avidan Efody, Mentor Graphics Corp. Motivation ISO and DO users

More information

Analysis and Research of Mooring System. Jiahui Fan*

Analysis and Research of Mooring System. Jiahui Fan* nd International Conference on Computer Engineering, Information Science & Application Technology (ICCIA 07) Analysis and Research of Mooring System Jiahui Fan* School of environment, North China Electric

More information

Information Technology for Monitoring of Municipal Gas Consumption, Based on Additive Model and Correlated for Weather Factors

Information Technology for Monitoring of Municipal Gas Consumption, Based on Additive Model and Correlated for Weather Factors ISSN 1746-7659, England, UK Journal of Information and Computing Science Vol. 11, No. 3, 2016, pp.180-187 Information Technology for Monitoring of Municipal Gas Consumption, Based on Additive Model and

More information

Combined impacts of configurational and compositional properties of street network on vehicular flow

Combined impacts of configurational and compositional properties of street network on vehicular flow Combined impacts of configurational and compositional properties of street network on vehicular flow Yu Zhuang Tongji University, Shanghai, China arch-urban@163.com Xiaoyu Song Tongji University, Shanghai,

More information

Copyright by Turbomachinery Laboratory, Texas A&M University

Copyright by Turbomachinery Laboratory, Texas A&M University Proceedings of the 2 nd Middle East Turbomachinery Symposium 17 20 March, 2013, Doha, Qatar Effectiveness of Windage Features on High Speed Couplings Steven Pennington Global Engineering Manager John Crane

More information

Design of a Pedestrian Detection System Based on OpenCV. Ning Xu and Yong Ren*

Design of a Pedestrian Detection System Based on OpenCV. Ning Xu and Yong Ren* International Conference on Education, Management, Commerce and Society (EMCS 2015) Design of a Pedestrian Detection System Based on OpenCV Ning Xu and Yong Ren* Applied Technology College of Soochow University

More information

APPENDIX B: DATA TABLES

APPENDIX B: DATA TABLES APPENDIX B: DATA TABLES PHILOSOPHY STUDENT SURVEY TABLES Q1. Were or are you... Valid Majoring in Philosophy 18 45.0 45.0 45.0 Minoring in Philosophy 22 55.0 55.0 100.0 100.0 Q2. Did you have a particular

More information

Numerical Simulation of the Basketball Flight Trajectory based on FLUENT Fluid Solid Coupling Mechanics Yanhong Pan

Numerical Simulation of the Basketball Flight Trajectory based on FLUENT Fluid Solid Coupling Mechanics Yanhong Pan Applied Mechanics and Materials Submitted: 2014-08-05 ISSN: 1662-7482, Vols. 651-653, pp 2347-2351 Accepted: 2014-08-06 doi:10.4028/www.scientific.net/amm.651-653.2347 Online: 2014-09-30 2014 Trans Tech

More information

Numerical simulation of three-dimensional flow field in three-line rollers and four-line rollers compact spinning systems using finite element method

Numerical simulation of three-dimensional flow field in three-line rollers and four-line rollers compact spinning systems using finite element method Indian Journal of Fibre & Textile Research Vol. 42, March 2017, pp. 77-82 Numerical simulation of three-dimensional flow field in three-line rollers and four-line rollers compact spinning systems using

More information

Smart Card based application for IITK Swimming Pool management

Smart Card based application for IITK Swimming Pool management CS499 End Semester Report Smart Card based application for IITK Swimming Pool management Submitted By: Ankur Mittal Project Guide: Prof. Rajat Moona Introduction In today s world, there is an increasing

More information

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Jehyun Cho a, Ghang Lee a, Jongsung Won a and Eunseo Ryu a a Dept. of Architectural Engineering, University of Yonsei,

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(3): Research Article

Journal of Chemical and Pharmaceutical Research, 2014, 6(3): Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research 2014 6(3):304-309 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 World men sprint event development status research

More information

CASE STUDY. Compressed Air Control System. Industry. Application. Background. Challenge. Results. Automotive Assembly

CASE STUDY. Compressed Air Control System. Industry. Application. Background. Challenge. Results. Automotive Assembly Compressed Air Control System Industry Automotive Assembly Application Savigent Platform and Industrial Compressed Air Systems Background This automotive assembly plant was using over 40,000 kilowatt hours

More information

High production indexes and key factors influencing coalbed methane (CBM) horizontal well productivity

High production indexes and key factors influencing coalbed methane (CBM) horizontal well productivity International Conference on Energy and Environmental Protection (ICEEP 2016) High production indexes and key factors influencing coalbed methane (CBM) horizontal well productivity Yanhui Yang1, a, Shu

More information

The Kanban Guide for Scrum Teams

The Kanban Guide for Scrum Teams The Kanban Guide for Scrum Teams February 2018 Developed and sustained by Scrum.org and Daniel Vacaniti Table of Contents Purpose... 3 Relation to the Scrum Guide... 3 Definition of Kanban... 3 Kanban

More information

Changes in speed and efficiency in the front crawl swimming technique at 100m track

Changes in speed and efficiency in the front crawl swimming technique at 100m track Proceeding 10th INSHS International Christmas Sport Scientific Conference, 4-5 December 2015. International Network of Sport and Health Science. Szombathely, Hungary Changes in speed and efficiency in

More information

The Kinematics Analysis of Wu Yibing's Tennis Forehand Technique Xin WEN, Ji-he ZHOU and Chuan-jia DU

The Kinematics Analysis of Wu Yibing's Tennis Forehand Technique Xin WEN, Ji-he ZHOU and Chuan-jia DU 218 International Conference on Mechanical, Electronic and Information Technology (ICMEIT 218) ISBN: 978-1-6595-548-3 The Kinematics Analysis of Wu Yibing's Tennis Forehand Technique Xin WEN, Ji-he ZHOU

More information

AC : MEASUREMENT OF HYDROGEN IN HELIUM FLOW

AC : MEASUREMENT OF HYDROGEN IN HELIUM FLOW AC 2010-2145: MEASUREMENT OF HYDROGEN IN HELIUM FLOW Randy Buchanan, University of Southern Mississippi Christopher Winstead, University of Southern Mississippi Anton Netchaev, University of Southern Mississippi

More information

System of Plankton Database Opening to the Public in Lake Biwa

System of Plankton Database Opening to the Public in Lake Biwa Sengupta, M. and Dalwani, R. (Editors). 2008 Proceedings of Taal2007: The 12 th World Lake Conference: 597-602 System of Plankton Database Opening to the Public in Lake Biwa Satoshi Ichise,Tetsuya Wakabayashi,

More information

siot-shoe: A Smart IoT-shoe for Gait Assistance (Miami University)

siot-shoe: A Smart IoT-shoe for Gait Assistance (Miami University) siot-shoe: A Smart IoT-shoe for Gait Assistance (Miami University) Abstract Mark Sullivan, Casey Knox, Juan Ding Gait analysis through the Internet of Things (IoT) is able to provide an overall assessment

More information

ITAndroids 2D Soccer Simulation Team Description 2016

ITAndroids 2D Soccer Simulation Team Description 2016 ITAndroids 2D Soccer Simulation Team Description 2016 Lucas Müller, Pedro Freire, Wagner Rodrigues, and Marcos Maximo Aeronautics Institute of Technology, São José dos Campos, São Paulo, Brazil {lucasmullerm,pedrofreirex,wagner.fonseca.rodrigues}@gmail.com

More information

CS 221 PROJECT FINAL

CS 221 PROJECT FINAL CS 221 PROJECT FINAL STUART SY AND YUSHI HOMMA 1. INTRODUCTION OF TASK ESPN fantasy baseball is a common pastime for many Americans, which, coincidentally, defines a problem whose solution could potentially

More information

Solutions to Traffic Jam on East Road of Beijing Jiaotong University in Rush Hours Based on Analogue Simulation

Solutions to Traffic Jam on East Road of Beijing Jiaotong University in Rush Hours Based on Analogue Simulation MATEC Web of Conferences 25, 04 00 4 ( 2015) DOI: 10.1051/ matecconf/ 20152 504 004 C Owned by the authors, published by EDP Sciences, 2015 Solutions to Traffic Jam on East Road of Beijing Jiaotong University

More information

Numerical simulation on down-hole cone bit seals

Numerical simulation on down-hole cone bit seals Numerical simulation on down-hole cone bit seals Yi Zhang, Wenbo Cai School of Mechatronic Engineering, Southwest Petroleum University Chengdu, 610500, China dream5568@126.com Abstract Seals are a critical

More information

Multivariable Predictive Control and its Application on the Solvent Dehydration Tower

Multivariable Predictive Control and its Application on the Solvent Dehydration Tower Multivariable Predictive Control and its Application on the Solvent Dehydration Tower Yong Gu, Hongye Su, Jian Chu National Key Laboratory of Industrial Control Technology and Institute of Industrial Process

More information

Special edition paper

Special edition paper Development of Train Nose Shape for Reducing Micro-pressure Waves Takeshi Kurita*, Yoichi Okumura* and Tsuyoshi Ichigi** To ensure that the micro-pressure waves generated during high speed running are

More information

A Fault Diagnosis Monitoring System of Reciprocating Pump

A Fault Diagnosis Monitoring System of Reciprocating Pump IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 05, Issue 09 (September. 2015), V1 PP 01-06 www.iosrjen.org A Fault Diagnosis Monitoring System of Reciprocating Pump

More information

DESKTOP SKILLS COURSEWARE

DESKTOP SKILLS COURSEWARE Introducing Mac OS X Yosemite Course... ds_maco_a01_dt_enus Working with Mac OS X Yosemite Course... ds_maco_a02_dt_enus Installing Mac OS X Yosemite Course... ds_macp_a01_dt_enus Managing and Configuring

More information

Global Information System of Fencing Competitions (Standard SEMI 1.0) Introduction

Global Information System of Fencing Competitions (Standard SEMI 1.0) Introduction Global Information System of Fencing Competitions (Standard SEMI 1.0) Introduction The Present Standard introduces the united principle of organization and interacting of all information systems used during

More information

Analysis of Pressure Rise During Internal Arc Faults in Switchgear

Analysis of Pressure Rise During Internal Arc Faults in Switchgear Analysis of Pressure Rise During Internal Arc Faults in Switchgear ASANUMA, Gaku ONCHI, Toshiyuki TOYAMA, Kentaro ABSTRACT Switchgear include devices that play an important role in operations such as electric

More information

A Research on the Airflow Efficiency Analysis according to the Variation of the Geometry Tolerance of the Sirocco Fan Cut-off for Air Purifier

A Research on the Airflow Efficiency Analysis according to the Variation of the Geometry Tolerance of the Sirocco Fan Cut-off for Air Purifier A Research on the Airflow Efficiency Analysis according to the Variation of the Geometry Tolerance of the Sirocco Fan Cut-off for Air Purifier Jeon-gi Lee*, Choul-jun Choi*, Nam-su Kwak*, Su-sang Park*

More information

Instruction Cache Compression for Embedded Systems by Yujia Jin and Rong Chen

Instruction Cache Compression for Embedded Systems by Yujia Jin and Rong Chen Instruction Cache Compression for Embedded Systems by Yujia Jin and Rong Chen Abstract Code compression could lead to less overall system die area and therefore less cost. This is significant in the embedded

More information

swmath - Challenges, Next Steps, and Outlook

swmath - Challenges, Next Steps, and Outlook swmath - Challenges, Next Steps, and Outlook Hagen Chrapary 1, 2, Wolfgang Dalitz 2, and Wolfram Sperber 1 1 FIZ Karlsruhe/zbMATH, Franklinstr. 11, 10587 Berlin, Germany 2 Zuse Institute Berlin (ZIB),

More information

Blocking time reduction for level crossings using the genetic algorithm

Blocking time reduction for level crossings using the genetic algorithm Computers in Railways X 299 Blocking time reduction for level crossings using the genetic algorithm Y. Noguchi 1, H. Mochizuki 1, S. Takahashi 1, H. Nakamura 1, S. Kaneko 1 & M. Sakai 2 1 Nihon University,

More information

Has no formal authority but Coaches the Development Team in self-organization and crossfunctionality

Has no formal authority but Coaches the Development Team in self-organization and crossfunctionality Scrum Master is a servant-leader for the Scrum Team. The Scrum Master helps those outside the Scrum Team understand which of their interactions with the Scrum Team are helpful and which aren t. The Scrum

More information

Video Based Accurate Step Counting for Treadmills

Video Based Accurate Step Counting for Treadmills Proceedings Video Based Accurate Step Counting for Treadmills Qingkai Zhen, Yongqing Liu, Qi Hu and Qi Chen * Sport Engineering Center, China Institute of Sport Science, Beijing 100061, China; zhenqingkai@ciss.cn

More information

Road Data Input System using Digital Map in Roadtraffic

Road Data Input System using Digital Map in Roadtraffic Data Input System using Digital Map in traffic Simulation Namekawa,M 1., N.Aoyagi 2, Y.Ueda 2 and A.Satoh 2 1 College of Management and Economics, Kaetsu University, Tokyo, JAPAN 2 Faculty of Engineering,

More information

Using MATLAB with CANoe

Using MATLAB with CANoe Version 2.0 2017-03-09 Application Note AN-IND-1-007 Author Restrictions Abstract Vector Informatik GmbH Public Document This application note describes the usage of MATLAB /Simulink combined with CANoe.

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53. The design of exoskeleton lower limbs rehabilitation robot

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53. The design of exoskeleton lower limbs rehabilitation robot Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 53 CADDM The design of exoskeleton lower limbs rehabilitation robot Zhao Xiayun 1, Wang Zhengxing 2, Liu Zhengyu 1,3,

More information

Dear friends and team mates!

Dear friends and team mates! Dear friends and team mates! There are quite a lot of frustrated customers on the European market that are now waiting for their JJ-CCR rebreathers locked up in our warehouse. Trust us, we are very frustrated

More information

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski

MEETPLANNER DESIGN DOCUMENT IDENTIFICATION OVERVIEW. Project Name: MeetPlanner. Project Manager: Peter Grabowski MEETPLANNER DESIGN DOCUMENT IDENTIFICATION Project Name: MeetPlanner Project Manager: Peter Grabowski OVERVIEW Swim coaches are often faced with a dilemma while planning swim meets. On the one hand, they

More information

SCRUM FOUNDATIONS ELEARNING TRANSCRIPT

SCRUM FOUNDATIONS ELEARNING TRANSCRIPT SCRUM FOUNDATIONS ELEARNING TRANSCRIPT Scrum Theory and Values... 2 Scrum Theory (05:47)...2 Scrum Values...4 Scrum Roles... 5 Cross Functional and Self-Organizing Teams (1:42)...5 Scrum Roles (2:39)...6

More information

Numerical simulation and analysis of aerodynamic drag on a subsonic train in evacuated tube transportation

Numerical simulation and analysis of aerodynamic drag on a subsonic train in evacuated tube transportation Journal of Modern Transportation Volume 20, Number 1, March 2012, Page 44-48 Journal homepage: jmt.swjtu.edu.cn DOI: 10.1007/BF03325776 1 Numerical simulation and analysis of aerodynamic drag on a subsonic

More information

EEC 686/785 Modeling & Performance Evaluation of Computer Systems. Lecture 6. Wenbing Zhao. Department of Electrical and Computer Engineering

EEC 686/785 Modeling & Performance Evaluation of Computer Systems. Lecture 6. Wenbing Zhao. Department of Electrical and Computer Engineering EEC 686/785 Modeling & Performance Evaluation of Computer Systems Lecture 6 Department of Electrical and Computer Engineering Cleveland State University wenbing@ieee.org Outline 2 Review of lecture 5 The

More information

sorting solutions osx separator series

sorting solutions osx separator series osx separator series Comex offers a newly developed complex optical sorting system, in a user friendly platform, for the identification and separation of particles and materials, based on their many physical

More information

Diver Training Options

Diver Training Options MAIN INTERNET ON-SITE TAILORED PACKAGES INTER-COMPANY Diver Training Options DBI offers a menu of tailored courses Designed for users as well as IT Professionals to learn how to master the functionality

More information

Reducing Code Size with Run-time Decompression

Reducing Code Size with Run-time Decompression Reducing Code Size with Run-time Decompression Charles Lefurgy, Eva Piccininni, and Trevor Mudge Advanced Computer Architecture Laboratory Electrical Engineering and Computer Science Dept. The University

More information

Outline. Terminology. EEC 686/785 Modeling & Performance Evaluation of Computer Systems. Lecture 6. Steps in Capacity Planning and Management

Outline. Terminology. EEC 686/785 Modeling & Performance Evaluation of Computer Systems. Lecture 6. Steps in Capacity Planning and Management EEC 686/785 Modeling & Performance Evaluation of Computer Systems Lecture 6 Department of Electrical and Computer Engineering Cleveland State University wenbing@ieee.org Outline Review of lecture 5 The

More information