Open Access Design of a Python-Based Wireless Network Optimization and Testing System

Size: px
Start display at page:

Download "Open Access Design of a Python-Based Wireless Network Optimization and Testing System"

Transcription

1 Send Orders for Reprints to The Open Automation and Control Systems Journal, 2015, 7, Open Access Design of a Python-Based Wireless Network Optimization and Testing System Hongxue Yang * Beijing Polytechnic, Beijing, , P.R. China Abstract: As an object-oriented dynamic scripting language, Python has been widely applied in scientific computation, image processing and network communication fields, etc. However, there is no enough attention paid to it in automated test. A Python-based client/server auto-dial testing mode, which is successfully applied in actual wireless network optimization testing, is introduced. The actual application shows that this mode brings flexible and high-efficiency features of Python programming into full play and significantly improves the efficiency of testing system. Keywords: Automated testing, Python technology, Wireless network. 1. INTRODUCTION Developing from 3G to 4G is the trend of communication industry, and large-scale construction of CMCC s TD-LTE base station and other network equipment has already begun. According to the calculations, investment put by CMCC in 4GLTE base station equipment has increased from 4.65 billion yuan in 2012 to 27.5 billion yuan in With successful development of TD-LTE, the communication technologies which are dominant in China, will be developed and evolved continuously [1]. In addition, the large-scale construction of TD wireless network contributes to the increasing demand on the auto-dial testing software corresponding with it. A method for design and realization of this Pythonbased wireless network automated testing system is presented in this paper. The application shows that this kind of structure may bring into full play the flexible simple Python programming and high VC implementation efficiency features, improve the testing efficiency markedly and save the manpower cost. 2. CHARACTERISTICS OF PYTHON LANGUAGE The predominant characteristic of Python lies in rapid development function. Compared with any other programming languages, Python enables software designers to pay more attention to the problem itself, rather than implementation of details. Its main features are listed as follows: (1) Object-oriented: Python supports both processoriented and object-oriented programming. In the processoriented [2] language, the program is constructed by either processes or only functions of reusable codes. However, in the object-oriented language, the program is constructed by objects which are composed of both data and functions. * Address correspondence to this author at the College of Telecommunication Engineering, Beijing Polytechnic, Beijing Chaoyang District Road No. 2,100016, P.R. China; Tel: ; Fax: ; yhxzxb@sina.com (2) Expandability: if you want to run a section of key code faster or keep some algorithms private, write part of programs with C or C++ and then apply them in Python program. (3) Embeddability: Python can be embedded into a C/C++ program to provide scripting features for program users. Fast speed: running speed is very fast as the underlay of Python and most of standard libraries and the third-party libraries are all written with C programming language. (4) Transferability: owning to its nature of open sourcing, Python has been transferred to various platforms [3]. (5) Interpretability: inside the computer, Python interpreter converts the source code into an intermediate form of byte code and then interprets and runs it in the form of machine language that can be identified by the computer, which makes Python simpler and easier to be transferred. In wireless network auto-dial testing system, just like building blocks, the testers can write scripts by means of Python interface functions of open test service, and flexible configuration of test service can be realized with a limited programming knowledge. 3. APPLICATION OF PYTHON TECHNOLOGY IN WIRELESS NETWORK AUTOMATED TESTING SYSTEM 3.1. System Structure The system consists of two major parts: CMP (Central Management Platform) and MSP (Mobile Server Probe), as shown in Fig. (1). Where, CMP software, mainly used as the client for users, incorporates monitoring and management of terminal status, analyzing, compiling and executing of Python scripts, and centralized display of terminal data and network testing information, etc. As shown in Fig. (2), the MSP software takes charge of communication with CMP, real service exe / Bentham Open

2 354 The Open Automation and Control Systems Journal, 2015, Volume 7 Hongxue Yang Fig. (1). Overall System Framework Diagram. Fig. (2). Function Block Diagram of CMP and MSP. cution of control terminal, automatic identification of terminals provided by different manufacturers and acquisition of terminal information, etc Design of Python-Based Auto-dial Testing Operation Mode For purpose of convenient expansion and flexibility in use of auto-dial testing system, Python scripting language is now introduced and serves as the writing and running space for use cases. In order to ensure that testers will not be affected by introduction of Python scripts, client/server operation mode is adopted between the testing script and the auto-dial testing system. The auto-dial testing system serves as a server while the scripts constitute the client. A UDP interface is added in Python operand, in order to execute the function to send corresponding control commands to PythonSERVER; it is necessary to add a PythonSERVER to the auto-dial testing system side and complete corresponding sorting and abstraction of original ATP functions, so as to form an API interface and make preparations for calling of scripts (as shown in Fig. 3).

3 Design of a Python-based Wireless Network Optimization The Open Automation and Control Systems Journal, 2015, Volume Fig. (3). Operation mode of auto-dial testing system s client/server. Table 1. Design of auto-dial testing system s Python interface. Interface Name Function Description Parameter Description MultiAdtOpenCom(Adt_Id nport strtype) Open COM port [Adt_Id, Id number of MSP], [nport, port of number], [strtype, type of UE] MultiAdtCloseCom(Adt_Id nport) Close COM port [Adt_Id, Id number of MSP], [nport, port number] MultiAdtDialConnect(Adt_Id strnumber strconnectname nport struetype) MultiAdtDisConnect(Adt_Id strdisconnectname nport struetype) MultiAdtDownLoad(Adt_Id strip struseid strpassword strdownloadfilename strinterfacename struetype) MultiAdtUpLoad(Adt_Id strip struseid strpassword struploadfilename strinterfacename struetype) Connect to a network Disconnect from network Download service Upload service [Adt_Id, Id number of MSP], [strconnectname, name of network card],[nport, opened port], [strtype, type of UE] [Adt_Id, Id number of MSP], [strconnectname, name of network card] [Adt_Id id number of MSP] [strip FTP Server IP] [struseid FTP ServerName][strPassword FTP Server password] [strdownloadfile- Name DownLoadFileName] [strinterfacename InterFaceName] [strtype UeType] [Adt_Id id number of MSP][strIP FTP Server IP][strUseId FTP ServerName][strPassword FTP Server password] [struploadfilename UpLoadFileName] [strinterfacename InterFaceName][strType UeType] MultiAdtAddRouteMetric(Adt_Id Add routing table [Adt_Id, id number of MSP] ATPCommand(CommandName *Parameter) General client interface [CommandName, name of commands][ Parameter, parameters] SendData(strData) Send data and receive response [strdata, data content] Python client completes interpretation and assembly of various commands sent by use cases and handles various responses of PythonServer. When designing client, take thin client as the principle, and attach importance to process (rather than processing) during use of client. PythonServer completes interpretation and assembly of various commands sent by the client and handles various responses from Python client. When designing Server side, abstraction and induction of basic functions shall be enhanced, so as to ensure that codes can be kept at certain scale and will not be extended when functions of auto-dial system are expanded continuously. In order to ensure smooth execution of control process between the client and the server and clear consistency in user usage, it is agreed as follows: (1) UDP communication is adopted between the client and the server and all contents of communications are written by plaintext character strings, in order to facilitate usage and testing; (2) A request/response mode is adopted in communication mechanism; the time required for response of requests shall not be longer than human reaction time and the response shall be accompanied with results for the commands whose results can be obtained immediately. For example, for PS service requests under normal circumstances, the commands whose response results cannot be obtained immediately can be divided into different processes, in order to ensure real-time performance of response Design of Python Interface of Auto-dial Testing System Network data acquisition interface, terminal information acquisition interface, service testing and terminal control interface are Python scripting interfaces. Design of key interfaces is described in Table 1.

4 356 The Open Automation and Control Systems Journal, 2015, Volume 7 Hongxue Yang Fig. (4). Python script processing flow. Fig. (5). Trend of newly increased use cases Python Script Processing Flow Testers write the testing scripts with Python script editor or graphic interface script editor provided by CMP [4]. After writing of Python scripts is completed, CMP software loads the use cases and activates the executing processes to analyze Python scripts, as shown in Fig. (4). Control module, communication module, service module, Python module and test results generation module would be involved in execution of typical testing tasks. Taking the typical download service as an example, control module activates Python editor to execute scripts and the script command message is sent to communication module in the form of UDP after Python scripts have been downloaded to MSP. Being in real-time monitoring state, the communication module will notify Python interface module to analyze the received UDP messages. Then, the Python interface module figures out the type of service to be executed and sends it to the control module. The control module will activate the thread and calls the service module to be tested. The service module executes specific services and records desired testing results in a real-time way. After the service execution is completed, return to the control module and exit the thread. In this way, a new thread will be activated to execute corresponding testing tasks every time different messages are received. After Python interface module has resolved scripting finalization message, control module closes testing results file and be ready to execute test report uploading process. 4. SYSTEM PERFORMANCE TEST After the Python-based LTE automatic testing system is applied, the number of newly increased testing use cases in testing of wireless network decreases from the original 1,442 to 89 (as shown in Fig. 5) and the time spent in testing a use

5 Design of a Python-based Wireless Network Optimization The Open Automation and Control Systems Journal, 2015, Volume Fig. (6). Trend of lines of script code. case suite on a regression ergodicity basis decreases from 30 days (manual test) to 12 hours now. Moreover, the number of lines of script codes written by the testers decreases from the original highest 28,525 to 5,460 as shown in Fig. (6). CONCLUSION Wireless network testing is complex and characterized by multiple scenarios and scattered indicators. As a scripting language for automatic testing, Python is simple and flexible and testers are enabled to expand their own test cases arbitrarily. Only a few simple functions need to be called without paying attention to the specific service flow. The wireless network automatic testing system as described in this paper is based on the scripts written with Python language and thus improves the testing efficiency greatly. ACKNOWLEDGEMENTS Declared none. REFERENCES [1] l. Ferrigno, A. Pietrosanto, and V. Paciello, A Bluetooth- based proposal of instrument wireless interface, IEEE Transactions on Instrumentation and Measurement, vol. 54, no. 1, pp , Dec [2] H. Shim, I. Joe, and J. Lee, "SMS spam filtering system using SVM", RNIS, vol. 7, pp. 5-6, [3] J. Luo, and M. H. Yang, "An authentication and disposable addressing scheme for filtering spam", Journal of Cases on Information Technology, vol. 6, no. 2, pp , [4] Y. Wang, and J. Cai, Research and implementation of API testbased distributed test framework, Computer Engineering and Design, vol. 68, pp , Jan CONFLICT OF INTEREST The author confirms that this article content has no conflict of interest. Received: December 15, 2014 Revised: January 04, 2015 Accepted: February 25, 2015 Hongxue Yang; Licensee Bentham Open. This is an open access article licensed under the terms of the Creative Commons Attribution Non-Commercial License ( which permits unrestricted, non-commercial use, distribution and reproduction in any medium, provided the work is properly cited.

Research on Design Reuse System of Parallel Indexing Cam Mechanism Based on Knowledge

Research on Design Reuse System of Parallel Indexing Cam Mechanism Based on Knowledge Send Orders for Reprints to reprints@benthamscience.ae 40 The Open Mechanical Engineering Journal, 2015, 9, 40-46 Open Access Research on Design Reuse System of Parallel Indexing Cam Mechanism Based on

More information

Open Access Research on the Prediction Model of Material Cost Based on Data Mining

Open Access Research on the Prediction Model of Material Cost Based on Data Mining Send Orders for Reprints to reprints@benthamscience.ae 1062 The Open Mechanical Engineering Journal, 2015, 9, 1062-1066 Open Access Research on the Prediction Model of Material Cost Based on Data Mining

More information

Open Access Mobile Management Method for SDN-Based Wireless Networks

Open Access Mobile Management Method for SDN-Based Wireless Networks Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 2063-2069 2063 Open Access Mobile Management Method for SDN-Based Wireless Networks Min

More information

Open Access Design and Development of Network Application Layer Sniffer Analysis Software. Yujiao Wang and Haiyun Lin *

Open Access Design and Development of Network Application Layer Sniffer Analysis Software. Yujiao Wang and Haiyun Lin * Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 167-172 167 Open Access Design and Development of Network Application Layer Sniffer Analysis

More information

RETRACTED ARTICLE. Web-Based Data Mining in System Design and Implementation. Open Access. Jianhu Gong 1* and Jianzhi Gong 2

RETRACTED ARTICLE. Web-Based Data Mining in System Design and Implementation. Open Access. Jianhu Gong 1* and Jianzhi Gong 2 Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2014, 6, 1907-1911 1907 Web-Based Data Mining in System Design and Implementation Open Access Jianhu

More information

FSRM Feedback Algorithm based on Learning Theory

FSRM Feedback Algorithm based on Learning Theory Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 699-703 699 FSRM Feedback Algorithm based on Learning Theory Open Access Zhang Shui-Li *, Dong

More information

Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing Environments

Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing Environments Send Orders for Reprints to reprints@benthamscience.ae 368 The Open Automation and Control Systems Journal, 2014, 6, 368-373 Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing

More information

Mobile Management Method for SDN-based Wireless Networks

Mobile Management Method for SDN-based Wireless Networks Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 2063-2069 2063 Open Access Mobile Management Method for SDN-based Wireless Networks Min

More information

Open Access A New Optical Design of Worm Precision Detection Based on FPGA

Open Access A New Optical Design of Worm Precision Detection Based on FPGA Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 473-478 473 Open Access A New Optical Design of Worm Precision Detection Based on FPGA Wang

More information

Open Access Research on Algorithms of Spatial-Temporal Multi-Channel Allocation Based on the Greedy Algorithm for Wireless Mesh Network

Open Access Research on Algorithms of Spatial-Temporal Multi-Channel Allocation Based on the Greedy Algorithm for Wireless Mesh Network Send Orders for Reprints to reprints@benthamscience.ae 690 The Open Electrical & Electronic Engineering Journal, 2014, 8, 690-694 Open Access Research on Algorithms of Spatial-Temporal Multi-Channel Allocation

More information

Open Access Research on Construction of Web Computing Platform Based on FOR- TRAN Components

Open Access Research on Construction of Web Computing Platform Based on FOR- TRAN Components Send Orders for Reprints to reprints@benthamscience.ae 2078 The Open Automation and Control Systems Journal, 2015, 7, 2078-2082 Open Access Research on Construction of Web Computing Platform Based on FOR-

More information

Design of Smart Home System Based on ZigBee Technology and R&D for Application

Design of Smart Home System Based on ZigBee Technology and R&D for Application Energy and Power Engineering, 2016, 8, 13-22 Published Online January 2016 in SciRes. http://www.scirp.org/journal/epe http://dx.doi.org/10.4236/epe.2016.81002 Design of Smart Home System Based on ZigBee

More information

Open Access The Three-dimensional Coding Based on the Cone for XML Under Weaving Multi-documents

Open Access The Three-dimensional Coding Based on the Cone for XML Under Weaving Multi-documents Send Orders for Reprints to reprints@benthamscience.ae 676 The Open Automation and Control Systems Journal, 2014, 6, 676-683 Open Access The Three-dimensional Coding Based on the Cone for XML Under Weaving

More information

Fault Diagnosis of Wind Turbine Based on ELMD and FCM

Fault Diagnosis of Wind Turbine Based on ELMD and FCM Send Orders for Reprints to reprints@benthamscience.ae 76 The Open Mechanical Engineering Journal, 24, 8, 76-72 Fault Diagnosis of Wind Turbine Based on ELMD and FCM Open Access Xianjin Luo * and Xiumei

More information

Recent Patents on OPC for Central Air-Conditioning System

Recent Patents on OPC for Central Air-Conditioning System Send Orders for Reprints to reprints@benthamscience.ae 234 The Open Electrical & Electronic Engineering Journal, 2014, 8, 234-239 Recent Patents on OPC for Central Air-Conditioning System Open Access Jiejia

More information

Open Access Self-Growing RBF Neural Network Approach for Semantic Image Retrieval

Open Access Self-Growing RBF Neural Network Approach for Semantic Image Retrieval Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2014, 6, 1505-1509 1505 Open Access Self-Growing RBF Neural Networ Approach for Semantic Image Retrieval

More information

Research on the Improvement of the RTLAB Simulation Efficiency in DG

Research on the Improvement of the RTLAB Simulation Efficiency in DG MATEC Web of Conferences 22, 02002 ( 2015) DOI: 10.1051/ matecconf/ 20152202002 C Owned by the authors, published by EDP Sciences, 2015 Research on the Improvement of the RTLAB Simulation Efficiency in

More information

manufacturing process.

manufacturing process. Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2014, 6, 203-207 203 Open Access Identifying Method for Key Quality Characteristics in Series-Parallel

More information

Construction of SSI Framework Based on MVC Software Design Model Yongchang Rena, Yongzhe Mab

Construction of SSI Framework Based on MVC Software Design Model Yongchang Rena, Yongzhe Mab 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Construction of SSI Framework Based on MVC Software Design Model Yongchang Rena, Yongzhe Mab School

More information

An Embedded Dynamic Security Networking Technology Based on Quick Jump and Trust

An Embedded Dynamic Security Networking Technology Based on Quick Jump and Trust Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 014, 8, 579-585 579 Open Access An Embedded Dynamic Security Networking Technology Based on Quick Jump and

More information

Open Access The Kinematics Analysis and Configuration Optimize of Quadruped Robot. Jinrong Zhang *, Chenxi Wang and Jianhua Zhang

Open Access The Kinematics Analysis and Configuration Optimize of Quadruped Robot. Jinrong Zhang *, Chenxi Wang and Jianhua Zhang Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 014, 6, 1685-1690 1685 Open Access The Kinematics Analysis and Configuration Optimize of Quadruped

More information

Open Access A Sequence List Algorithm For The Job Shop Scheduling Problem

Open Access A Sequence List Algorithm For The Job Shop Scheduling Problem Send Orders of Reprints at reprints@benthamscience.net The Open Electrical & Electronic Engineering Journal, 2013, 7, (Supple 1: M6) 55-61 55 Open Access A Sequence List Algorithm For The Job Shop Scheduling

More information

Open Access Research on the Data Pre-Processing in the Network Abnormal Intrusion Detection

Open Access Research on the Data Pre-Processing in the Network Abnormal Intrusion Detection Send Orders for Reprints to reprints@benthamscience.ae 1228 The Open Automation and Control Systems Journal, 2014, 6, 1228-1232 Open Access Research on the Data Pre-Processing in the Network Abnormal Intrusion

More information

Research on monitoring technology of Iu-PS interface in WCDMA network

Research on monitoring technology of Iu-PS interface in WCDMA network Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2354 2358 Advanced in Control Engineering and Information Science Research on monitoring technology of Iu-PS interface in WCDMA

More information

Numerical Simulation of Middle Thick Plate in the U-Shaped Bending Spring Back and the Change of Thickness

Numerical Simulation of Middle Thick Plate in the U-Shaped Bending Spring Back and the Change of Thickness Send Orders for Reprints to reprints@benthamscience.ae 648 The Open Mechanical Engineering Journal, 2014, 8, 648-654 Open Access Numerical Simulation of Middle Thick Plate in the U-Shaped Bending Spring

More information

A New Method Of VPN Based On LSP Technology

A New Method Of VPN Based On LSP Technology 2nd Joint International Information Technology, Mechanical and Electronic Engineering Conference (JIMEC 2017) A New Method Of VPN Based On LSP Technology HaiJun Qing 1, 2 1, 2, ChaoXiang Liang, LiPing

More information

Design of the Control System for Step Motor Based on MCU

Design of the Control System for Step Motor Based on MCU Send Orders for Reprints to reprints@benthamscience.ae 1044 The Open Automation and Control Systems Journal, 2015, 7, 1044-1050 Design of the Control System for Step Motor Based on MCU Open Access Liu

More information

The Design and Development of the Precision Planter Sowing Depth Control System

The Design and Development of the Precision Planter Sowing Depth Control System Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com The Design and Development of the Precision Planter Sowing Depth Control System 1 Liping WEN, 2 Xiongfei FAN, 1 Zhao LIU,

More information

The Solutions to Some Key Problems of Solar Energy Output in the Belt and Road Yong-ping GAO 1,*, Li-li LIAO 2 and Yue-shun HE 3

The Solutions to Some Key Problems of Solar Energy Output in the Belt and Road Yong-ping GAO 1,*, Li-li LIAO 2 and Yue-shun HE 3 2016 International Conference on Artificial Intelligence and Computer Science (AICS 2016) ISBN: 978-1-60595-411-0 The Solutions to Some Key Problems of Solar Energy Output in the Belt and Road Yong-ping

More information

Design of Underground Current Detection Nodes Based on ZigBee

Design of Underground Current Detection Nodes Based on ZigBee MATEC Web of Conferences 22, 0104 5 ( 2015) DOI: 10.1051/ matecconf/ 20152201045 C Owned by the authors, published by EDP Sciences, 2015 Design of Underground Current Detection Nodes Based on ZigBee Deyu

More information

Analyses of Subway BAS System Network Framework and IP Address Allocation Xin-hong YANG 1,* and Yuan GAO 2

Analyses of Subway BAS System Network Framework and IP Address Allocation Xin-hong YANG 1,* and Yuan GAO 2 2016 International Conference on Applied Mechanics, Electronics and Mechatronics Engineering (AMEME 2016) ISBN: 978-1-60595-357-1 Analyses of Subway BAS System Network Framework and IP Address Allocation

More information

An Approximate Method for Permuting Frame with Repeated Lattice Structure to Equivalent Beam

An Approximate Method for Permuting Frame with Repeated Lattice Structure to Equivalent Beam The Open Ocean Engineering Journal, 2011, 4, 55-59 55 Open Access An Approximate Method for Permuting Frame with Repeated Lattice Structure to Equivalent Beam H.I. Park a, * and C.G. Park b a Department

More information

A Novel Data Mining Platform Design with Dynamic Algorithm Base

A Novel Data Mining Platform Design with Dynamic Algorithm Base A Novel Data Mining Platform Design with Dynamic Algorithm Base HebiaoYang, Yukun Chen & Rengang Hou School of Computer Science and Telecommunications Engineering, Jiangsu University Zhenjiang, 212013,

More information

An Efficient Distributed B-tree Index Method in Cloud Computing

An Efficient Distributed B-tree Index Method in Cloud Computing Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 214, 8, 32-38 32 Open Access An Efficient Distributed B-tree Index Method in Cloud Computing Huang Bin 1,*

More information

Research and Implementation of Software Used for the Remote Control for VM700T Video Measuring Instrument

Research and Implementation of Software Used for the Remote Control for VM700T Video Measuring Instrument MATEC Web of Conferences 22, 03001 ( 2015) DOI: 10.1051/ matecconf/ 20152203001 C Owned by the authors, published by EDP Sciences, 2015 Research and Implementation of Software Used for the Remote Control

More information

Open Access Universal Real-time Monitoring System Based on Ethernet in Test and Measurement Domain

Open Access Universal Real-time Monitoring System Based on Ethernet in Test and Measurement Domain Send Orders for Reprints to reprints@benthamscience.ae 362 The Open Automation and Control Systems Journal, 2014, 6, 362-367 Open Access Universal Real-time Monitoring System Based on Ethernet in Test

More information

Construction Scheme for Cloud Platform of NSFC Information System

Construction Scheme for Cloud Platform of NSFC Information System , pp.200-204 http://dx.doi.org/10.14257/astl.2016.138.40 Construction Scheme for Cloud Platform of NSFC Information System Jianjun Li 1, Jin Wang 1, Yuhui Zheng 2 1 Information Center, National Natural

More information

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

Multidimensional Analysis of Distributed Data Warehouse of Antiquity Information

Multidimensional Analysis of Distributed Data Warehouse of Antiquity Information Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 55-61 55 Open Access Multidimensional Analysis of Distributed Data Warehouse of Antiquity Information

More information

The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D

The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG

More information

Research Article Implementation of Personal Health Device Communication Protocol Applying ISO/IEEE

Research Article Implementation of Personal Health Device Communication Protocol Applying ISO/IEEE Distributed Sensor Networks, Article ID 291295, 4 pages http://dx.doi.org/10.1155/2014/291295 Research Article Implementation of Personal Health Device Communication Protocol Applying ISO/IEEE 11073-20601

More information

The Design and Implementation of Disaster Recovery in Dual-active Cloud Center

The Design and Implementation of Disaster Recovery in Dual-active Cloud Center International Conference on Information Sciences, Machinery, Materials and Energy (ICISMME 2015) The Design and Implementation of Disaster Recovery in Dual-active Cloud Center Xiao Chen 1, a, Longjun Zhang

More information

Open Access The Research of PLC and Touch Screen in the Erosion of Coating of Wind Turbine Blade

Open Access The Research of PLC and Touch Screen in the Erosion of Coating of Wind Turbine Blade Send Orders for Reprints to reprints@benthamscience.ae 580 The Open Automation and Control Systems Journal, 2015, 7, 580-586 Open Access The Research of PLC and Touch Screen in the Erosion of Coating of

More information

Open Access Algorithm of Context Inconsistency Elimination Based on Feedback Windowing and Evidence Theory for Smart Home

Open Access Algorithm of Context Inconsistency Elimination Based on Feedback Windowing and Evidence Theory for Smart Home Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2014, 6, 637-648 637 Open Access Algorithm of Context Inconsistency Elimination Based on Feedback

More information

Design and Implementation of Dual-Mode Wireless Video Monitoring System

Design and Implementation of Dual-Mode Wireless Video Monitoring System Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Design and Implementation of Dual-Mode Wireless Video Monitoring System BAO Song-Jian, YANG Shou-Liang ChongQing University

More information

Intelligent Computer Room Management Platform Based on RF Card

Intelligent Computer Room Management Platform Based on RF Card 2017 2 nd International Conference on Artificial Intelligence and Engineering Applications (AIEA 2017) ISBN: 978-1-60595-485-1 Intelligent Computer Room Management Platform Based on RF Card LI ZHANG and

More information

The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based on CAN Bus

The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based on CAN Bus Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 1461-1465 1461 Open Access The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based

More information

Multimedia Big Data Frame Combination Storage Strategy Based on Virtual Space Distortion

Multimedia Big Data Frame Combination Storage Strategy Based on Virtual Space Distortion Multimedia Big Data Frame Combination Storage Strategy Based on Virtual Space https://doi.org/0.399/ijoe.v3i02.66 Jian Luo Zhejiang Technical Institute of Economics, Hangzhou Zhejiang, China jiansluo@yahoo.com

More information

Study on One Map Organizational Model for Land Resources Data Used in Supervision and Service

Study on One Map Organizational Model for Land Resources Data Used in Supervision and Service Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 105-109 105 Open Access Study on One Map Organizational Model for Land Resources Data Used in Supervision

More information

Application of Nonlinear Later TV Edition in Gigabit Ethernet. Hong Ma

Application of Nonlinear Later TV Edition in Gigabit Ethernet. Hong Ma 3rd International Conference on Science and Social Research (ICSSR 2014) Application of Nonlinear Later TV Edition in Gigabit Ethernet Hong Ma Education and Training Department, Shaanxi Vocational and

More information

PLC Simulation Control of Assembly Line

PLC Simulation Control of Assembly Line Computer Simulation In Application Original Research Article PLC Simulation Control of Assembly Line Qianming Wu,Zhongyuan Xu,Zhili Han Electronic Information Engineering College, Jinhua University of

More information

Rectangle Positioning Algorithm Simulation Based on Edge Detection and Hough Transform

Rectangle Positioning Algorithm Simulation Based on Edge Detection and Hough Transform Send Orders for Reprints to reprints@benthamscience.net 58 The Open Mechanical Engineering Journal, 2014, 8, 58-62 Open Access Rectangle Positioning Algorithm Simulation Based on Edge Detection and Hough

More information

Tendency Mining in Dynamic Association Rules Based on SVM Classifier

Tendency Mining in Dynamic Association Rules Based on SVM Classifier Send Orders for Reprints to reprints@benthamscienceae The Open Mechanical Engineering Journal, 2014, 8, 303-307 303 Open Access Tendency Mining in Dynamic Association Rules Based on SVM Classifier Zhonglin

More information

Design of Campus one-finger Service System Based on Fingerprint Identification

Design of Campus one-finger Service System Based on Fingerprint Identification Design of Campus one-finger Service System Based on Fingerprint Identification Shouxi Zhu Aviation Information Technology R&D Center Binzhou University Binzhou, China Wenlai Ma Flying College of Binzhou

More information

White paper for Blockchain Database Application Platform ChainSQL

White paper for Blockchain Database Application Platform ChainSQL White paper for Blockchain Database Application Platform ChainSQL Beijing PeerSafe Technology Co., Ltd. January 2017 Contents Product Profile...1 Product Profile...2 Design Scheme...3 Selection of blockchain

More information

Design of Labour Agency Platform Based on Agent Technology of JADE *

Design of Labour Agency Platform Based on Agent Technology of JADE * Design of Labour Agency Platform Based on Agent Technology of JADE * Xiaobin Qiu **, Nan Zhou, and Xin Wang Network Center, China Agriculture University, Beijing 100083, P.R. China qxb@cau.edu.cn Abstract.

More information

Research and Implementation of the Key Technology of UAV Aerial Image. Transmission

Research and Implementation of the Key Technology of UAV Aerial Image. Transmission Research and Implementation of the Key Technology of UAV Aerial Image Transmission Fan Yijun No.1 Institute of Geological & Mineral Resources Survey of Henan Lluoyang, 471023, Henan Provincial Key Laboratory

More information

Table of Contents 1 AAA Overview AAA Configuration 2-1

Table of Contents 1 AAA Overview AAA Configuration 2-1 Table of Contents 1 AAA Overview 1-1 Introduction to AAA 1-1 Authentication 1-1 Authorization 1-1 Accounting 1-2 Introduction to ISP Domain 1-2 Introduction to AAA Services 1-2 Introduction to RADIUS 1-2

More information

The Comparative Study of Machine Learning Algorithms in Text Data Classification*

The Comparative Study of Machine Learning Algorithms in Text Data Classification* The Comparative Study of Machine Learning Algorithms in Text Data Classification* Wang Xin School of Science, Beijing Information Science and Technology University Beijing, China Abstract Classification

More information

A Network-Based Management Information System for Animal Husbandry in Farms

A Network-Based Management Information System for Animal Husbandry in Farms A Network-Based Information System for Animal Husbandry in Farms Jing Han 1 and Xi Wang 2, 1 College of Information Technology, Heilongjiang August First Land Reclamation University, Daqing, Heilongjiang

More information

Standardized Storage of Sports Data Based on XML

Standardized Storage of Sports Data Based on XML Send Orders for Reprints to reprints@benthamscience.ae 2312 The Open Cybernetics & Systemics Journal, 2015, 9, 2312-2316 Standardized Storage of Sports Data Based on XML Open Access Qiufen Wang 1,* and

More information

Open Access Image Based Virtual Dimension Compute Unified Device Architecture of Parallel Processing Technology

Open Access Image Based Virtual Dimension Compute Unified Device Architecture of Parallel Processing Technology Send Orders for Reprints to reprints@benthamscience.ae 1592 The Open Automation and Control Systems Journal, 2015, 7, 1592-1596 Open Access Image Based Virtual Dimension Compute Unified Device Architecture

More information

ZLAN9500/03 Series. User Manual

ZLAN9500/03 Series. User Manual ZLAN9500/03 Series ZigBee Wireless Data Transmission Device User Manual RS232/485/422/Ethernet to ZigBee CopyRight 2008 Shanghai ZLAN Information Technology Co., Ltd. All right reserved Document DI: ZL

More information

Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication

Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication 4th International Conference on Sustainable Energy and Environmental Engineering (ICSEEE 2015) Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication Hua Guo1,a,

More information

Performance Analysis of AES Algorithm on MPC Processor

Performance Analysis of AES Algorithm on MPC Processor Send Orders for Reprints to reprints@benthamscience.ae 2248 The Open Cybernetics & Systemics Journal, 2015, 9, 2248-2253 Performance Analysis of AES Algorithm on MPC Processor Open Access Gao Haifeng 1,

More information

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology 2010 China International Conference on Electricity Distribution 1 Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology Zhang Hong-tao, Ye Ying, An Qing China Zhoukou Power

More information

On Design and Implementation of Locomotive Video Monitoring System. Haifeng Yuan, Jie Peng

On Design and Implementation of Locomotive Video Monitoring System. Haifeng Yuan, Jie Peng 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) On Design and Implementation of Locomotive Video Monitoring System Haifeng Yuan, Jie Peng Xinjiang Railway Vocational

More information

The Development of Mobile Shopping System Based on Android Platform

The Development of Mobile Shopping System Based on Android Platform 2017 2nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 2017) ISBN: 978-1-60595-521-6 The Development of Mobile Shopping System Based on Android Platform Yi-ping SHI *,

More information

Embedded Smart Home System Based on ZigBee Song Chi

Embedded Smart Home System Based on ZigBee Song Chi International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015) Embedded Smart Home System Based on ZigBee Song Chi Liaoning Jidian Polytechnic North Gold and Jewelry

More information

IVT BlueSoleil TM. Software Development Kit. Version Release Note. Nov. 27 th, IVT Corporation

IVT BlueSoleil TM. Software Development Kit. Version Release Note. Nov. 27 th, IVT Corporation IVT BlueSoleil TM Software Development Kit Version 2.0.5 Release Note Nov. 27 th, 2009 IVT Corporation 4/F, Fazhan Plaza, NO. 12, Xinxi Road, Haidian District, Beijing, 100085 P.R. China Tel: +86 10 82898230

More information

Open Access Research on a Multi Node Cooperate Image Compression Algorithm for Wireless Network Based on LBT Model. Li Haitao *

Open Access Research on a Multi Node Cooperate Image Compression Algorithm for Wireless Network Based on LBT Model. Li Haitao * Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 1641-1646 1641 Open Access Research on a Multi Node Cooperate Image Compression Algorithm

More information

ZLAN5200. User Manual

ZLAN5200. User Manual ZLAN5200 Serial Device Server User Manual 2 ports RS232/485/422 to TCP/IP converter CopyRight 2008 Shanghai ZLAN Information Technology Co., Ltd. All right reserved Document DI: ZL DUI 20111205.1.0 1 CopyRight

More information

Research on Laser Measurement System for Underground Unmanned Load-Haul-Dump

Research on Laser Measurement System for Underground Unmanned Load-Haul-Dump Send Orders for Reprints to reprints@benthamscience.ae 572 The Open Mechanical Engineering Journal, 2015, 9, 572-576 Open Access Research on Laser Measurement System for Underground Unmanned Load-Haul-Dump

More information

2. SA1 Release 11 Standardization Trends

2. SA1 Release 11 Standardization Trends 3GPP SA1 Release 11 Standardization Trends 3GPP SA1 Service Requirements Release 11 3GPP SA1 Release 11 Standardization Trends NTT DOCOMO Technical Journal At the 3GPP, which standardizes mobile communications

More information

Research on 3G Terminal-Based Agricultural Information Service

Research on 3G Terminal-Based Agricultural Information Service Research on 3G Terminal-Based Agricultural Information Service Neng-fu Xie and Xuefu Zhang Agricultural Information Institute, The Chinese Academy of Agricultural Sciences Key Laboratory of Digital Agricultural

More information

Realization of Time Synchronization Server Based on C/S

Realization of Time Synchronization Server Based on C/S Computer System Networking and Telecommunications Original Research Article Realization of Time Synchronization Server Based on C/S Jidong Zhou,Yanyan Zheng,Yonghui Guo School of Computer and Information,

More information

CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture

CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture Yuan-ni Liu Hong Tang, Guo-feng Zhao The School of Communication and Information Engineering of ChongQing University of Posts and

More information

Temperature Measurement and Control System Based on Embedded WEB

Temperature Measurement and Control System Based on Embedded WEB Temperature Measurement and Control System Based on Embedded WEB Limin Cai College of Physics and Information Engineering, Jianghan University Wuhan 430056, China Tel: 86-27-8422-6780 E-mail: cailm@yahoo.cn

More information

Coordinated and Unified Control Scheme of IP and Optical Networks for Smart Power Grid

Coordinated and Unified Control Scheme of IP and Optical Networks for Smart Power Grid IOP Conference Series: Earth and Environmental Science PAPER OPEN ACCESS Coordinated and Unified Control Scheme of IP and Optical Networks for Smart Power Grid To cite this article: Zhibin Yin et al 2018

More information

Design and Implementation of Remote Push System of Resources Based on Internet

Design and Implementation of Remote Push System of Resources Based on Internet 2010 3rd International Conference on Computer and Electrical Engineering (ICCEE 2010) IPCSIT vol. 53 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V53.No.1.16 Design and Implementation

More information

Research Article. ISSN (Print) *Corresponding author Chen Hao

Research Article. ISSN (Print) *Corresponding author Chen Hao Scholars Journal of Engineering and Technology (SJET) Sch. J. Eng. Tech., 215; 3(6):645-65 Scholars Academic and Scientific Publisher (An International Publisher for Academic and Scientific Resources)

More information

Open Access Design and Implementation of the Infant Incubator Intelligent Control System Based on Internet of Things. Tianshun Huang * and Leiming Sun

Open Access Design and Implementation of the Infant Incubator Intelligent Control System Based on Internet of Things. Tianshun Huang * and Leiming Sun Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 2223-2229 2223 Open Access Design and Implementation of the Infant Incubator Intelligent

More information

A Data Classification Algorithm of Internet of Things Based on Neural Network

A Data Classification Algorithm of Internet of Things Based on Neural Network A Data Classification Algorithm of Internet of Things Based on Neural Network https://doi.org/10.3991/ijoe.v13i09.7587 Zhenjun Li Hunan Radio and TV University, Hunan, China 278060389@qq.com Abstract To

More information

Research Article A Two-Level Cache for Distributed Information Retrieval in Search Engines

Research Article A Two-Level Cache for Distributed Information Retrieval in Search Engines The Scientific World Journal Volume 2013, Article ID 596724, 6 pages http://dx.doi.org/10.1155/2013/596724 Research Article A Two-Level Cache for Distributed Information Retrieval in Search Engines Weizhe

More information

CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture

CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture CAMPSNA: A Cloud Assisted Mobile Peer to Peer Social Network Architecture Yuan-ni Liu Hong Tang, Guo-feng Zhao The School of Communication and Information Engineering of ChongQing University of Posts and

More information

Liver Image Mosaicing System Based on Scale Invariant Feature Transform and Point Set Matching Method

Liver Image Mosaicing System Based on Scale Invariant Feature Transform and Point Set Matching Method Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 014, 8, 147-151 147 Open Access Liver Image Mosaicing System Based on Scale Invariant Feature Transform

More information

Design of New Oscillograph based on FPGA

Design of New Oscillograph based on FPGA Available online at www.sciencedirect.com Procedia Engineering 23 (2011) 60 64 Design of New Oscillograph based on FPGA Hu Haoran,ZHANG Fei School of Computer & Information, Anqing Teachers College, Anqing

More information

The Design of Embedded MCU Network Measure and Control System

The Design of Embedded MCU Network Measure and Control System Available online at www.sciencedirect.com Energy Procedia 17 (2012 ) 983 989 2012 International Conference on Future Electrical Power and Energy Systems The Design of Embedded MCU Network Measure and Control

More information

Research and Design of Education and Teaching Resource Management System based on ASP.NET Technology

Research and Design of Education and Teaching Resource Management System based on ASP.NET Technology 2018 3rd International Conference on Education & Education Research (EDUER 2018) Research and Design of Education and Teaching Resource Management System based on ASP.NET Technology Jin Xin Science and

More information

Research on Computer Network Virtual Laboratory based on ASP.NET. JIA Xuebin 1, a

Research on Computer Network Virtual Laboratory based on ASP.NET. JIA Xuebin 1, a International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) Research on Computer Network Virtual Laboratory based on ASP.NET JIA Xuebin 1, a 1 Department of Computer,

More information

Open Access Compression Algorithm of 3D Point Cloud Data Based on Octree

Open Access Compression Algorithm of 3D Point Cloud Data Based on Octree Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 879-883 879 Open Access Compression Algorithm of 3D Point Cloud Data Based on Octree Dai

More information

Design and Realization of Foreign Language Learning System. based on Mobile Internet Platform. Chu Weili

Design and Realization of Foreign Language Learning System. based on Mobile Internet Platform. Chu Weili 2017 International Conference on Computational Science and Engineering (ICCSE 2017) Design and Realization of Foreign Language Learning System based on Mobile Internet Platform Chu Weili Qingdao Huanghai

More information

Design of Temperature and Humidity Data Acquisition System. Based on ARM

Design of Temperature and Humidity Data Acquisition System. Based on ARM 2017 International Conference on Computational Science and Engineering (ICCSE 2017) Design of Temperature and Humidity Data Acquisition System Based on ARM Pei-xue Liu 1, a, Yu-jie Chen 1, b, Bao-hua Jiang

More information

A Heuristic Bidirectional Hierarchical Path Planning Algorithm Based on Hierarchical Partitioning

A Heuristic Bidirectional Hierarchical Path Planning Algorithm Based on Hierarchical Partitioning Send Orders for Reprints to reprints@benthamscience.ae 306 The Open Cybernetics & Systemics Journal, 2015, 9, 306-312 Open Access A Heuristic Bidirectional Hierarchical Path Planning Algorithm Based on

More information

Remote Monitoring System of Ship Running State under Wireless Network

Remote Monitoring System of Ship Running State under Wireless Network Journal of Shipping and Ocean Engineering 7 (2017) 181-185 doi 10.17265/2159-5879/2017.05.001 D DAVID PUBLISHING Remote Monitoring System of Ship Running State under Wireless Network LI Ning Department

More information

An Improved DFSA Anti-collision Algorithm Based on the RFID-based Internet of Vehicles

An Improved DFSA Anti-collision Algorithm Based on the RFID-based Internet of Vehicles 2016 2 nd International Conference on Energy, Materials and Manufacturing Engineering (EMME 2016) ISBN: 978-1-60595-441-7 An Improved DFSA Anti-collision Algorithm Based on the RFID-based Internet of Vehicles

More information

Design of Dual-Core Processor Industry Robot Controller

Design of Dual-Core Processor Industry Robot Controller Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 1393-1398 1393 Design of Dual-Core Processor Industry Robot Controller Open Access Sun Ligong

More information

APPLICATION OF JAVA TECHNOLOGY IN THE REGIONAL COMPARATIVE ADVANTAGE ANALYSIS SYSTEM OF MAIN GRAIN IN CHINA

APPLICATION OF JAVA TECHNOLOGY IN THE REGIONAL COMPARATIVE ADVANTAGE ANALYSIS SYSTEM OF MAIN GRAIN IN CHINA APPLICATION OF JAVA TECHNOLOGY IN THE REGIONAL COMPARATIVE ADVANTAGE ANALYSIS SYSTEM OF MAIN GRAIN IN CHINA Xue Yan, Yeping Zhu * Agricultural Information Institute of Chinese Academy of Agricultural Sciences

More information

Log System Based on Software Testing System Design And Implementation

Log System Based on Software Testing System Design And Implementation 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Log System Based on Software Testing System Design And Implementation Yan Liu1, a, Dahai Jin1,

More information

A Study on Multi-resolution Screen based Conference Broadcasting Technology

A Study on Multi-resolution Screen based Conference Broadcasting Technology 2 : (Young-ae Kim et al.: A Study on Multi-resolution Screen based Conference Broadcasting Technology) (Special Paper) 23 2, 2018 3 (JBE Vol. 23, No. 2, March 2018) https://doi.org/10.5909/jbe.2018.23.2.253

More information