Alarm Correlation Research and Implementation Based on Similar Data Sources

Size: px
Start display at page:

Download "Alarm Correlation Research and Implementation Based on Similar Data Sources"

Transcription

1 4th International Conference on Machinery, Materials and Information Technology Applications (ICMMITA 201) Alarm Correlation Research and Implementation Based on Similar Data Sources Yi Tang1, a and Dahai Jin2, b 1 Institute of Network Technology, Beijing University of Posts and Telecommunications, Beijing, 10087, China 2 Institute of Network Technology, Beijing University of Posts and Telecommunications, Beijing, 10087, China a tangyi_bupt@1.com, bjindh@bupt.edu.cn Keywords: Alarm correlation, software test system, similar data sources. Abstract. In the modern society, static defect detection technology become an effective way to build reliable software. But the phenomena of misinformation and failing to report in the result of static defect detection makes testers needed to confirm the false alarms one by one manually. It is necessary to improve efficiency of alarm confirmation. In this paper, an alarm correlation method for similar data sources is proposed. The method uses data sources of the alarm to generate symbol information the define point information. With the symbolic information, we can generate a feature function which is consist of all alarm variable s DEF point symbols. According to feature function, we can generate an equivalent signature code. Finally, by comparing the similarity of the signatures to determine whether there is an association between the two alarm. Testers only need to pick up one or a few alarms in a class for confirmation after apply this technology which greatly improve the system s efficiency. 1. Introduction Static defect detection technology is a kind of software test technology based on the program fragment analysis. It has become an effective way to build reliable software for its no program execution and effective in small probability defects test. But the phenomena of misinformation and failing to report in the result of static defect detection makes testers needed to confirm the false alarms one by one manually[1]. A lot of artificial confirmation work waste time and energy, reduce the defect efficiency, and even lead to software developers and managements refuse to use static detection tools in the process of software development. To improve efficiency of alarm confirmation, the alarm correlation technology developed[2]. This technology gets together for a class of associated alarms. Testers only need to pick up one or a few alarms in a class for confirmation, which greatly shorten the confirm time. Nowadays, There are two main techniques in alarm correlation field. One is a method based on data mining and machine learning to associate defect automatically[], while the other one is based on abstract interpretation to calculate error state into precise semantics, then resect, disseminate or backtrack with this precise semantics information to associate the defect[4]. The advantage of these methods is that more defect can be grouped together. However, the existing method based on machine learning is difficult to keep balance between association accuracy and correlation efficiency, on the other side, the alarm correlation technology based on symbol execution and constraint solving is limited within the process, and it needs super control flow graph to associate grouping technology which limits the scale of the program and affects the association efficiency. In this paper, an alarm correlation method for similar data sources is proposed. The method uses data sources of the alarm to generate symbol information the value information, and with the structure of the alarm to generate into feature function, then with the feature function to generate a Copyright 2017, the Authors. Published by Atlantis Press. This is an open access article under the CC BY-NC license ( 1155

2 signature code. Finally, by comparing the similarity of the signatures to determine whether there is an correlation between the two alarm. The higher the similarity, the higher the association degree. 2. Related Work The root cause of an alarm is its assignment operation of related variables, which is directly associated with the assigned object, the method to assign the object, and the composition way of the assigned data. Here are some basic concepts about assignment and the classification of alarms. A Basic Concepts Two kinds of variables appear in the program: DEF and USE. DEF Point: To Assign the variable (write to variable memory) USE Point: Take the value of the variable (read from the variable memory) DEF point is the data source of a variable, which would affect the current variable values. B. Types of Alarm Correlation Based on Similar Data Sources The origin of alarms are DEF points. Alarm point and DEF points may appear in the same function, and also in different functions. According to the above rules, DEF points could be divided into inside a function (in the same function with alarm point) and across functions(not in the same function with alarm point). Across functions points include function parameters, global variables, return values and side effects. As shown in the figure below: Inside a Function 1 int jhb_npd_2_f(void) 2 { FILE *stream; 4 fpos_t filepos; 5 stream = fopen("myfile.txt", "w+"); //fopen may return null pointer fseek(stream, 0L, SEEK_END); //NULL POINTER DEFECT 7 fgetpos(stream, &filepos); // NULL POINTER DEFECT 8 ftell(stream); // NULL POINTER DEFECT return 0; 10 } In this code snippet, null pointer alarms are reported in, 7, 8 lines. The fopen function may returns null pointer may in line 5. If the pointer is assigned to variable stream, fseek fgetpos ftell functions would throw null pointer exceptions when dereference variable stream. So that the alarm in lines,7,8 are all caused by the fopen function s return pointer may be null. Above all, these alarms have the same data source, so they can get together to one class. Across Functions 1 char * str_to_nstr (str_t * str) 2 { char *nstr = xmalloc (str->len + 1); //xmalloc() may return null pointer 4 int pos = 0; 5 for (; pos < str->len; pos++) { 7 nstr[pos] = str->str[pos]; // NPD 8 } nstr[pos + 1] = 0; 10 return nstr; 11 } 12 str_t * str_make (str_t * str) 1 { 14 if (!str) 15 { 1 str = xmalloc (sizeof *str);//xmalloc()may return null pointer 115

3 17 18 str->str = xmalloc (str->mem = CHUNK); // NPD } return str; 1 20 } In this code snippet, null pointer alarms are reported in 7,, 17 lines. The variable nstr is defined and receive the return value of xmalloc() in function str_to_nstr(), which is dereference in 7, lines; function parameter str receive the return value of xmalloc() in function str_make(). As the return value of xmalloc() may be null, nstr and str, which is dereference in line7, and 17 may also be null. These alarms could get together for a class because all of them were caused by the null pointer of xmalloc() returns.. Architecture of Our Alarm Correlation System DTS(Defect Testing System) is a static alarm detection tool based on defect mode, which is developed by Beijing University of Posts and Telecommunications in many national 8 projects. At present, it supports three languages of C, C++ and Java. The system is installed on the operating system in the form of client software, and the potential defects in the source code are found by using the static analysis program. All the alarms used in this paper is detected by DTS. In this paper, we proposed a method of alarm corrlation based on symbolic DEF point. The method design is shown in the figure below: Input Position of the Alarm Point Classify the alarm point according its features Build the feature function of the alarm point Generate equivalent defect signature code Associated to defect according to signature code Fig. 1 The System Design Figure A. Input Position of the Alarm Point Input location information of the alarm point, which including file path, abstract syntax tree and control flow graph nodes. B. Classify the alarm point according its features Classify the alarm point according to the following three features: According to the number of variables in alarm point, the alarm point could be divided into single-valued and multiple-valued; According to the define level, the alarm point is divided into single layer and multilayer; According to the number of alarm data sources, the alarm can be divided into single-source and multi-sources. C. Build the feature function of the alarm point Alarm is rooted in the variable s DEF points. Now we symbolic all the DEF points into structure S Structure C Constant V Variable P Position. For Example, In the first code snippet line 5: 1157

4 Code : stream = fopen("myfile.txt", "w+"); Symbol:[structure:[Function:fopen] constancts:[ "MYFILE.TXT" "w+"] variables:[null] position:[method: jhb_npd_2_f line:5] According to the symbolic information of DEF points and feature of alarm points, we can generate a DEF function which is a consist of all alarm variable s DEF point symbols. For single layer alarm, the DEF function is only one layer; for multilayer alarm, each layer has a DEF function. The DEF point symbol information is got from control flow graph for inside function alarm. While for across functions situation, the information is taken from function abstract messages. D. Generate equivalent defect signature code According to the feature function information, generate equivalent signature code. Every layer has a signature code, which is the binary hash code of the feature function. E. Associated to defect according to signature code As the signature code is equal with feature function, which is the root cause of an alarm, we could compute equivalence partitioning for alarm points. In each partition, only one or few alarm need to be confirmed manually. 4. Implementation In this section, we make some experiments to detect the effect of this design. All the alarms is detected by DTS(Defect Test System). A. Experimental Environment Table 1 Experimental Environment Table Hardware environment Software environment: Processor: Intel(R) Xeon(R) CPU E520 Operating system: Microsoft Windows JDK: 1.7.0_02. Memory: 4.00GB. DTS: 8.0 B. Result and analysis The experimental results show in table below, including the files number of the project, the alarms number, the associated alarms number and correlation. Project name Table 2 Alarm Correlation Result File Alarm Associated alarms number number Inside a Across functio functions n Tota l correlatio n sphinxbase % Spell % From the above experimental results, it can be seen that the alarm correlation method based on similar data sources can be effective to establish a link between equivalent alarms, for the correction is nearly 0 percent. Clearly, application of this technology would significant shorten the time of confirmation. 5. Conclusion and future work In this paper, the alarm correlation method is based on similarity of symbolic expression and calculation of DEF-USE chain, which have higher demand to the precision of the abstract explanation of. Besides, since it depends on the information generated in alarm detection process instead of special correlation calculation, the correlation effect is not significant compared with some other methods. In the future work, we will try our best to further reduce the energy needed by the human review on 1158

5 the premise of not reduce correlation reliability. For example, combining with Heckman and William s actionable alert identification techniques(aait)[5], we can just check the dominant "active" defects, namely according to check whether the leading defects is in a state of "activity" or not. In a word, the method that this paper has put forward need much more practice and studying to enrich and perfect, and it will be more practicably. References [1]. Dahai Jin Yunzhan Gong Yawen Wang. Software testing technology. Information and Communication Technologies, 2015(). [2]. Dalin zhang. Research on static defect detection to optimize some key technologies. Beijing University of Posts and Telecomunications 2014(5). [] Kremenek T, Ashcraft K, Yang J, et al. Correlation exploitation in error ranking. ACM SIGSOFT Software Engineering Notes, ACM, 2004, 2(): 8-. [4] Le W, Soffa M L. Path-based fault correlations[c]//proceedings of the eighteenth ACM SIGSOFT international symposium on Foundations of software engineering. ACM, 2010: [5] Heckman S, Williams L. A model building process for identifying actionable static analysis alerts. In: Proceedings of IEEE ICST'0. Denver: IEEE Press,

Design of Humidity Monitoring System Based on Virtual Instrument

Design of Humidity Monitoring System Based on Virtual Instrument Available online at www.sciencedirect.com Procedia Engineering 24 (2011) 759 763 2011 International Conference on Advances in Engineering Design of Humidity Monitoring System Based on Virtual Instrument

More information

Design of the Fiber-optic Fence Warning System with Distributed Video Real-Time Display Function Qiang-yi YI and Zheng-hong YU *

Design of the Fiber-optic Fence Warning System with Distributed Video Real-Time Display Function Qiang-yi YI and Zheng-hong YU * 2016 International Conference on Artificial Intelligence: Techniques and Applications (AITA 2016) ISBN: 978-1-60595-389-2 Design of the Fiber-optic Fence Warning System with Distributed Video Real-Time

More information

Construction of Wireless Fire Alarm System Based on ZigBee Technology

Construction of Wireless Fire Alarm System Based on ZigBee Technology Available online at www.sciencedirect.com Procedia Engineering 11 (2011) 308 313 The 5 th Conference on Performance-based Fire and Fire Protection Engineering Construction of Wireless Fire Alarm System

More information

Performance Neuro-Fuzzy for Power System Fault Location

Performance Neuro-Fuzzy for Power System Fault Location International Journal of Engineering and Technology Volume 3 No. 4, April, 2013 Performance Neuro-Fuzzy for Power System Fault Location 1,2 Azriyenni, 1 M.W. Mustafa 1 Electrical Engineering, Fakulti Kejuruteraan

More information

Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM

Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM Liu Yang 1, Xinrong Cheng 2, Zhijie Jiang 3, and Zhijun Ren 1 1 Engineering College, China Agricultural University,

More information

A Design Method Based on Inherent Testability of Remote Control and Monitoring System for Marine Main Engine

A Design Method Based on Inherent Testability of Remote Control and Monitoring System for Marine Main Engine 5th International Conference on Advanced Engineering Materials and Technology (AEMT 2015) A Design Method Based on Inherent Testability of Remote Control and Monitoring System for Marine Main Engine Xuedong

More information

Intrusion Detection System: Facts, Challenges and Futures. By Gina Tjhai 13 th March 2007 Network Research Group

Intrusion Detection System: Facts, Challenges and Futures. By Gina Tjhai 13 th March 2007 Network Research Group Intrusion Detection System: Facts, Challenges and Futures By Gina Tjhai 13 th March 2007 Network Research Group 1 Overview Introduction Challenges of current IDS Potential solutions Alarm Correlation Existing

More information

Design of Intelligent Humidity Sensing Watering System Based on MCU

Design of Intelligent Humidity Sensing Watering System Based on MCU Advances in Intelligent Systems Research (AISR), volume 145 2017 International Conference on Electronic Industry and Automation (EIA 2017) Design of Intelligent Humidity Sensing Watering System Based on

More information

SIMULATION ANALYSIS ON THE FRESH AIR HANDLING UNIT WITH LIQUID DESICCANT TOTAL HEAT RECOVERY

SIMULATION ANALYSIS ON THE FRESH AIR HANDLING UNIT WITH LIQUID DESICCANT TOTAL HEAT RECOVERY SIMULATION ANALYSIS ON THE FRESH AIR HANDLING UNIT WITH LIQUID DESICCANT TOTAL HEAT RECOVERY Xiaoyun Xie, Yidan Tang, Xiaoqin Yi, Shuanqiang Liu,Yi Jiang Department of Building Science and Technology,

More information

INDOOR HUMAN THERMAL COMFORT OPTIMAL CONTROL WITH DESICCANT WHEEL COOLING SYSTEM

INDOOR HUMAN THERMAL COMFORT OPTIMAL CONTROL WITH DESICCANT WHEEL COOLING SYSTEM Available online at www.sciencedirect.com ScienceDirect Energy Procedia 61 (2014 ) 882 886 The 6 th International Conference on Applied Energy ICAE2014 INDOOR HUMAN THERMAL COMFORT OPTIMAL CONTROL WITH

More information

Video Smoke Detection using Deep Domain Adaptation Enhanced with Synthetic Smoke Images

Video Smoke Detection using Deep Domain Adaptation Enhanced with Synthetic Smoke Images Video Smoke Detection using Deep Domain Adaptation Enhanced with Synthetic Smoke Images Gao Xu, Qixing Zhang, Gaohua Lin, Jinjun Wang, Yongming Zhang State Key Laboratory of Fire Science, University of

More information

Design and Implementation of Sewage Treatment Control System

Design and Implementation of Sewage Treatment Control System 7th International Conference on Applied Science, Engineering and Technology (ICASET 2017) Design and Implementation of Sewage Treatment Control System Baocheng Lu1, a, Mei Lin1,b, Wenyan Li1,c 1 Binzhou

More information

Procedia - Social and Behavioral Sciences 195 ( 2015 ) World Conference on Technology, Innovation and Entrepreneurship

Procedia - Social and Behavioral Sciences 195 ( 2015 ) World Conference on Technology, Innovation and Entrepreneurship Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Sciences 195 ( 2015 ) 1846 1850 World Conference on Technology, Innovation and Entrepreneurship Fire Detection Systems

More information

Dynamic Evacuation Guidance Considering Occupant Distribution

Dynamic Evacuation Guidance Considering Occupant Distribution Research Collection Conference Paper Dynamic Evacuation Guidance Considering Occupant Distribution Author(s): Lee, Minhyuck; Nan, Hyunwoo; Jun, Chulmin Publication Date: 2018-01-15 Permanent Link: https://doi.org/10.3929/ethz-b-000225598

More information

Fuzzy Logic Based Coolant Leak Detection

Fuzzy Logic Based Coolant Leak Detection Volume 118 No. 5 2018, 825-832 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Fuzzy Logic Based Coolant Leak Detection 1 J.Suganthi, M.E., 2 G. Nithya,

More information

Analysis of freeze protection methods for recuperators used in energy recovery from exhaust air

Analysis of freeze protection methods for recuperators used in energy recovery from exhaust air Analysis of freeze protection methods for recuperators used in energy recovery from exhaust air Anna Pacak 1,*, Andrzej Jedlikowski 1, Demis Pandelidis 1, and Sergey Anisimov 1 1 Wrocław University of

More information

Open Access Operation Modes and Energy Analysis of a New Ice-Storage Air- Conditioning System

Open Access Operation Modes and Energy Analysis of a New Ice-Storage Air- Conditioning System Send Orders for Reprints to reprints@benthamscience.ae The Open Electrical & Electronic Engineering Journal, 215, 9, 7-14 7 Open Access Operation Modes and Energy Analysis of a New Ice-Storage Air- Conditioning

More information

The Design of MLX90621 Based Intelligent Lighting Control System Hui-jiao Wang*, Meng-meng Liu and Cong-cong Shi

The Design of MLX90621 Based Intelligent Lighting Control System Hui-jiao Wang*, Meng-meng Liu and Cong-cong Shi International Conference on Computer Networks and Communication Technology (CNCT2016) The Design of MLX90621 Based Intelligent Lighting Control System Hui-jiao Wang*, Meng-meng Liu and Cong-cong Shi School

More information

The Mode of Urban Renewal Base on the Smart City Theory under the Background of New Urbanization

The Mode of Urban Renewal Base on the Smart City Theory under the Background of New Urbanization Frontiers of Engineering Management DOI 10.15302/J-FEM-2015035 ENGINEERING MANAGEMENT THEORIES AND METHODOLOGIES Yi-hua Mao, Hong-yu Li, Qin-rui Xu The Mode of Urban Renewal Base on the Smart City Theory

More information

ScienceDirect. Development progress of critical equipment in the CSNS cryogenic hydrogen system

ScienceDirect. Development progress of critical equipment in the CSNS cryogenic hydrogen system Available online at www.sciencedirect.com ScienceDirect Physics Procedia 67 (2015 ) 233 238 25th International Cryogenic Engineering Conference and the International Cryogenic Materials Conference in 2014,

More information

Development of Bionic Air Cooler Used in High Temperature Coal Mine

Development of Bionic Air Cooler Used in High Temperature Coal Mine Advances in Natural Science Vol. 3, No. 2, 2010, pp. 206-212 www.cscanada.net ISSN 1715-7862 [PRINT] ISSN 1715-7870 [ONLINE] www.cscanada.org *The 3rd International Conference of Bionic Engineering* Development

More information

An improved Algorithm of Generating Network Intrusion Detector Li Ma 1, a, Yan Chen 1, b

An improved Algorithm of Generating Network Intrusion Detector Li Ma 1, a, Yan Chen 1, b An improved Algorithm of Generating Network Intrusion Detector Li Ma 1, a, Yan Chen 1, b 1 Department of Information Engineering Guilin University of Aerospace Technology, Guilin China a E-mail: woshiml@sina.com,

More information

Applied Data Science: Using Machine Learning for Alarm Verification

Applied Data Science: Using Machine Learning for Alarm Verification Applied Data Science: Using Machine Learning for Alarm Verification by Jan Stampfli and Kurt Stockinger Zurich University of Applied Sciences, Switzerland Introduction False alarms triggered by sensors

More information

A Numerical study of the Fire-extinguishing Performance of Water Mist in an Opening Machinery Space

A Numerical study of the Fire-extinguishing Performance of Water Mist in an Opening Machinery Space Available online at www.sciencedirect.com Procedia Engineering 31 (2012) 734 738 International Conference on Advances in Computational Modeling and Simulation A Numerical study of the Fire-extinguishing

More information

Using BIM model for Fire Emergency Evacuation Plan

Using BIM model for Fire Emergency Evacuation Plan Using BIM model for Fire Emergency Evacuation Plan Adam Stančík 1,, Roman Macháček 2, and Jiří Horák 1 1 Brno University of Technology, Institute of Computer Aided Engineering and Computer Science, 602

More information

Reducing energy consumption of airconditioning systems in moderate climates by applying indirect evaporative cooling

Reducing energy consumption of airconditioning systems in moderate climates by applying indirect evaporative cooling Reducing energy consumption of airconditioning systems in moderate climates by applying indirect evaporative cooling Aleksandra Cichoń,*, Anna Pacak, Demis Pandelidis, and Sergey Anisimov Department of

More information

The design of automatic remote monitoring system for the temperature and humidity based on GPRS Hui ZHANG 1, a, Honghua WANG 2,a

The design of automatic remote monitoring system for the temperature and humidity based on GPRS Hui ZHANG 1, a, Honghua WANG 2,a Applied Mechanics and Materials Submitted: 2014-06-06 ISSN: 1662-7482, Vols. 599-601, pp 1102-1105 Accepted: 2014-06-09 doi:10.4028/www.scientific.net/amm.599-601.1102 Online: 2014-08-11 2014 Trans Tech

More information

Research on Decision Tree Application in Data of Fire Alarm Receipt and Disposal

Research on Decision Tree Application in Data of Fire Alarm Receipt and Disposal Research Journal of Applied Sciences, Engineering and Technology 5(22): 5217-5222, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: October 09, 2012 Accepted: December

More information

4th International Conference on Sensors, Measurement and Intelligent Materials (ICSMIM 2015)

4th International Conference on Sensors, Measurement and Intelligent Materials (ICSMIM 2015) 4th International Conference on Sensors, Measurement and Intelligent Materials (ICSMIM 2015) Multi-stage Series Heat Pump Drying System with Dehumidification Simulation and Experiment Verification Chao

More information

Multi-sensor System For Indoor Environment Monitoring Zheng-yu Wanga, and Xiao-ru Zhangb

Multi-sensor System For Indoor Environment Monitoring Zheng-yu Wanga, and Xiao-ru Zhangb 2nd International Conference on Materials Science, Machinery and Energy Engineering (MSMEE 2017) Multi-sensor System For Indoor Environment Monitoring Zheng-yu Wanga, and Xiao-ru Zhangb Harbin Institute

More information

Implementation of an Embedded Microcontroller-Based Intrusion Detection System

Implementation of an Embedded Microcontroller-Based Intrusion Detection System Journal of Advances in Science and Engineering 1 (2018), 27-32 Journal of Advances in Science and Engineering (JASE) Implementation of an Embedded Microcontroller-Based Intrusion Detection System a Unabor,

More information

An Alarm Correlation Algorithm for Network Management Based on Root Cause Analysis

An Alarm Correlation Algorithm for Network Management Based on Root Cause Analysis An Alarm Correlation Algorithm for Network Management Based on Root Cause Analysis Dae Sun Kim*, Hiroyuki Shinbo*, Hidetoshi Yokota* *KDDI R&D Laboratories, Inc. Fujimino, Saitama, Japan da-kim@kddilabs.jp,

More information

Design of Electronic Control System for Robot Cleaning Machine Based on Profibus-DP. Wei GUAN

Design of Electronic Control System for Robot Cleaning Machine Based on Profibus-DP. Wei GUAN 2017 International Conference on Applied Mechanics and Mechanical Automation (AMMA 2017) ISBN: 978-1-60595-471-4 Design of Electronic Control System for Robot Cleaning Machine Based on Profibus-DP Wei

More information

Design of Mine Safety Detection Alarm Based on Single-chip Mingtao Ma

Design of Mine Safety Detection Alarm Based on Single-chip Mingtao Ma 6th International Conference on Electronic, Mechanical, Information and Management (EMIM 2016) Design of Mine Safety Detection Alarm Based on Single-chip Mingtao Ma Jilin College of Agricultural Science

More information

Design of Classroom Intelligent Lighting System Based on SCM. Jiale Zheng1, a

Design of Classroom Intelligent Lighting System Based on SCM. Jiale Zheng1, a 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) Design of Classroom Intelligent Lighting System Based on SCM Jiale Zheng1, a 1 North China Electric

More information

Available online at ScienceDirect. Procedia Engineering 121 (2015 )

Available online at   ScienceDirect. Procedia Engineering 121 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 121 (2015 ) 1238 1244 9th International Symposium on Heating, Ventilation and Air Conditioning (ISHVAC) and the 3rd International

More information

DEVELOPMENT OF THE TANGO ALARM SYSTEM

DEVELOPMENT OF THE TANGO ALARM SYSTEM 10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, WE3B.1-70 (2005) DEVELOPMENT OF THE TANGO ALARM SYSTEM L. Pivetta Sincrotrone Trieste, Trieste, Italy

More information

Industrial Ray DR/ ICT integration inspection testing system. (2) Software and Testing

Industrial Ray DR/ ICT integration inspection testing system. (2) Software and Testing 17th World Conference on Nondestructive Testing, 25-28 Oct 2008, Shanghai, China Industrial Ray DR/ ICT integration inspection testing system (2) Software and Testing Liang Lihong 1,Ding Kejian 2,Ding

More information

2012 International Symposium on Safety Science and Technology Factor analysis of high-rise building fires reasons and fire protection measures

2012 International Symposium on Safety Science and Technology Factor analysis of high-rise building fires reasons and fire protection measures Available online at www.sciencedirect.com Procedia Engineering 45 (2012 ) 643 648 2012 International Symposium on Safety Science and Technology Factor analysis of high-rise building fires reasons and fire

More information

Available online at ScienceDirect. Procedia Engineering 84 (2014 )

Available online at  ScienceDirect. Procedia Engineering 84 (2014 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 84 (2014 ) 553 557 2014ISSST, 2014 International Symposium on Safety Science and Technology Research on fire endurance of tempered

More information

COOLING OF DESKTOP COMPUTER USING HEAT PIPES

COOLING OF DESKTOP COMPUTER USING HEAT PIPES Proceedings of the International Conference on Mechanical Engineering 07 (ICME07) 29-31 December 07, Dhaka, Bangladesh ICME07- COOLING OF DESKTOP COMPUTER USING HEAT PIPES Tanvir Reza Tanim, Tanvir Hussain,

More information

System Description AutroMaster V Presentation System

System Description AutroMaster V Presentation System System Description AutroMaster V Presentation System AMASTERV-SYSTEM/XGB, Rev. B, 2018-05-07, Autronica Fire And Security AS COPYRIGHT This publication, or parts thereof, may not be reproduced in any form,

More information

MODELLING AND OPTIMIZATION OF DIRECT EXPANSION AIR CONDITIONING SYSTEM FOR COMMERCIAL BUILDING ENERGY SAVING

MODELLING AND OPTIMIZATION OF DIRECT EXPANSION AIR CONDITIONING SYSTEM FOR COMMERCIAL BUILDING ENERGY SAVING MODELLING AND OPTIMIZATION OF DIRECT EXPANSION AIR CONDITIONING SYSTEM FOR COMMERCIAL BUILDING ENERGY SAVING V. Vakiloroaya*, J.G. Zhu, and Q.P. Ha School of Electrical, Mechanical and Mechatronic Systems,

More information

Design and Research of the Commercial Digital VRV Multi-Connected Units With Sub-Cooled Ice Storage System

Design and Research of the Commercial Digital VRV Multi-Connected Units With Sub-Cooled Ice Storage System Purdue University Purdue e-pubs International Refrigeration and Air Conditioning Conference School of Mechanical Engineering 2006 Design and Research of the Commercial Digital VRV Multi-Connected Units

More information

The Design of Temperature Control System for Vegetable Greenhouse

The Design of Temperature Control System for Vegetable Greenhouse The Design of Temperature Control System for Vegetable Greenhouse Chao Tang Electronics and Information Engineering, Changchun University of science and technology, Jilin Changchun 300, China Abstract

More information

Moxa Proactive Monitoring User s Manual

Moxa Proactive Monitoring User s Manual User s Manual Edition 2, May 2016 www.moxa.com/product 2016 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used only

More information

New fire control system design for fire fighting and rescue equipment Jianguo LUO1, a, Zehao BU2, b

New fire control system design for fire fighting and rescue equipment Jianguo LUO1, a, Zehao BU2, b 6th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2016) New fire control system design for fire fighting and rescue equipment Jianguo LUO1, a, Zehao BU2, b 1 Department

More information

PERFORMANCE EVALUATION OF THE MINIATRIZED CATALYTIC COMBUSTION TYPE HYDROGEN SENSOR

PERFORMANCE EVALUATION OF THE MINIATRIZED CATALYTIC COMBUSTION TYPE HYDROGEN SENSOR PERFORMANCE EVALUATION OF THE MINIATRIZED CATALYTIC COMBUSTION TYPE HYDROGEN SENSOR Hiroshi Miyazaki 1, Hiromasa Tanjyoh 2, Kengo Suzuki 3, Tomoaki Iwami 4 1 New cosmos electric, co., ltd., Osaka, 543-0036,

More information

Experimental Study on the Effects of Compression Parameters on Molding Quality of Dried Fish Floss

Experimental Study on the Effects of Compression Parameters on Molding Quality of Dried Fish Floss Experimental Study on the Effects of Compression arameters on Molding Quality of Dried Fish Floss Hongmei Xu, Li Zong, Ling Li, and Jing Zhang College of Engineering and Technology, Huazhong Agricultural

More information

2012 International Symposium on Safety Science and Technology Investigation on compressed air foams fire-extinguishing model for oil pan fire

2012 International Symposium on Safety Science and Technology Investigation on compressed air foams fire-extinguishing model for oil pan fire Available online at.sciencedirect.com Procedia Engineering 45 (212 ) 663 668 212 International Symposium on Safety Science and Technology Investigation on compressed air foams fire-extinguishing model

More information

Improving rail network velocity: A machine learning approach to predictive maintenance

Improving rail network velocity: A machine learning approach to predictive maintenance Improving rail network velocity: A machine learning approach to May 27, 2015 SS2015 - Seminar Machine Learning: Predictive Maintenance Svenja Neitzel 1 Outline 1. Motivation Rail network velocity Train

More information

Teaching Landscape Spatial Design with Grading Studies: An Experiment Based on High Fidelity DTM

Teaching Landscape Spatial Design with Grading Studies: An Experiment Based on High Fidelity DTM 302 Full Paper Teaching Landscape Spatial Design with Grading Studies: An Experiment Based on High Fidelity DTM Pang Li 1 1 Landscape Architecture Department, School of Architecture, Southeast University/China

More information

Proceedings Design, Fabrication and Optimization of a Silicon MEMS Natural Gas Sensor

Proceedings Design, Fabrication and Optimization of a Silicon MEMS Natural Gas Sensor Proceedings Design, Fabrication and Optimization of a Silicon MEMS Natural Gas Sensor Marjan Shaker 1,, Erik Sundfør 3, Gaël Farine 3, Conor Slater 3, Pierre-André Farine 1 and Danick Briand, * 1 Electronic

More information

Batt-Safe Battery String Monitoring System

Batt-Safe Battery String Monitoring System Batt-Safe Battery String Monitoring System Technical White Paper October 2010 Introduction Battery monitoring systems are categorized as either cell monitors or string monitors. Battery cell monitors provide

More information

Best Row Number Ratio Study of Surface Air Coolers for Segmented Handling Air-conditioning System

Best Row Number Ratio Study of Surface Air Coolers for Segmented Handling Air-conditioning System International Conference on Civil, Transportation and Environment (ICCTE 201) Best Row Number Ratio Study of Surface Air Coolers for Segmented Handling Air-conditioning System Pengjie Fan1, a, Caihua Liang1,

More information

JOVY SYSTEMS RE User Manual Rev. 1.00

JOVY SYSTEMS RE User Manual Rev. 1.00 JOVY SYSTEMS RE-7550 User Manual Rev. 1.00 Index - Introduction... 3 - Copyrights and Liability disclaimer........ 3 - Specifications.. 4 - Safety/ Caution instructions....... 4 - RE-7550 hardware description......

More information

Artificial Intelligence Enables a Network Revolution

Artificial Intelligence Enables a Network Revolution *ITU FL-ML5G Artificial Intelligence Enables a Network Revolution April 25, 2018 Network Technology Research Institute, China Unicom Artificial Intelligence Enables a Network Revolution A Part 1 AI application

More information

Battery control panel BCP-136

Battery control panel BCP-136 Battery control panel BCP-136 Operating manual (136-3-24102013) St. Petersburg 2013 v.3.4 Table of Contents 1. GENERAL...3 2. DELIVERY SET...3 3. TECHNICAL SPECIFICATIONS...4 4. PRINCIPLE OF OPERATION...5

More information

Shortcut Model for Predicting Refrigeration Cycle Performance

Shortcut Model for Predicting Refrigeration Cycle Performance 17 A publication of CHEMICAL ENGINEERING TRANSACTIONS VOL. 5, 15 Guest Editors: Petar Sabev Varbanov, Jiří Jaromír Klemeš, Sharifah Rafidah Wan Alwi, Jun Yow Yong, Xia Liu Copyright 15, AIDIC Servizi S.r.l.,

More information

A study of Transient Performance of A Cascade Heat Pump System

A study of Transient Performance of A Cascade Heat Pump System Available online at www.sciencedirect.com ScienceDirect Energy Procedia 79 (2015 ) 131 136 2015 International Conference on Alternative Energy in Developing Countries and Emerging Economies A study of

More information

Heat Transfer Enhancement using Herringbone wavy & Smooth Wavy fin Heat Exchanger for Hydraulic Oil Cooling

Heat Transfer Enhancement using Herringbone wavy & Smooth Wavy fin Heat Exchanger for Hydraulic Oil Cooling Enhancement using Herringbone wavy & Smooth Wavy fin Exchanger for Hydraulic Oil Cooling 1 Mr. Ketan C. Prasadi, 2 Prof. A.M. Patil 1 M.E. Student, P.V.P.I.T.,Budhagaon,Sangli AP-India 2 Associate Professor,

More information

Supporting Information

Supporting Information Electronic Supplementary Material (ESI) for RSC Advances. This journal is The Royal Society of Chemistry 2016 Supporting Information Modeling and Optimizing Performance of PVC/PVB Ultrafiltration Membranes

More information

The Application of Multi-threaded Socket and Picture Field Technology of DataGridView in the Development of Alarm Receiver Software

The Application of Multi-threaded Socket and Picture Field Technology of DataGridView in the Development of Alarm Receiver Software Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 1397 1404 2012 International Conference on Solid State Devices and Materials Science The Application of Multi-threaded Socket and Picture

More information

International Forum on Energy, Environment Science and Materials (IFEESM 2015)

International Forum on Energy, Environment Science and Materials (IFEESM 2015) The Comparison and Analysis of Humidity Environment between Floor and Ceiling Radiant Cooling Systems that Combined with Displacement Ventilation Kai SUN 1 a *, Chuan-hui ZHOU 1 1 College of Urban Construction,

More information

Simulation of Full-scale Smoke Control in Atrium

Simulation of Full-scale Smoke Control in Atrium Available online at www.sciencedirect.com Procedia Engineering 11 (2011) 608 613 The 5 th Conference on Performance-based Fire and Fire Protection Engineering Simulation of Full-scale Smoke Control in

More information

Design and Implementation of a Real Time Wireless Monitor System for Urinary Incontinence

Design and Implementation of a Real Time Wireless Monitor System for Urinary Incontinence Int. J. Communications, Network and System Sciences, 2017, 10, 252-263 http://www.scirp.org/journal/ijcns ISSN Online: 1913-3723 ISSN Print: 1913-3715 Design and Implementation of a Real Time Wireless

More information

GSM BASED GARBAGE AND WASTE COLLECTION BIN OVERFLOW INDICATOR

GSM BASED GARBAGE AND WASTE COLLECTION BIN OVERFLOW INDICATOR GSM BASED GARBAGE AND WASTE COLLECTION BIN OVERFLOW INDICATOR [1] Ishwarya C, [2] Jayashree S, [3] Yesodha P [1] Department of Electronics and Communication Engineering, Prince Shri Venkateshwara Padmavathy

More information

Study in Step by Step Electric Energy Meter Connection Detection Method

Study in Step by Step Electric Energy Meter Connection Detection Method TELKOMNIKA Indonesian Journal of Electrical Engineering Vol. 14, No. 1, April 2015, pp. 90 ~ 96 DOI: 10.11591/telkomnika.v14i1.7662 90 Study in Step by Step Electric Energy Meter Connection Detection Method

More information

Available online at ScienceDirect. Procedia Engineering 135 (2016 )

Available online at  ScienceDirect. Procedia Engineering 135 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 135 (2016 ) 170 174 Evacuation Strategy of Ultra-tall Towers among Stairs and Elevators Juan-juan Chen a,b, *, Xiao-gang Wang

More information

FIMD: Fine-grained Device-free Motion Detection

FIMD: Fine-grained Device-free Motion Detection ICPADS 2012 FIMD: Fine-grained Device-free Motion Detection Jiang Xiao, Kaishun Wu, Youwen Yi, Lu Wang, Lionel M. Ni Department of Computer Science and Engineering Hong Kong University of Science and Technology

More information

The design of the human body infrared thermometer

The design of the human body infrared thermometer The design of the human body infrared thermometer Chenjie Zhang Changchun University of Science and Technology, Changchun 130022, China Abstract In order to overcome the main shortcoming of the traditional

More information

Smart Garbage Monitoring System for Waste Management

Smart Garbage Monitoring System for Waste Management Smart Garbage Monitoring System for Waste Management Norfadzlia Mohd Yusof 1,*, Aiman Zakwan Jidin 1, and Muhammad Izzat Rahim 1 1 Faculty of Engineering Technology, Universiti Teknikal Malaysia Melaka,

More information

ZONE MODEL VERIFICATION BY ELECTRIC HEATER

ZONE MODEL VERIFICATION BY ELECTRIC HEATER , Volume 6, Number 4, p.284-290, 2004 ZONE MODEL VERIFICATION BY ELECTRIC HEATER Y.T. Chan Department of Building Services Engineering, The Hong Kong Polytechnic University, Hong Kong, China ABSTRACT Selecting

More information

Systematic Review in Software Engineering. Luiz Fernando Ferreira Gomes de Assis Prof. Dr. João Porto de Albuquerque Profa. Dra. Elisa Yumi Nakagawa

Systematic Review in Software Engineering. Luiz Fernando Ferreira Gomes de Assis Prof. Dr. João Porto de Albuquerque Profa. Dra. Elisa Yumi Nakagawa Systematic Review in Software Engineering Luiz Fernando Ferreira Gomes de Assis Prof. Dr. João Porto de Albuquerque Profa. Dra. Elisa Yumi Nakagawa 3 000 floods have occurred around the world, between

More information

Reduction of alerts in automated systems based on a combined analysis of process connectivity and alarm logs

Reduction of alerts in automated systems based on a combined analysis of process connectivity and alarm logs Ian David Lockhart Bogle and Michael Fairweather (Editors), Proceedings of the 22nd European Symposium on Computer Aided Process Engineering, 17-20 June 2012, London. 2012 Elsevier B.V. All rights reserved.

More information

Alarm handling by SMS in ALERT

Alarm handling by SMS in ALERT Micromedia International Alarm handling by SMS Author: Jens Eberle Pages : 9 Company: Micromedia International Date : 29/10/2013 Version : 1.1 Réf. : Alarm Handling by SMS.docx [Commentaires ] Alarm handling

More information

Patriot Systems Limited

Patriot Systems Limited COPYRIGHT 1997 - The Patriot Systems Ltd. Patriot Alarm Monitoring Automation Package is licensed for use on one computer, by the original person, or company, or organization whose name is registered with

More information

Design of Multi-Sensors Cooperation Control System for Intelligent Building

Design of Multi-Sensors Cooperation Control System for Intelligent Building Energy and Power Engineering, 2017, 9, 495-502 http://www.scirp.org/journal/epe ISSN Online: 1947-3818 ISSN Print: 1949-243X Design of Multi-Sensors Cooperation Control System for Intelligent Building

More information

Experion LX Direct Station Specification

Experion LX Direct Station Specification Technical Information Experion LX Direct Station Specification LX03-210-110 Release 110 January 2014, Version 1 Experion LX Station Specification, LX03-210-110 Revision History Revision Date Description

More information

Experimental Study of Initial Process of Frost on Heat Exchanger Surface of Refrigerated Transport Vehicle

Experimental Study of Initial Process of Frost on Heat Exchanger Surface of Refrigerated Transport Vehicle Experimental Study of Initial Process of Frost on Heat Exchanger Surface of Refrigerated Transport Vehicle Zhengda Fang 1, a, Peng Xia 1, b School of Shanghai University of Engineering Science, Shanghai

More information

Research Article Footstep and Vehicle Detection Using Seismic Sensors in Wireless Sensor Network: Field Tests

Research Article Footstep and Vehicle Detection Using Seismic Sensors in Wireless Sensor Network: Field Tests Distributed Sensor Networks Volume 213, Article ID 12386, 8 pages http://dx.doi.org/1.1155/213/12386 Research Article Footstep and Vehicle Detection Using Seismic Sensors in Wireless Sensor Network: Field

More information

Before you install ProSeries Express Edition software for network use

Before you install ProSeries Express Edition software for network use Before you install ProSeries Express Edition software for network use The following pages describe system requirements and other information you need to know before installing ProSeries Express Edition

More information

Recording Server PRELOADED

Recording Server PRELOADED Configuration English Recording Server PRELOADED Rev. 1.1.2 / 2015-12-09 Module BANK Information about copyright, trademarks, design patents 2015 Dallmeier electronic The reproduction, distribution and

More information

IE Code IE Competency Title Credit OAC Ref.

IE Code IE Competency Title Credit OAC Ref. Compulsory Workplace Competency Standards Level Four IE Code IE Competency Title Credit OAC Ref. IE119-4WC Design and draw electrical and electronic drawings including schematics, 4 F5 maintain documentation

More information

A design of automatic boiler intelligent alert system based on the wireless AD hoc network

A design of automatic boiler intelligent alert system based on the wireless AD hoc network 5th International Conference on Computer Sciences and Automation Engineering (ICCSAE 2015) A design of automatic boiler intelligent alert system based on the wireless AD hoc network Shiping Li1, a Maodong

More information

The study of sewage sludge thermo-drying efficiency

The study of sewage sludge thermo-drying efficiency Available online at www.sciencedirect.com Procedia Environmental Sciences 16 (2012 ) 363 367 The 7 th International Conference on Waste Management Technology The study sewage sludge thermo-drying efficiency

More information

The Effect of Quantity of Salt on the Drying Characteristics of Fresh Noodles

The Effect of Quantity of Salt on the Drying Characteristics of Fresh Noodles Available online at www.sciencedirect.com ScienceDirect Agriculture and Agricultural Science Procedia 2 ( 2014 ) 207 211 ST26943, 2nd International Conference on Agricultural and Food Engineering, CAFEi2014

More information

Experimental Implementation of Spectrum Sensing Using Cognitive Radio

Experimental Implementation of Spectrum Sensing Using Cognitive Radio 1 Experimental Implementation of Spectrum Sensing Using Cognitive Radio Prepared by: Kendall Schmalz Faculty Advisors: Dr. Yanxiao Zhao Assistant Professor, Electrical and Computer Engineering Dr. Thomas

More information

Healthy Buildings 2017 Europe July 2-5, 2017, Lublin, Poland

Healthy Buildings 2017 Europe July 2-5, 2017, Lublin, Poland Healthy Buildings 2017 Europe July 2-5, 2017, Lublin, Poland Paper ID 0320 ISBN: 978-83-7947-232-1 The Analysis of the Air Velocity Distribution above the Trench Heater with Natural Convection Mariusz

More information

Structure Improvement and Flow Field Analysis of Condenser in Freeze drying Equipment

Structure Improvement and Flow Field Analysis of Condenser in Freeze drying Equipment 6th International Conference on Mechatronics, Computer and Education Informationization (MCEI 2016) Structure Improvement and Flow Field Analysis of Condenser in Freeze drying Equipment Runling Peng1,

More information

Experimental Investigate on the Performance of High Temperature Heat Pump Using Scroll Compressor

Experimental Investigate on the Performance of High Temperature Heat Pump Using Scroll Compressor Experimental Investigate on the Performance of High Temperature Heat Pump Using Scroll Compressor Mingyue Huang a, Xiangfei Liang a,b *, Rong Zhuang a a Gree Electric Appliances, Inc.of Zhuhai,Zhuhai 519070,China

More information

HOW TO REDUCE ENERGY CONSUMPTION OF BUILT-IN REFRIGERATORS?

HOW TO REDUCE ENERGY CONSUMPTION OF BUILT-IN REFRIGERATORS? HOW TO REDUCE ENERGY CONSUMPTION OF BUILT-IN REFRIGERATORS? Corresponding author: Jasmin Geppert University of Bonn Household and Appliance Technology Section Nussallee 5 D-53115 Bonn E-Mail: haushaltstechnik@uni-bonn.de

More information

Experimental Study on Match for Indoor and Outdoor Heat Exchanger of Residential Airconditioner

Experimental Study on Match for Indoor and Outdoor Heat Exchanger of Residential Airconditioner Purdue University Purdue e-pubs International Refrigeration and Air Conditioning Conference School of Mechanical Engineering 2014 Experimental Study on Match for Indoor and Outdoor Heat Exchanger of Residential

More information

A Study on Landscape Design Paradigm from the Perspective of Visual Impact and Experience

A Study on Landscape Design Paradigm from the Perspective of Visual Impact and Experience 2017 3rd International Conference on Social Science, Management and Economics (SSME 2017) ISBN: 978-1-60595-462-2 A Study on Landscape Design Paradigm from the Perspective of Visual Impact and Experience

More information

Experimental Study on Performance of Double pipe Length on Instantaneous Air Source Heat Pump Water Heater. Yin Shaoyou 1, a

Experimental Study on Performance of Double pipe Length on Instantaneous Air Source Heat Pump Water Heater. Yin Shaoyou 1, a International Symposium on Energy Science and Chemical Engineering (ISESCE 2015) Experimental Study on Performance of Double pipe Length on Instantaneous Air Source Heat Pump Water Heater Yin Shaoyou 1,

More information

for Precision Planter System Based on MSP430-CT171 Lianming Xia, Xiangyou Wang*, Duanyang Geng, Qingfeng Zhang

for Precision Planter System Based on MSP430-CT171 Lianming Xia, Xiangyou Wang*, Duanyang Geng, Qingfeng Zhang Performance Monitoring System for Precision Planter Based on MSP430-CT171 Lianming Xia, Xiangyou Wang*, Duanyang Geng, Qingfeng Zhang School of Agricultural and Food Engineering, Shandong University of

More information

Basic CFD model of heat pipe

Basic CFD model of heat pipe Basic CFD model of heat pipe Peter Hrabovský 1,*, Zuzana Kolková 1, Marián Mokrý 1 and Patrik Nemec 2 1 University of Zilina Reasearch Centre, Univerzitná 8215/1, 010 26 Zilina, Slovakia 2 University of

More information

STACK EFFECT IN LIGHT WELL OF HIGH RISE APARTMENT BUILDING

STACK EFFECT IN LIGHT WELL OF HIGH RISE APARTMENT BUILDING STACK EFFECT IN LIGHT WELL OF HIGH RISE APARTMENT BUILDING H. Kotani, R. Satoh, T. Yamanaka Dept. of Architectural Engineering, School of Engineering, Osaka University, Osaka, Japan ABSTRACT The purpose

More information

Design of Gear Defect Detection System Based on Machine Vision

Design of Gear Defect Detection System Based on Machine Vision IOP Conference Series: Earth and Environmental Science PAPER OPEN ACCESS Design of Gear Defect Detection System Based on Machine Vision To cite this article: Yu Wang et al 208 IOP Conf. Ser.: Earth Environ.

More information

inter.noise 2000 The 29th International Congress and Exhibition on Noise Control Engineering August 2000, Nice, FRANCE

inter.noise 2000 The 29th International Congress and Exhibition on Noise Control Engineering August 2000, Nice, FRANCE Copyright SFA - InterNoise 2000 1 inter.noise 2000 The 29th International Congress and Exhibition on Noise Control Engineering 27-30 August 2000, Nice, FRANCE I-INCE Classification: 7.9 SOUND QUALITY AND

More information