Step Detection Algorithm For Accurate Distance Estimation Using Dynamic Step Length

Size: px
Start display at page:

Download "Step Detection Algorithm For Accurate Distance Estimation Using Dynamic Step Length"

Transcription

1 Step Detection Algorithm For Accurate Distance Estimation Using Dynamic Step Length Ahmad Abadleh Eshraq Al-Hawari Esra'a Alkafaween Hamad Al-Sawalqah Computer Information Systems Department The University of Jordan Amman, Jordan Abstract In this paper, a new Smartphone sensor based algorithm is proposed to detect accurate distance estimation. The algorithm consists of two phases; the first phase is for detecting the peaks from the Smartphone accelerometer sensor. The other one is for detecting the step length which varies from step to step. The proposed algorithm is tested and implemented in real environment and it showed promising results. Unlike the conventional approaches, the error of the proposed algorithm is fixed and is not affected by the long distance. Keywords distance estimation; peaks; step length; accelerometer. I. INTRODUCTION Recently, Smartphones have become the most common computing devices that are in widespread use in our daily lives around the world. During the last decade, many improvements have been added to the Smartphones, including the number of communication modules (e.g. GPS) and sensors modules (e.g. accelerometer, gyroscope, digital compass, and magnetometer sensor) that are embedded in the device [1]. By using these modules, many Smartphones services and applications have been developed (e.g. indoor/outdoor localization) [1, 2, 11]. Indoor location services have been gaining an increasing focus in recent years. Pedestrian dead reckoning (PDR) is one of well known techniques for indoor positioning using Smartphone sensors. PDR is a technique to estimate the latest user position using the embedded inertial sensors by combining a known position with the successive position displacements (distance) [3]. The user walking distance can be estimated by double integration of the accelerations with respect to time. However, due to the noise in the accelerometer output, any error in the signal will accumulate rapidly with time. To avoid this error, the distance is estimated by multiplying the number of steps by a constant step length [2, 4]. User s step and step length are important issues in estimating the walking distance. Several methods have been proposed for the detection of the steps, such as, detection of the peaks [], flat zone detection [6] and zero-crossings method [4, 7]. Many previous works, e.g., [8, 9] proposed different methods to estimate the step length; some of them used static length of each step, while others used dynamic step length [2]. Most of the current approaches suffer from the unpredictable movements of the users which affect the accuracy of the results. For instance, using fixed step length and the error in counting the steps are the major problems of the step detection algorithms. In this paper, a new step detection algorithm is presented to enhance the performance of the travelled distance estimation using dynamic step length. The proposed algorithm utilizes the acceleration values of X, Y and Z axes from accelerometer sensor, which is built in Smartphone to count steps in real-time. In our work, we assume that the mobile phone is in a static position placed in user s hand throughout the movements. The proposed algorithm determines the peaks precisely and a weight is assigned to each step based on its length. To evaluate our algorithm, real experiments were conducted and a comparison with the conventional methods were presented. The proposed algorithm uses a new technique to count the peaks in which the miscounting peaks are reduced. Moreover, it detects the length of the step and categorizes them into different categories which lead to better distance estimation. The main contributions of this paper are: - Detecting the length of the steps. - Categorizing the steps into short, medium, and long step. - Mitigating the problem of counting the peaks due to irrelevant movements. The rest of this paper is organized as follows: Section II provides some related works about distance estimation using mobile phones and methods for step detection. Section III introduces the overall architecture of our system for travelled distance estimation, and then presents our algorithm for peaks and step length detecting. Details about the experiments and the results are presented in Section IV. Finally, the paper ends with conclusion and future works in Section V. II. RELATED WORK Various methodologies and techniques have been proposed and evaluated for user distance estimation [1 ]. Researchers have presented different approaches based on fixed step length, and others have used dynamic step length for distance estimation. 1

2 Liu et al. presented a novel algorithm for adaptive step length estimation using a handheld device based on empirical formula and Back-propagation neural network. They relied on tri-axial accelerometer to detect the steps using hamming window function with digital low-pass filter to tri-axial accelerometer [8]. Shih et al. developed a waist-mounted based PDR system to estimate the horizontal walking distance using Pythagoras' theorem from the height change of the waist. They used vertical acceleration to detect the step and the Pythagoras' theorem to estimate each step length [9]. Zeng et al. relied on their work on the acceleration and gravity sensor to count the steps, where two different thresholds used for the detection of peaks and valleys, and three adjacent points were stored in the memory. The comparison between the two points based on the altitude and time. if there are two adjacent points and one of them is the peak and the other is valley, then there is a possibility of a new step. But if the points are all either peaks or valleys, the small point is deleted. If the period of time between two adjacent points is very short, then the point is deleted as well [3]. Another mobile phone based approach have been presented by Alzantot.et al, where they have suggested to use a finite state machine approach combining with threshold values settings for the acceleration measurements to estimate user steps. They also employed a Support Vector Machine classifier for estimating the varying stride length of the user [1]. A key observation drawn from the literatures related to travelled distance estimation is that some of the studies are based on fixed step length and others have used dynamic step length in their approaches [1, 3, 8, 9, 10]. Our works differ from the current works as follows: - Fixed step length based approaches suffer from the accumulative error in distance estimation. However, our approach uses the dynamic step length to mitigate that error. - Dynamic step length based approaches need many empirical thresholds values, such as: peak threshold, constant values to detect the length. Our approach categorizes the length into different categories and assigns a weight for each step. - Current peak detection algorithms have the problem of counting the peaks due to the irrelevant movements. Our approach reduces this problem by using the proposed MAX approach. root of the three accelerometer values as shown in Eq. 1. The magnitude value represents the vibration on the three axis coordinates. mag = x 2 + y 2 + z 2 In order to exclude the gravity force from the magnitude value, the average of the magnitude values, which is computed from (1), is computed. Then each magnitude (netmag) value is computed as the difference between the current magnitude (mag) and average magnitude value (avgmag) as shown in (2). netmag = mag avgmag Fig. 1 shows an example of the collected data on the three axes, while Fig. 2 shows the magnitude value which is computed by (1). B. Filtering phase The Smartphone sensors are inaccurate and suffer from various problems. Therefore, the derived data must be filtered in order to exclude the noise and the outliers values. Smoothing the data helps in improving the accuracy of the system as the accelerometer sensor is very sensitive to the movements. The process of choosing peaks will be easier and accurate if the data is smoothed and has a standard shape. During this phase, kalmn filter is applied to help in excluding the gravity force. While high pass filter is used to remove the outliers' values. The data is smoothed by performing the filters which enhanced the result. Fig. 1 Acceleration on three axes III. SYSTEM ARCHTECTURE The proposed approach has the following sections: data collection phase, filtering phase, peak detection phase, and distance estimation phase. A. Data collection phase During this phase, the three axis accelerometer data is derived from the Smartphone assuming that the user holds the Smartphone by hand. The derived data includes X, Y, and Z values. Then the magnitude value is computed as the square 2

3 Fig. 2 Magnitude values C. Peak detection phase During the user movements, the changes on the acceleration can be useful. For instance, z-axis gets affected by the vertical movement such as raising the leg. Therefore, this particular change forms some peaks on the acceleration. Exploiting these peaks can help in distance estimation. Most of the current step detection algorithms rely on counting the peaks as each peak represents a user stride. The distance is computed by multiplying the number of steps by a step length. However, step length varies even for the same user; therefore, fixed step length can lead to an error in distance estimation. This error can be severe if the walking distance is long. Another important problem is the fake peaks. Fake peak represents a peak produced by an irrelevant movement. Fig. 3 shows the real and the fake peaks. Counting the fake peak as a real peak increases the error in the distance estimation. Since the peak is detected if the acceleration surpasses a specific threshold, fake peak might be counted as a real peak as shown in Fig. 3. In this paper, a new algorithm is proposed to detect the real peaks and the step length. The algorithm has two stages, in the first stage; the peak is detected while the second stage is responsible about detecting the length of the steps. Peak detection: the algorithm works as follows: the time is divided into dynamic time windows in which each time window contains the magnitude values which are computed by (2). The algorithm keeps track of three consecutive values in a vector called Start Vector, if the three values getting increased, then a peak might be a head. Then the first value represents the start point of the peak. If the value surpasses a step threshold which is defined in advance, then all the values above the threshold will be stored in a vector called Peak Vector. The algorithm utilizes the peak vector to detect the real peak values as well as the time when they are taken place. Since the peak vector contains the values that fall above the step threshold, then the maximum value should represent the real peak. Fake peak Step length detection: after the peak is detected, the signals should be decreased as the peak is the maximum value. The algorithm keeps track of two consecutive values in a vector called End Vector. The end point of the peak is detected when the two values are getting increased, which means that the step has finished. The step length is computed as the difference between the end and the start points. Peak vector mitigates the error that can be happened due to the fake peaks as only one peak (max value) will be chosen. Moreover, dynamic step length makes the algorithm more robust to the change of the user walking style. Fig. 4 illustrates the main idea of the algorithm. D. Distance estimation phase In previous section, the two important variables, the peak and the step length are detected. In this section, the step length is categorized into three categories, short which means less than the average, medium which means equal to the average, and long step which means greater than the average. Each category is assigned a weight to represent its length as shown in (3). Fig. 3. Real vs Fake peaks Fig. 4. Illustration of the proposed algorithm 0 if StepSize < Magavg = { 1.0 if StepSize = Magavg 1. if StepSize > Magavg The distance then is estimated using (4): Distance n i=1 Peak(i) * (i) Equation. 4 represents the distance estimation where the length of the step is taken into account. The result of the distance estimation shows promising results and there is enhancement in distance estimation as the error is reduced. Furthermore, unlike the conventional step detection algorithms 3

4 which have accumulative error, the error of this algorithm is fixed even if the distance is long (more details in the evaluation section). IV. EVALUATION AND RESULTS Our proposed approach is tested in a real environment at the department of computer science in. In this section, the results of the proposed approach are presented. A. Environmental experiments The user walked on the corridors at the department and passed different distances. During the walking, the user changed the speed from time to time and walked on a straight line and sometimes on a winding line. B. Experiment results The result of the experiments is shown in Table 1 and Fig.. As can be seen in Table 1, in different distances, the proposed approach performs well and has a good accuracy. TABLE1. PROPOSED APPROACH RESULTS Gender Real Distance Est. number of Est. distance /m /m steps Male Male Male Male Female Female Female Female Fig. shows that the estimated distance is almost identical with real one. The reason behind that is because the proposed approach outperforms the problem of fake peaks and the difference on the length of each step. It can be seen that the proposed approach is robust even if the distance is long. The algorithm guarantees the scalability as the error is almost fixed for all the distances. The accuracy of the proposed approach is better than the one with conventional method and comparable with the approaches with dynamic step length. Fig. 6 represents the comparison between the conventional peak detection algorithm in which constant step length is used and the proposed approach. It reinforces our claim that the conventional approach suffers from the accumulative error as the distance is getting increased, while the proposed approach has almost a fixed error. From Fig. 6, the average error of the proposed approach was 1.4 m while the conventional one has an average error of 4.8 m. Applying the proposed approach mitigated the problem of irrelevant movement, such as hand shaking or any sudden change during the user movement. The idea of getting the maximum value among the values that fall above the threshold reduces the influence of the hand shaking problem. Real distance/ m Fig.. Estimated distance using the proposed approach compared to the real one. Error/m Experiment Fig. 6. The proposed approach results compared to conventional peak detection algorithm. V. CONCLUSION Distance estimation is one of the critical issues in indoor localization in which it affects the accuracy. In this paper, a new approach has been proposed in order to detect accurate and precise distance. The proposed approach enhanced the distance estimation by taking into account the step length and the error in counting the peaks, which are not solved perfectly in most of the existing approaches. In this work, a new technique for detecting the step length was proposed and an enhanced peak detection algorithm was proposed as well. The results of the real experiments showed enhancement in distance estimation and the error became fixed on different experiments. According to the results, we claim that the proposed approach is robust and effective. Most of the distance estimation approaches face the handshaking problem which causes degradation in the accuracy. In our approach, the problem is mitigated but not perfectly solved. In the future work, we will consider the handshaking problem as well as holding the Smartphone in any place. REFERENCES Real Distance /m Est. distance /m Conventional Proposed Distance/m [1] M Alzantot and M Youssef, "UPTIME: Ubiquitous Pedestrian Tracking using Mobile Phones," in 2012 IEEE Wireless Communications and Networking Conference (WCNC, 2012, pp [2] A. Abadleh, S. Han, S. J. Hyun, B. Lee and M. Kim, "ILPS: Indoor localization using physical maps and smartphone sensors," Proceeding of IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks 2014, Sydney, NSW, 2014, pp [3] Q Zeng, B Zhou, C Jing, N Kim, and Y Kim, "A Novel Step Counting Algorithm Based on Acceleration and Gravity Sensors of a Smart-Phone," parameters, vol. 9, no. 4, 201. [4] I Bylemans, M Weyn, and M Klepal, "Mobile phone-based displacement estimation for opportunistic localisation systems," in 4

5 Mobile Ubiquitous Computing, Systems, Services and Technologies, UBICOMM'09. Third International Conference on, 2009, pp [] R Jirawimut, P Ptasinski, V Garaj, F Cecelja, and W Balachandran, "A Method for Dead Reckoning Parameter Correction in Pedestrian," IEEE Transactions on Instrumentation and Measurement, vol. 2, no. 1, pp , [6] S Y Cho, K W Lee, C G Park, and J G Lee, "A personal navigation system using low-cost MEMS/GPS/Fluxgate," pp , [7] Helena Leppäkoski, Jani Käppi, Jari Syrjärinne, and Jarmo Takala, "Error Analysis of Step Length Estimation in Pedestrian Dead Reckoning," in Proceedings of the 1th International Technical Meeting of the Satellite Division of The Institute of Navigation (ION GPS 2002), 2002, pp [8] Y Liu et al., "Accelerometer Based Joint Step Detection and Adaptive Step Length Estimation Algorithm Using Handheld Devices," Journal of Communications, vol. 10, no. 7, 201. [9] W Y Shih, L Y Chen, and K C Lan, "Estimating walking distance with a smart phone," in 2012 Fifth International Symposium on Parallel Architectures, Algorithms and Programming, 2012, pp [10] Meng-Shiuan Pan and Hsueh-Wei Lin, "A step counting algorithm for smartphone users: Design and implementation," IEEE Sensors Journal, vol. 1, no. 4, pp , 201. [11] A. Abadleh, S. Han, S. J. Hyun, B. Lee, and M. Kim. 2016", Construction of indoor floor plan and localization", Wirel. Netw. 22, pp , 2016.

Bicycle Safety Map System Based on Smartphone Aided Sensor Network

Bicycle Safety Map System Based on Smartphone Aided Sensor Network , pp.38-43 http://dx.doi.org/10.14257/astl.2013.42.09 Bicycle Safety Map System Based on Smartphone Aided Sensor Network Dongwook Lee 1, Minsoo Hahn 1 1 Digital Media Lab., Korea Advanced Institute of

More information

WalkCompass: Finding Walking Direction Leveraging Smartphone s Inertial Sensors. Nirupam Roy

WalkCompass: Finding Walking Direction Leveraging Smartphone s Inertial Sensors. Nirupam Roy WalkCompass: Finding Walking Direction Leveraging Smartphone s Inertial Sensors by Nirupam Roy Bachelor of Engineering Bengal Engineering and Science University, Shibpur 2007 Submitted in Partial Fulfillment

More information

Pedestrian Dead Reckoning Based on Human Activity Sensing Knowledge

Pedestrian Dead Reckoning Based on Human Activity Sensing Knowledge Pedestrian Dead Reckoning Based on Human Activity Sensing Knowledge Yuya Murata Graduate School of Engineering, Nagoya University 1 Furo-cho, Chikusa-ku, Nagoya, Aichi, 464-8603 Japan murata@ucl.nuee.nagoyau.ac.jp

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

Improved Pedestrian Dead Reckoning Positioning With Gait Parameter Learning

Improved Pedestrian Dead Reckoning Positioning With Gait Parameter Learning Improved Pedestrian Dead Reckoning Positioning With Gait Parameter Learning Parinaz Kasebzadeh, Carsten Fritsche, Gustaf Hendeby, Fredrik Gunnarsson and Fredrik Gustafsson Linköping University Post Print

More information

A System Development for Creating Indoor Floor Plan of Walking Route using Video and Movement Data 1 2

A System Development for Creating Indoor Floor Plan of Walking Route using Video and Movement Data 1 2 A System Development for Creating Indoor Floor Plan of Walking Route using Video and Movement Data 1 2-1771/1.10250 0-2763-2600 0-2763-2700 1 eu.vacharapol_st@tni.ac.th 2 saprangsit@tni.ac.th Android accelerometer

More information

AutoGait: A Mobile Platform that Accurately Estimates the Distance Walked

AutoGait: A Mobile Platform that Accurately Estimates the Distance Walked AutoGait: A Mobile Platform that Accurately Estimates the Distance Walked -Written By- Dae-Ki Cho, Min Mun, Uichin Lee, William J. Kaiser, Mario Gerla -Presented By- Scott Mitchell CS Department Problem

More information

Bayesian Optimized Random Forest for Movement Classification with Smartphones

Bayesian Optimized Random Forest for Movement Classification with Smartphones Bayesian Optimized Random Forest for Movement Classification with Smartphones 1 2 3 4 Anonymous Author(s) Affiliation Address email 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

More information

An Indoor Positioning Method with MEMS Inertial Sensors

An Indoor Positioning Method with MEMS Inertial Sensors Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com An Indoor Positioning Method with MEMS Inertial Sensors u LIU, Wen-Ji XIOG Institute of Optical Communication Technology, Chongqing University

More information

Look Up! Positioning-based Pedestrian Risk Awareness. Shubham Jain

Look Up! Positioning-based Pedestrian Risk Awareness. Shubham Jain Look Up! Positioning-based Pedestrian Risk Awareness Shubham Jain Does this look familiar? Pedestrians account for 14% of all traffic fatalities in the US *. In the last decade, 688,000 pedestrians injured

More information

Heart Rate Prediction Based on Cycling Cadence Using Feedforward Neural Network

Heart Rate Prediction Based on Cycling Cadence Using Feedforward Neural Network Heart Rate Prediction Based on Cycling Cadence Using Feedforward Neural Network Kusprasapta Mutijarsa School of Electrical Engineering and Information Technology Bandung Institute of Technology Bandung,

More information

AN31E Application Note

AN31E Application Note Balancing Theory Aim of balancing How an unbalance evolves An unbalance exists when the principle mass axis of a rotating body, the so-called axis of inertia, does not coincide with the rotational axis.

More information

Motion Control of a Bipedal Walking Robot

Motion Control of a Bipedal Walking Robot Motion Control of a Bipedal Walking Robot Lai Wei Ying, Tang Howe Hing, Mohamed bin Hussein Faculty of Mechanical Engineering Universiti Teknologi Malaysia, 81310 UTM Skudai, Johor, Malaysia. Wylai2@live.my

More information

Improving pedestrian dynamics modelling using fuzzy logic

Improving pedestrian dynamics modelling using fuzzy logic Improving pedestrian dynamics modelling using fuzzy logic Phillip Tomé 1, François Bonzon 1, Bertrand Merminod 1, and Kamiar Aminian 2 1 EPFL Geodetic Engineering Lab (TOPO) Station 18 1015 Lausanne Switzerland

More information

ScienceDirect. Early Diagnosis of Parkinson s Disease using a Smartphone

ScienceDirect. Early Diagnosis of Parkinson s Disease using a Smartphone Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 34 (2014 ) 305 312 The 11th International Conference on Mobile Systems and Pervasive Computing (MobiSPC-2014) Early Diagnosis

More information

An investigation of kinematic and kinetic variables for the description of prosthetic gait using the ENOCH system

An investigation of kinematic and kinetic variables for the description of prosthetic gait using the ENOCH system An investigation of kinematic and kinetic variables for the description of prosthetic gait using the ENOCH system K. OBERG and H. LANSHAMMAR* Amputee Training and Research Unit, University Hospital, Fack,

More information

Fail Operational Controls for an Independent Metering Valve

Fail Operational Controls for an Independent Metering Valve Group 14 - System Intergration and Safety Paper 14-3 465 Fail Operational Controls for an Independent Metering Valve Michael Rannow Eaton Corporation, 7945 Wallace Rd., Eden Prairie, MN, 55347, email:

More information

A Novel Approach to Predicting the Results of NBA Matches

A Novel Approach to Predicting the Results of NBA Matches A Novel Approach to Predicting the Results of NBA Matches Omid Aryan Stanford University aryano@stanford.edu Ali Reza Sharafat Stanford University sharafat@stanford.edu Abstract The current paper presents

More information

Development of Wearable Sensor Combinations for Human Lower Extremity Motion Analysis

Development of Wearable Sensor Combinations for Human Lower Extremity Motion Analysis Proceedings of the 2006 IEEE International Conference on Robotics and Automation Orlando, Florida - May 2006 Development of Wearable Sensor Combinations for Human Lower Extremity Motion Analysis Tao Liu,

More information

Intelligent Decision Making Framework for Ship Collision Avoidance based on COLREGs

Intelligent Decision Making Framework for Ship Collision Avoidance based on COLREGs Intelligent Decision Making Framework for Ship Collision Avoidance based on COLREGs Seminar Trondheim June 15th 2017 Nordic Institute of Navigation Norwegian Forum for Autonomous Ships SINTEF Ocean, Trondheim

More information

Pedestrian Trajectory Determination in Indoor Environment

Pedestrian Trajectory Determination in Indoor Environment Pedestrian Trajectory Determination in Indoor Environment Ľubica ILKOVIČOVÁ, Pavol KAJÁNEK, Alojz KOPÁČIK, Slovakia Keywords: Inertial Measurement System, Accelerometers, Gyroscopes, Step Detection Algorithm

More information

A differerential pressure anemometer

A differerential pressure anemometer A differerential pressure anemometer S. Kazadi, J. Lee, T.Lee, A. Bose June 6, 2015 Abstract There are a number of different applications where omnidirectional anemometers are needed rather than directional

More information

Activity classification and dead reckoning for pedestrian navigation with wearable sensors

Activity classification and dead reckoning for pedestrian navigation with wearable sensors IOP PUBLISHING Meas. Sci. Technol. 20 (2009) 015203 (10pp) MEASUREMENT SCIENCE AND TECHNOLOGY doi:10.1088/0957-0233/20/1/015203 Activity classification and dead reckoning for pedestrian navigation with

More information

A Study on the Human Impulse Characteristics Of the Standing Shooting Posture

A Study on the Human Impulse Characteristics Of the Standing Shooting Posture A Study on the Human Impulse Characteristics Of the Standing Shooting Posture Young-Shin Lee 1, a, Young-Jin Choi 2,b, Kyu-Hyun Han 2,c, Je-Wook Chae 3,d, Eui-Jung Choi 3,e and In-Woo Kim 3,f 1 Dept. of

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

Health + Track Mobile Application using Accelerometer and Gyroscope

Health + Track Mobile Application using Accelerometer and Gyroscope Health + Track Mobile Application using Accelerometer and Gyroscope Abhishek S Velankar avelank1@binghamton.edu Tushit Jain tjain3@binghamton.edu Pelin Gullu pgullu1@binghamton.edu ABSTRACT As we live

More information

Jogging and Walking Analysis Using Wearable Sensors *

Jogging and Walking Analysis Using Wearable Sensors * Engineering, 2013, 5, 20-24 doi:10.4236/eng.2013.55b005 Published Online May 2013 (http://www.scirp.org/journal/eng) Jogging and Walking Analysis Using Wearable Sensors * Ching ee ong, Rubita Sudirman,

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

Towards City-Scale Smartphone Sensing of Potentially Unsafe Pedestrian Movements

Towards City-Scale Smartphone Sensing of Potentially Unsafe Pedestrian Movements Towards City-Scale Smartphone Sensing of Potentially Unsafe Pedestrian Movements Trisha Datta Hillsborough Township Public School Hillsborough, NJ, USA tdatta@htps.us Shubham Jain WINLAB, Rutgers University

More information

Fall Detection by Helmet Orientation and Acceleration during Bike Riding

Fall Detection by Helmet Orientation and Acceleration during Bike Riding Fall Detection by Helmet Orientation and Acceleration during Bike Riding Ho-Rim Choi 1, Mun-Ho Ryu 2,3, Yoon-Seok Yang 2, Nak-Bum Lee 4 and Deok-Ju Jang 5 1 Department of Healthcare Engineering, Chonbuk

More information

Analysis of Acceleration Value based on the Location of the Accelerometer

Analysis of Acceleration Value based on the Location of the Accelerometer Analysis of Acceleration Value based on the Location of the Accelerometer Shin-Hyeong Choi Abstract Physical activity is essential for human health maintenance. We investigate the effects of acceleration

More information

Implementation of Height Measurement System Based on Pressure Sensor BMP085

Implementation of Height Measurement System Based on Pressure Sensor BMP085 017 nd International Conference on Test, Measurement and Computational Method (TMCM 017) ISBN: 978-1-60595-465-3 Implementation of Height Measurement System Based on Pressure Sensor BMP085 Gao-ping LIU

More information

BICYCLE SPEED ANALYSIS FOR ASSESSMENT OF BICYCLIST PRE-COLLISION SYSTEM

BICYCLE SPEED ANALYSIS FOR ASSESSMENT OF BICYCLIST PRE-COLLISION SYSTEM BICYCLE SPEED ANALYSIS FOR ASSESSMENT OF BICYCLIST PRE-COLLISION SYSTEM Li Fu, M.S. Renran Tian, Ph.D. Lingxi Li, Ph.D. Yaobin Chen, Ph.D. Department of Electrical and Computer Engineering Transportation

More information

Novel Technique for Gait Analysis Using Two Waist Mounted Gyroscopes

Novel Technique for Gait Analysis Using Two Waist Mounted Gyroscopes Old Dominion University ODU Digital Commons Computer Science Theses & Dissertations Computer Science Summer 2018 Novel Technique for Gait Analysis Using Two Waist Mounted Gyroscopes Ahmed Nasr Old Dominion

More information

OPTIMIZATION OF SINGLE STAGE AXIAL FLOW COMPRESSOR FOR DIFFERENT ROTATIONAL SPEED USING CFD

OPTIMIZATION OF SINGLE STAGE AXIAL FLOW COMPRESSOR FOR DIFFERENT ROTATIONAL SPEED USING CFD http:// OPTIMIZATION OF SINGLE STAGE AXIAL FLOW COMPRESSOR FOR DIFFERENT ROTATIONAL SPEED USING CFD Anand Kumar S malipatil 1, Anantharaja M.H 2 1,2 Department of Thermal Power Engineering, VTU-RO Gulbarga,

More information

Smart-Walk: An Intelligent Physiological Monitoring System for Smart Families

Smart-Walk: An Intelligent Physiological Monitoring System for Smart Families Smart-Walk: An Intelligent Physiological Monitoring System for Smart Families P. Sundaravadivel 1, S. P. Mohanty 2, E. Kougianos 3, V. P. Yanambaka 4, and M. K. Ganapathiraju 5 University of North Texas,

More information

ACTIVITY MONITORING SYSTEM

ACTIVITY MONITORING SYSTEM ACTIVITY MONITORING SYSTEM Hardik Shah 1, Mohit Srivastava 2, Sankarshan Shukla 3, Dr. Mita Paunwala 4 Student, Electronics and Communication, CKPCET, Surat, Gujarat, India 1 Student, Electronics and Communication,

More information

CONTROL VALVE WHAT YOU NEED TO LEARN?

CONTROL VALVE WHAT YOU NEED TO LEARN? CONTROL VALVE WHAT YOU NEED TO LEARN? i) The control valve characteristics refers to the relationship between the volumetric flowrate F (Y-axis) through the valve AND the valve travel or opening position

More information

HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE.

HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE. HIGH RESOLUTION DEPTH IMAGE RECOVERY ALGORITHM USING GRAYSCALE IMAGE Kazunori Uruma 1, Katsumi Konishi 2, Tomohiro Takahashi 1 and Toshihiro Furukawa 1 1 Graduate School of Engineering, Tokyo University

More information

MOTUS Wave Buoys. Powered By the Aanderaa MOTUS Directional Wave Sensor

MOTUS Wave Buoys. Powered By the Aanderaa MOTUS Directional Wave Sensor MOTUS Wave Buoys Powered By the Aanderaa MOTUS Directional Wave Sensor Two Buoys, One Brain The Aanderaa MOTUS directional wave sensor factory calibrated and currently available on two proven buoy platforms:

More information

MEMS Based Pedestrian Navigation System

MEMS Based Pedestrian Navigation System THE JOURNAL OF NAVIGATION (6), 59, 135 153. f The Royal Institute of Navigation doi:1.117/s373463353486 Printed in the United Kingdom MEMS Based Pedestrian Navigation System Seong Yun Cho (Electronics

More information

Vibration Analysis and Test of Backup Roll in Temper Mill

Vibration Analysis and Test of Backup Roll in Temper Mill Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Vibration Analysis and Test of Backup Roll in Temper Mill Yuanmin Xie College of Machinery and Automation, Wuhan University of Science and

More information

SpeedMax White Paper. Dynastream Innovations Inc. 228 River Avenue Cochrane, AB T4C 2C1. p f

SpeedMax White Paper. Dynastream Innovations Inc. 228 River Avenue Cochrane, AB T4C 2C1.   p f SpeedMax White Paper 228 River Avenue Cochrane, AB T4C 2C1 www.dynastream.com p 403.932.9292 f 403.932.6521 1 OVERVIEW Established in 1998, has world-leading expertise in the research and development of

More information

Tennis Plots: Game, Set, and Match

Tennis Plots: Game, Set, and Match Tennis Plots: Game, Set, and Match Michael Burch and Daniel Weiskopf Visualization Research Center, University of Stuttgart, Allmandring 19, 70569 Stuttgart {michael.burch,daniel.weiskopf}@visus.uni-stuttgart.de

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

THE FUNDAMENTALS OF THE AIR SAMPLER CALIBRATION-VERIFICATION PROCESS

THE FUNDAMENTALS OF THE AIR SAMPLER CALIBRATION-VERIFICATION PROCESS THE FUNDAMENTALS OF THE AIR SAMPLER CALIBRATION-VERIFICATION PROCESS Frank M. Gavila F&J SPECIALTY PRODUCTS, INC. 404 Cypress Road Ocala, Florida, USA 3447 fandj@fjspecialty.com INTRODUCTION The calibration

More information

Should bonus points be included in the Six Nations Championship?

Should bonus points be included in the Six Nations Championship? Should bonus points be included in the Six Nations Championship? Niven Winchester Joint Program on the Science and Policy of Global Change Massachusetts Institute of Technology 77 Massachusetts Avenue,

More information

ZIPWAKE DYNAMIC TRIM CONTROL SYSTEM OUTLINE OF OPERATING PRINCIPLES BEHIND THE AUTOMATIC MOTION CONTROL FEATURES

ZIPWAKE DYNAMIC TRIM CONTROL SYSTEM OUTLINE OF OPERATING PRINCIPLES BEHIND THE AUTOMATIC MOTION CONTROL FEATURES ZIPWAKE DYNAMIC TRIM CONTROL SYSTEM OUTLINE OF OPERATING PRINCIPLES BEHIND THE AUTOMATIC MOTION CONTROL FEATURES TABLE OF CONTENTS 1 INTRODUCTION 3 2 SYSTEM COMPONENTS 3 3 PITCH AND ROLL ANGLES 4 4 AUTOMATIC

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

Inter-comparison of wave measurement by accelerometer and GPS wave buoy in shallow water off Cuddalore, east coast of India

Inter-comparison of wave measurement by accelerometer and GPS wave buoy in shallow water off Cuddalore, east coast of India Indian Journal of Geo-Marine Sciences Vol. 43(1), January 2014, pp. 45-49 Inter-comparison of wave measurement by accelerometer and GPS wave buoy in shallow water off Cuddalore, east coast of India Sisir

More information

Novel empirical correlations for estimation of bubble point pressure, saturated viscosity and gas solubility of crude oils

Novel empirical correlations for estimation of bubble point pressure, saturated viscosity and gas solubility of crude oils 86 Pet.Sci.(29)6:86-9 DOI 1.17/s12182-9-16-x Novel empirical correlations for estimation of bubble point pressure, saturated viscosity and gas solubility of crude oils Ehsan Khamehchi 1, Fariborz Rashidi

More information

Gait Recognition. Yu Liu and Abhishek Verma CONTENTS 16.1 DATASETS Datasets Conclusion 342 References 343

Gait Recognition. Yu Liu and Abhishek Verma CONTENTS 16.1 DATASETS Datasets Conclusion 342 References 343 Chapter 16 Gait Recognition Yu Liu and Abhishek Verma CONTENTS 16.1 Datasets 337 16.2 Conclusion 342 References 343 16.1 DATASETS Gait analysis databases are used in a myriad of fields that include human

More information

Sample Solution for Problem 1.a

Sample Solution for Problem 1.a Sample Solution for Problem 1.a 1 Inverted Pendulum Model (IPM) 1.1 Equations of Motion and Ground Reaction Forces Figure 1: Scheme of the Inverted Pendulum Model (IPM). The equations of motion of this

More information

J. Electrical Systems 11-2 (2015): Regular paper. Abnormal gait detection using Hexagonal method on Model based Front view model

J. Electrical Systems 11-2 (2015): Regular paper. Abnormal gait detection using Hexagonal method on Model based Front view model Ahmad Puad Ismail 1,*, Nooritawati Md.Tahir 2, Regular paper Abnormal gait detection using Hexagonal method on Model based Front view model JES Journal of Electrical Systems Gait abnormality recognition

More information

The Intrinsic Value of a Batted Ball Technical Details

The Intrinsic Value of a Batted Ball Technical Details The Intrinsic Value of a Batted Ball Technical Details Glenn Healey, EECS Department University of California, Irvine, CA 9617 Given a set of observed batted balls and their outcomes, we develop a method

More information

Report for Experiment #11 Testing Newton s Second Law On the Moon

Report for Experiment #11 Testing Newton s Second Law On the Moon Report for Experiment #11 Testing Newton s Second Law On the Moon Neil Armstrong Lab partner: Buzz Aldrin TA: Michael Collins July 20th, 1969 Abstract In this experiment, we tested Newton s second law

More information

Prediction of Crossing Driveways of a Distracted Pedestrian from Walking Characteristics

Prediction of Crossing Driveways of a Distracted Pedestrian from Walking Characteristics International Journal of Internet of Things 2018, 7(1): 1-9 DOI: 10.5923/j.ijit.20180701.01 Prediction of Crossing Driveways of a Distracted Pedestrian from Walking Characteristics Hiroki Kitamura 1,*,

More information

Modeling and simulation of multiple personal mobility. vehicles in pedestrian flows using personal space

Modeling and simulation of multiple personal mobility. vehicles in pedestrian flows using personal space J. ADV. SIMULAT. SCI. ENG. Vol., No., 55-7. 5 Japan Society for Simulation Technology Modeling and simulation of multiple personal mobility vehicles in pedestrian flows using personal space Thai Quoc Pham,*,

More information

An indoor augmented-reality evacuation system for the Smartphone using personalized Pedometry

An indoor augmented-reality evacuation system for the Smartphone using personalized Pedometry Ahn and Han Human-centric Computing and Information Sciences 2012, 2:18 RESEARCH Open Access An indoor augmented-reality evacuation system for the Smartphone using personalized Pedometry Junho Ahn * and

More information

Research on Small Wind Power System Based on H-type Vertical Wind Turbine Rong-Qiang GUAN a, Jing YU b

Research on Small Wind Power System Based on H-type Vertical Wind Turbine Rong-Qiang GUAN a, Jing YU b 06 International Conference on Mechanics Design, Manufacturing and Automation (MDM 06) ISBN: 978--60595-354-0 Research on Small Wind Power System Based on H-type Vertical Wind Turbine Rong-Qiang GUAN a,

More information

Level MEASUREMENT 1/2016

Level MEASUREMENT 1/2016 Level MEASUREMENT 1/2016 AGENDA 2 A. Introduction B. Float method C. Displacer method D. Hydrostatic pressure method E. Capacitance method G. Ultrasonic method H. Radar method I. Laser method J. Level

More information

Fig 2.17: Topographic model: snow-free area (Snow boundary = red) Contour interval of 1 m.

Fig 2.17: Topographic model: snow-free area (Snow boundary = red) Contour interval of 1 m. Fig 2.17: Topographic model: snow-free area (Snow boundary = red) Contour interval of 1 m. Fig 2.18: Utsteinen ridge characteristics: (1) Utsteinen ridge granite bedrock; (2) Compacted snow (west-side);

More information

A Performanced Based Angle of Attack Display

A Performanced Based Angle of Attack Display A Performanced Based Angle of Attack Display David F. Rogers, Phd, ATP www.nar-associates.com The Problem The current angle of attack displays basically warn you about the approach to stall with yellow

More information

Siła-Nowicka, K. (2018) Analysis of Actual Versus Permitted Driving Speed: a Case Study from Glasgow, Scotland. In: 26th Annual GIScience Research UK Conference (GISRUK 2018), Leicester, UK, 17-20 Apr

More information

GEA FOR ADVANCED STRUCTURAL DYNAMIC ANALYSIS

GEA FOR ADVANCED STRUCTURAL DYNAMIC ANALYSIS SMART SOLUTIONS FOR VIBRATION MONITORING GEA FOR ADVANCED STRUCTURAL DYNAMIC ANALYSIS ANALYSIS OF CIVIL STRUCTURES - EXPO MERLATA PEDESTRIAN BRIDGE ABSTRACT Civil structures and in particular bridges and

More information

Measurement of dynamic comfort in cycling using wireless acceleration sensors

Measurement of dynamic comfort in cycling using wireless acceleration sensors Available online at www.sciencedirect.com Procedia Engineering ( ) 58 57 9 th Conference of the International Sports Engineering Association (ISEA) Measurement of dynamic comfort in cycling using wireless

More information

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments)

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Laboratory 2(a): Interfacing WiiMote Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Instructors: Edward A. Lee Sanjit A. Seshia University of California, Berkeley EECS

More information

Application of pushover analysis in estimating seismic demands for large-span spatial structure

Application of pushover analysis in estimating seismic demands for large-span spatial structure 28 September 2 October 2009, Universidad Politecnica de Valencia, Spain Alberto DOMINGO and Carlos LAZARO (eds.) Application of pushover analysis in estimating seismic demands for large-span spatial structure

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

Noise Characteristics Of A Check Valve Installed In R22 And R410A Scroll Compressors

Noise Characteristics Of A Check Valve Installed In R22 And R410A Scroll Compressors Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 22 Noise Characteristics Of A Check Valve Installed In R22 And R41A Scroll Compressors M.

More information

Critical Gust Pressures on Tall Building Frames-Review of Codal Provisions

Critical Gust Pressures on Tall Building Frames-Review of Codal Provisions Dr. B.Dean Kumar Dept. of Civil Engineering JNTUH College of Engineering Hyderabad, INDIA bdeankumar@gmail.com Dr. B.L.P Swami Dept. of Civil Engineering Vasavi College of Engineering Hyderabad, INDIA

More information

Algebra I: A Fresh Approach. By Christy Walters

Algebra I: A Fresh Approach. By Christy Walters Algebra I: A Fresh Approach By Christy Walters 2005 A+ Education Services All rights reserved. No part of this publication may be reproduced, distributed, stored in a retrieval system, or transmitted,

More information

Monitoring of wheel dressing operations for precision grinding

Monitoring of wheel dressing operations for precision grinding University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2003 Monitoring of wheel dressing operations for precision grinding Li

More information

Review of transportation mode detection approaches based on smartphone data

Review of transportation mode detection approaches based on smartphone data STRC 2017-17 th Swiss Transport Research Conference, Ascona Review of transportation mode detection approaches based on smartphone data Marija Nikoli, Michel Bierlaire May 18, 2017 1 / 23 Transportation

More information

Detection of Proportion of Different Gas Components Present in Manhole Gas Mixture Using Backpropagation Neural Network

Detection of Proportion of Different Gas Components Present in Manhole Gas Mixture Using Backpropagation Neural Network 01 International Conference on Information and Network Technology (ICINT 01) IPCSIT vol. 37 (01) (01) IACSIT Press, Singapore Detection of Proportion of Different Gas Components Present in Manhole Gas

More information

Failure Detection in an Autonomous Underwater Vehicle

Failure Detection in an Autonomous Underwater Vehicle Failure Detection in an Autonomous Underwater Vehicle Alec Orrick, Make McDermott, Department of Mechanical Engineering David M. Barnett, Eric L. Nelson, Glen N. Williams, Department of Computer Science

More information

Step-Detection and Adaptive Step-Length Estimation for Pedestrian Dead-Reckoning at Various Walking Speeds Using a Smartphone

Step-Detection and Adaptive Step-Length Estimation for Pedestrian Dead-Reckoning at Various Walking Speeds Using a Smartphone sensors Article Step-Detection and Adaptive Step-Length Estimation for Pedestrian Dead-Reckoning at Various Walking Speeds Using a Smartphone Ngoc-Huynh Ho, Phuc Huu Truong and Gu-Min Jeong * School of

More information

GaitAnalysisofEightLegedRobot

GaitAnalysisofEightLegedRobot GaitAnalysisofEightLegedRobot Mohammad Imtiyaz Ahmad 1, Dilip Kumar Biswas 2 & S. S ROY 3 1&2 Department of Mechanical Engineering, National Institute of Technology, Durgapur 2 Technology Innovation Centre,

More information

International Research Journal of Electronics and Computer Engineering Vol 1(3) Oct-Dec 2015

International Research Journal of Electronics and Computer Engineering Vol 1(3) Oct-Dec 2015 The PLC Based Design for the Air Compressor Control Process Miss Zahra Haghparas Electrical and electronic engineering Shiraz university of technology Shiraz, Iran f.haghparas@yahoo.com Ebrahim Abiri Associate

More information

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3

Tutorial for the. Total Vertical Uncertainty Analysis Tool in NaviModel3 Tutorial for the Total Vertical Uncertainty Analysis Tool in NaviModel3 May, 2011 1. Introduction The Total Vertical Uncertainty Analysis Tool in NaviModel3 has been designed to facilitate a determination

More information

EUROPEAN NEW CAR ASSESSMENT PROGRAMME (Euro NCAP) SLED TEST PROCEDURE FOR ASSESSING KNEE IMPACT AREAS

EUROPEAN NEW CAR ASSESSMENT PROGRAMME (Euro NCAP) SLED TEST PROCEDURE FOR ASSESSING KNEE IMPACT AREAS www.euroncap.com EUROPEAN NEW CAR ASSESSMENT PROGRAMME (Euro NCAP) SLED TEST PROCEDURE FOR ASSESSING KNEE IMPACT AREAS Version 1.0a December 2004 Sled Test Procedure for Assessing Knee Impact Areas (V1.0a)

More information

Neural Network in Computer Vision for RoboCup Middle Size League

Neural Network in Computer Vision for RoboCup Middle Size League Journal of Software Engineering and Applications, 2016, *,** Neural Network in Computer Vision for RoboCup Middle Size League Paulo Rogério de Almeida Ribeiro 1, Gil Lopes 1, Fernando Ribeiro 1 1 Department

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

Traffic Parameter Methods for Surrogate Safety Comparative Study of Three Non-Intrusive Sensor Technologies

Traffic Parameter Methods for Surrogate Safety Comparative Study of Three Non-Intrusive Sensor Technologies Traffic Parameter Methods for Surrogate Safety Comparative Study of Three Non-Intrusive Sensor Technologies CARSP 2015 Collision Prediction and Prevention Approaches Joshua Stipancic 2/32 Acknowledgements

More information

Towards determining absolute velocity of freestyle swimming using 3-axis accelerometers

Towards determining absolute velocity of freestyle swimming using 3-axis accelerometers Towards determining absolute velocity of freestyle swimming using 3-axis accelerometers Author Stamm, Andy, Thiel, David, Burkett, Brendan, James, Daniel Published 2011 Journal Title Procedia Engineering

More information

Analysis of stroke technique using acceleration sensor IC in freestyle swimming

Analysis of stroke technique using acceleration sensor IC in freestyle swimming Analysis of stroke technique using acceleration sensor IC in freestyle swimming Y. Ohgi, M. Yasumura Faculty of Environmental Information, Keio Univ., Japan H. Ichikawa Doctoral Prog. of Health and Sport

More information

Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB

Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB Compensator Design for Speed Control of DC Motor by Root Locus Approach using MATLAB Akshay C. Mahakalkar, Gaurav R. Powale 2, Yogita R. Ashtekar 3, Dinesh L. Mute 4, 2 B.E. 4 th Year Student of Electrical

More information

Movement-Type Classification Using Acceleration Sensor

Movement-Type Classification Using Acceleration Sensor Movement-Type Classification Using Acceleration Sensor Chu-Hui Lee and Jyun-Han Liou Abstract The most common moving processes include walking, running, going up stairs, and going down stairs. People distinguish

More information

Obtain a Simulation Model of a Pedestrian Collision Imminent Braking System Based on the Vehicle Testing Data

Obtain a Simulation Model of a Pedestrian Collision Imminent Braking System Based on the Vehicle Testing Data Obtain a Simulation Model of a Pedestrian Collision Imminent Braking System Based on the Vehicle Testing Data Bo Tang, Stanley Chien, and Yaobin Chen Transportation Active Safety Institute Indiana University-Purdue

More information

Design of Matched H-Plane Tee

Design of Matched H-Plane Tee Advances in Wireless and Mobile Communications. ISSN 973-6972 Volume 1, Number 1 (217), pp. 79-87 Research India Publications http://www.ripublication.com Design of Matched H-Plane Tee Debendra Kumar Panda

More information

Evaluation of the Klein HydroChart 3500 Interferometric Bathymetry Sonar for NOAA Sea Floor Mapping

Evaluation of the Klein HydroChart 3500 Interferometric Bathymetry Sonar for NOAA Sea Floor Mapping Evaluation of the Klein HydroChart 3500 Interferometric Bathymetry Sonar for NOAA Sea Floor Mapping Yuhui Ai, Straud Armstrong and Dean Fleury L-3 Communications Klein Associates, Inc. 11 Klein Dr. Salem,

More information

EVALUATION OF ENVISAT ASAR WAVE MODE RETRIEVAL ALGORITHMS FOR SEA-STATE FORECASTING AND WAVE CLIMATE ASSESSMENT

EVALUATION OF ENVISAT ASAR WAVE MODE RETRIEVAL ALGORITHMS FOR SEA-STATE FORECASTING AND WAVE CLIMATE ASSESSMENT EVALUATION OF ENVISAT ASAR WAVE MODE RETRIEVAL ALGORITHMS FOR SEA-STATE FORECASTING AND WAVE CLIMATE ASSESSMENT F.J. Melger ARGOSS, P.O. Box 61, 8335 ZH Vollenhove, the Netherlands, Email: info@argoss.nl

More information

Development of Fish type Robot based on the Analysis of Swimming Motion of Bluefin Tuna Comparison between Tuna-type Fin and Rectangular Fin -

Development of Fish type Robot based on the Analysis of Swimming Motion of Bluefin Tuna Comparison between Tuna-type Fin and Rectangular Fin - Development of Fish type Robot based on the Analysis of Swimming Motion of Bluefin Tuna Comparison between Tuna-type Fin and Rectangular Fin - Katsuya KUGAI* Abstract The swimming motion of Tuna type fishes

More information

Design of Altitude Measurement System for Aerospace Applications (Digital Barometric Altimeter)

Design of Altitude Measurement System for Aerospace Applications (Digital Barometric Altimeter) Journal of Space Technology, Vol 7, No 1, July 2017 Design of Altitude Measurement System for Aerospace Applications (Digital Barometric Altimeter) Nasreldeen Ali Adam Moutaman Mirghani Dafalla Abstract

More information

FORECASTING OF ROLLING MOTION OF SMALL FISHING VESSELS UNDER FISHING OPERATION APPLYING A NON-DETERMINISTIC METHOD

FORECASTING OF ROLLING MOTION OF SMALL FISHING VESSELS UNDER FISHING OPERATION APPLYING A NON-DETERMINISTIC METHOD 8 th International Conference on 633 FORECASTING OF ROLLING MOTION OF SMALL FISHING VESSELS UNDER FISHING OPERATION APPLYING A NON-DETERMINISTIC METHOD Nobuo Kimura, Kiyoshi Amagai Graduate School of Fisheries

More information

LX Compass module 3 Electronic compass device User manual

LX Compass module 3 Electronic compass device User manual LX Compass module 3 Electronic compass device User manual LX navigation d.o.o., Tkalska 10 SLO 3000 Celje, tel: + 386 3 490 46 70, fax: + 386 3 490 46 71 info@lxnavigation.si, http://www.lxnavigation.com

More information

Proceedings of Meetings on Acoustics

Proceedings of Meetings on Acoustics Proceedings of Meetings on Acoustics Volume 9, 2010 http://acousticalsociety.org/ 159th Meeting Acoustical Society of America/NOISE-CON 2010 Baltimore, Maryland 19-23 April 2010 Session 1pBB: Biomedical

More information

Influence of wind direction on noise emission and propagation from wind turbines

Influence of wind direction on noise emission and propagation from wind turbines Influence of wind direction on noise emission and propagation from wind turbines Tom Evans and Jonathan Cooper Resonate Acoustics, 97 Carrington Street, Adelaide, South Australia 5000 ABSTRACT Noise predictions

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

Fail operational controls for an independent metering valve

Fail operational controls for an independent metering valve Failure mode and CMA valves Fail operational controls for an independent metering valve By: Michael Rannow email: michaelrannow@eaton.com Eaton Corporation, 7945 Wallace Rd. Eden Prairie, MN, 55347 As

More information