Research On a Real-time Database of General Engineering Flight Simulation

Size: px
Start display at page:

Download "Research On a Real-time Database of General Engineering Flight Simulation"

Transcription

1 2nd International Conference on Information, Electronics and Computer (ICIEAC 2014) Research On a Real-time Database of General Engineering Flight Simulation Cong Zhang School of Computer Science & Engineering zhangcongcong0823@163.com Hong Xu School of Computer Science & Engineering xh@buaa.com Weiqun Shen School of Automation Science and Electrical Engineering shenweiqun@buaa.com Abstract General Engineering Flight Simulation Database is a important subsystem of Engineering Flight Simulation Platform. Engineering Flight Simulation Platform, which is oriented to the development of new aircraft, is a indispensable equipment for developing new aircraft, researching flight theory and flight control. During the simulation, engineering flight simulation system will produce a large real-time simulation data. The researchers discover the problems during the development of new aircraft, through the flight simulation database s processing of data. This article discusses using XML files as data conversion intermediate medium, dynamic method of building a data table in a database, and fast storage, fast retrieval methods of the huge amount of data in real-time simulation.the practice shows that the application of these methods are applied for processing a variety of flight simulation data fast. Keywords: database; flight simulation platform; xml I. INTRODUCTION Engineering Flight simulation platform is a kind of flight simulation system, which is research-oriented. It is a indispensable equipment when a new aircraft is developed, theory of flight and flight control are researched. It brings together simulation platform management, flight test, test data analysis, test information management and many other functions. In addition, it provides a paperless new aircraft design management platform for the aircraft designer, which is good for security management. In summary, it has high economic value and military value. In order to analyze the simulation process and to improve the design of the aircraft, the engineering flight simulation platform needs to store the real-time data in simulation process. And in the simulation process, it is needed to store several thousand bytes of data. Therefore, it is not store those data to the database during the simulation process[1]. In order to store these real-time data, one of the methods is to store the data directly to a data file firstly. After the end of the simulation, format these data in data files and then insert them to the corresponding data table. These operations make it convenient to search and analyze the simulation data for researchers. How to make a database quickly handle all types of different models and different experimental simulation data, is the key issue of this thesis. II. THE FUNCTION AND STRUCTURE OF THE DATABASE The database mentioned in this paper, is based on relational database, and is one part of the engineering flight simulation platform which is used to process data. It uses the adding, deleting, modifying and searching function which is provided by the underlying database, to realize its function of analyzing, storing and post-processing the binary package[2]. A. The function of the database Dynamic building and importing to a data table functions Select parameter variables which the researchers are concerned with, from the parameter database. Then create a xml file using the selected variables. Analyze the xml file. According to the analytical results, build a data table in the database dynamically. Also in accordance with the analytical results of xml file, parse the binary data, and then put the analytical data into the new table that we build just now. Viewing and searching data functions As to the data which has been stored in database, when the researchers need to view the data, it can be fetched and display on the screen. And if the researchers want to view a part of the data they concern with, it also can search and display the data according to the request which is input by the researchers. Maintenance function The data table in database and the binary compressed files can be deleted, if they are not needed at all. Post-processing functions The authors - Published by Atlantis Press 152

2 After laying in the data in database, in order to observe the changes and the overall situation of the data directviewingly and conveniently, it can draw curves using the specified data. Saving function You can export the data from the database, and then save them as a text file. B. The structure of the database The structure model of database is shown in Figure 1: Figure 1 structure of database model diagram Database is divided into two parts, the parameter information database and the results database. Parameter information database is used to store all the flight parameter information, the researchers could add, modify, delete, query, print parameter information, select the parameters and generate an XML file which is used by results database. Create a data table dynamically by selecting variables that the researchers are interested in. Researchers associate XML files with the result database, the program dynamically create data tables by parsing an XML document, and through analyzing the xml file obtain the corresponding experimental data from binary compressed files stored by other programs from the simulation system. Then store the data to underlying database, prepare to postprocess. III. BUILDING LIBRARY DYNAMICALLY A. Building library dynamically Xml, that is the extensible Markup Language. It can be used as a standard interchange language, and be responsible for describing the exchanging data[3]. It has excellent interoperability and reliability. Furthermore, it has a property that can separate data from its presentation. And it also has powerful data expression ability. It developed as a symbolic markup language based on the HTML. It has the following advantages: 1 Separate Data from its representation ; 2It is a non-markup language, researchers can define their own DTD; 3 Its main contents is the data; 4 It is able to encapsulate the data source, so as to mask the data source. Through the xml s integration, it achieve data exchange and sharing between different data sources. Document Object Model (DOM) is an important part of the XML, which defines the way the process executing the document, uses a tree structure to present a xml document, and allows the researchers to access the information in the DOM. Various kinds of computer languages offer a wide interface to it, And it is widely used. The above mentioned features of xml determine its important position in the transmission of information in today s society. And these features are also the basis and key technique for building a data table in a database dynamically. XML files are throughout the system. Each flight parameter, are recorded by an XML file. The data model is shown in Figure 2. Remarks Subsystem id Subsystem name Memory address Id dimension Flight Parameter data model Physical sense lower limit Upper limit Flag of building library Variable type Figure 2 flight parameter data model Refer to the data model for the flight parameters, we can define the xml file format as follows: Figure 3 xml file storage format According to the storage structure shown in Figure 3, in a simulation process, save the data that belongs to the same sub-system as a single file. Each data occupies double words in each data file. In practical applications, to complete a simulation test, the engineering flight simulation system usually need to define a number of parameters (the system has thousands). However, during the process of analyzing the simulation results, if the researchers want to view all the data, there are some inconveniences. Firstly, in the several thousands of variables, finding the values of some variables which the researchers are concerned about is so inconvenient and easy 153

3 to make mistakes. Most time must be wasted to distinguish whether it is the data I want or not. In addition, importing the data to the database and Exporting the data from the database will consume a lot of time and resources. But if we conduct an experiment only store one part of the total variables, when we want to view one or several variables which are not stored for some reasons. At this time, it will lead to greater human and material waste. For all of these, the system uses the recording of all test data and compressed (saved as a binary file, the compression rate of up to 200 times), the results of the researchers focus only on their own building a database parameter data methods to solve this problem. The selection whether choose the variable or not depends on building table s flag item in parameter information mentioned in Figure 2. Value of this parameter could be 0 or 1. If the value of parameter is 1, it means that we will contain it in the xml file. But if the value is 0, that is to say we will not use it. After the selection, we will generate an XML file for the result database to dynamically create data table. CPS_A4_format. B. The design of data format The Engineering Flight Simulation Platform is a distributed system. Each simulation cycle, each subsystem completes their simulation task, each subsystem contains a large number of variables, each variable with its own different properties[4]. For completing to analyze the large amounts of data generated in the simulation process, a good design of the data structure is very important. Refer to the store structure showed in Figure 2, the data structure can be designed as follows. There are some little changes with the structure mentioned in Figure 2. It can be more convenient when we deal with the history data after these changes. Data Structure :: = <total number of subsystems, the total number of variables> Subsystem node :: = <subsystem number, subsystem name, the number of variables, all variable information> Variable Information :: = <variable number, variable type, variable name, variable dimensions, physical sense, discrete markers, discrete quantum number of variables, the sub-variable information> Sub-variable information :: = <sub variable name, the start bit, stop bits> Reflective Memory address is required when storing data in real-time. As to historical data processing, it is not required. It can be omitted. Since the engineering flight simulation platform is a typical semi-physical simulation system, communication between various systems in addition to the commonly used floating-point data, there are many non-standard data, which comes from different data sources. Such as character data, each of one or a combination of each expresses several different meanings. So there needs to determine whether it is discrete, the number of discrete variables, and the sub-variable information. C. Data analysis After being acquaintance with data s content and formation, the work of data analysis follows. The first step of data analysis is to find all the variables in the simulation recorded in the XML files [5], from which information of all variables can be obtained and new XML files recording variables we concerned can be generated. Obtaining the information of variables to be analyzed is a procedure of resolving XML files and loading subsystem names, variable names and other information recorded in the XML files to the data structure designed in the previous chapter. From the subsystem names, corresponding files can be found and the variable number is available for obtaining the position of each variable in every millisecond. D. Data import to the database The template is used to format your paper and style the text. All margins, column widths, line spaces, and text fonts are prescribed; please do not alter them. You may note peculiarities. For example, the head margin in this template measures proportionately more than is customary. This measurement and others are deliberate, using specifications that anticipate your paper as one part of the entire proceedings, and not as an independent document. Please do not revise any of the current designations. The data structure in binary files is shown in figure 4 Figure 4 the model of the binary file Based on established database, the function of this part mainly focus on reading corresponding data from binary files generated by other program, converting the data to decimal number and recording it to temporary intermediate files. The structure of binary files is shown in figure 4, where every group of data, separated by thick lines, indicates each variable value in different time. Taking importing the ith data value in the Nth subsystem where the total variable quantity is N as example, we read N binary numbers to array Value[MAX] and convert Value[i] to decimal number to be written into intermediate files. After processing all the variables with such procedure, the data can be imported to database through SQL statements below: LOAD DATA INFILE [the complete intermediate file s path] INTO TABLE [table name just created dynamically] FIELDS TERMINATED BY ',' Now researchers can analyze data in simulation. Only by researcher s generating sub-xml files recording variables concerned and relating them with corresponding data files to establish database, the program can fulfill the 154

4 work of obtaining data for analysis from binary files. The function of dynamic database establishment guarantees the system s automation and eliminates the restriction of data s source, which implement the sharing of data from different origin. IV. FAST RETRIEVAL OF DATA After importing data to database, researchers can analyze the data to improve the airplane design. The retrieval function is necessary for huge data amount. A. The Relationship Between Field Numbers And Retrieval Speed Since a lot of functions such as resolving XML files and initializing the data structure designed in chapter 1 from XML files have been implemented, we can describe variables to be obtained with subsystem names and variables physical meanings. Researchers can easily retrieve data by giving the scale in some aspects. But increasing the speed of retrieval has always been a important task because the process of huge amount data retrieval is very slow. We assume that the field numbers bear some links with the retrieval speed. After some experiments, the relationship between them is depicted in figure 5. Figure 5 indicates that with the increase of field numbers, the retrieval speed decreases. Hence, reducing the quantity of field numbers can be a effective way. Choose unique index. The value of unique index must be unique, which means the process of searching a certain record can be faster. Establish index for fields frequently facing sorting, grouping, uniting and enquiry. Limit the amount of index. Index will occupy the room of harddisk. Limit the number of index. If the number of the index is too large, the speed you search may be slower. Each index needs disk space, the more the index is, the larger the space is occupid. When we modify the tables, it is so troublesome to update and reconfigure The more the index is, the slower you update the data table. It may waste lot of time. Delete the index which is not used any more or is used rarely. Follow the above principles,at the same time of creating data table, add an appropriate index, and it is also a way to improve retrieval efficiency. But as described above, the establishment of the index is not unlimited. If the number of index is too large, it will also slow the retrieval speed. According to these principles, through experiments, the result is as shown in figure 6. Figure 6 is the result based on a 10 fields' table. Figure 5 the relation between field numbers and retrieving speed B. The relationship between index numbers and retrieval speed. Another way to increase retrieval speed is to establish index. To improve the index efficiency, principles such as which field to be based on and which type of index to be established should be taken into consideration. Priciples listed below can be adopted to establish an index: Use a zero before decimal points: 0.25, not.25. Figure 6 the relation between index numbers and retrieving speed C. Method to create index When building library dynamically, attention should be paid to make the number of fields fewer in a table as far as possible[5]. And at the same time create index in the table in order to speed the data retrievaling, and it is important to determine the number of index according to the number of the fields in table. eg. ten fields, you can set up two or three index is more appropriate. 155

5 V. CONCLUSION The General Engineering Flight Simulation real-time database this paper shudied has been successfully used in a flight simulation platform. The application practice shows that this database can meet the researchers for rapid processing and analysis of all kinds of real-time data in engineering flight simulation. And it supports the new research in out country greatly. REFERENCES [1] M D G. Browse Journals & Magazines > Software, IEEE...> Volume:22 Issue:3 MySQL: lessons learned on a digital library[c]. Software, IEEE, 2005: [2] Dandan F, Tao L. Study of A Dynamic Database Modeling Based on XML In Engineering Flight Simulator[J]. COMPUTER SYSTEMS & APPLICATIONS, 2007(12). [3] Chao W. The Implementation Research on The Index Structure of Database[D]. Tianjin:Tianjin University, [4] Xiajun J, Huizhong W, Weiqing L. Research of Real-time Database Technology in Data Collection of Simulation[J]. JOURNAL OF SYSTEM SIMULATION, 2005, 17(8): [5] Lijun X, Jun Y. Comparison of Several Indexes[J]. JOURNAL OF HUAIHUA UNIVERSITY, 2009, 28(8). 156

Research on the Application of Bank Transaction Data Stream Storage based on HBase Xiaoguo Wang*, Yuxiang Liu and Lin Zhang

Research on the Application of Bank Transaction Data Stream Storage based on HBase Xiaoguo Wang*, Yuxiang Liu and Lin Zhang International Conference on Engineering Management (Iconf-EM 2016) Research on the Application of Bank Transaction Data Stream Storage based on HBase Xiaoguo Wang*, Yuxiang Liu and Lin Zhang School of

More information

STRUCTURE-BASED QUERY EXPANSION FOR XML SEARCH ENGINE

STRUCTURE-BASED QUERY EXPANSION FOR XML SEARCH ENGINE STRUCTURE-BASED QUERY EXPANSION FOR XML SEARCH ENGINE Wei-ning Qian, Hai-lei Qian, Li Wei, Yan Wang and Ao-ying Zhou Computer Science Department Fudan University Shanghai 200433 E-mail: wnqian@fudan.edu.cn

More information

Housing Estates Information Management System Based on.net. Jianliang Min

Housing Estates Information Management System Based on.net. Jianliang Min 3rd International Conference on Management, Education, Information and Control (MEICI 205) Housing Estates Information Management System Based on.et Jianliang Min College of Information Engineering, Jiangxi

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 Computer Aided Drafting, Design and Manufacturing Volume 26, Number 4, December 2016, Page 30 CADDM Aircraft wing box rapid modeling based on skeleton model Zhang Chao, Xi Ping School of Mechanical Engineering

More information

Archives in a Networked Information Society: The Problem of Sustainability in the Digital Information Environment

Archives in a Networked Information Society: The Problem of Sustainability in the Digital Information Environment Archives in a Networked Information Society: The Problem of Sustainability in the Digital Information Environment Shigeo Sugimoto Research Center for Knowledge Communities Graduate School of Library, Information

More information

Study on XML-based Heterogeneous Agriculture Database Sharing Platform

Study on XML-based Heterogeneous Agriculture Database Sharing Platform Study on XML-based Heterogeneous Agriculture Database Sharing Platform Qiulan Wu, Yongxiang Sun, Xiaoxia Yang, Yong Liang,Xia Geng School of Information Science and Engineering, Shandong Agricultural University,

More information

The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack. Guoxia Zou

The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack. Guoxia Zou 4th National Conference on Electrical, Electronics and Computer Engineering (NCEECE 2015) The Design Of Private Cloud Platform For Colleges And Universities Education Resources Based On Openstack Guoxia

More information

Material Made of Artificial Molecules and Its Refraction Behavior under Microwave

Material Made of Artificial Molecules and Its Refraction Behavior under Microwave Material Made of Artificial Molecules and Its Refraction Behavior under Microwave Tao Zhang College of Nuclear Science and Technology, Beijing Normal University, Beijing 100875, China (taozhang@bnu.edu.cn)

More information

Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software

Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software Proceedings of 2012 International Conference on Mechanical Engineering and Material Science (MEMS 2012) Design of SCADA power Distribution Monitoring System based on PLC and Configuration Software Pingze

More information

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c Applied Mechanics and Materials Online: 2013-06-13 ISSN: 1662-7482, Vols. 325-326, pp 1750-1753 doi:10.4028/www.scientific.net/amm.325-326.1750 2013 Trans Tech Publications, Switzerland Research Of Data

More information

Deep Web Content Mining

Deep Web Content Mining Deep Web Content Mining Shohreh Ajoudanian, and Mohammad Davarpanah Jazi Abstract The rapid expansion of the web is causing the constant growth of information, leading to several problems such as increased

More information

Data Mining in the Application of E-Commerce Website

Data Mining in the Application of E-Commerce Website Data Mining in the Application of E-Commerce Website Gu Hongjiu ChongQing Industry Polytechnic College, 401120, China Abstract. With the development of computer technology and Internet technology, the

More information

SUMMARY OF DATABASE STORAGE AND QUERYING

SUMMARY OF DATABASE STORAGE AND QUERYING SUMMARY OF DATABASE STORAGE AND QUERYING 1. Why Is It Important? Usually users of a database do not have to care the issues on this level. Actually, they should focus more on the logical model of a database

More information

Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP

Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP 5th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2017) Performance Comparison and Analysis of Power Quality Web Services Based on REST and SOAP Suxia

More information

Database Design on Construction Project Cost System Nannan Zhang1,a, Wenfeng Song2,b

Database Design on Construction Project Cost System Nannan Zhang1,a, Wenfeng Song2,b 3rd International Conference on Materials Engineering, Manufacturing Technology and Control (ICMEMTC 2016) Database Design on Construction Project Cost System Nannan Zhang1,a, Wenfeng Song2,b 1 School

More information

Design of Coal Mine Power Supply Monitoring System

Design of Coal Mine Power Supply Monitoring System 2nd International Conference on Electronics, Network and Computer Engineering (ICENCE 2016) Design of Coal Mine Power Supply Monitoring System Lei Shi 1, Guo Jin 2 and Jun Xu 3 1 2 Department of electronic

More information

An UML-XML-RDB Model Mapping Solution for Facilitating Information Standardization and Sharing in Construction Industry

An UML-XML-RDB Model Mapping Solution for Facilitating Information Standardization and Sharing in Construction Industry An UML-XML-RDB Model Mapping Solution for Facilitating Information Standardization and Sharing in Construction Industry I-Chen Wu 1 and Shang-Hsien Hsieh 2 Department of Civil Engineering, National Taiwan

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

XF Rendering Server 2008

XF Rendering Server 2008 XF Rendering Server 2008 Using XSL Formatting Objects for Producing and Publishing Business Documents Abstract IT organizations are under increasing pressure to meet the business goals of their companies.

More information

ZEND: Survey on the Examination System

ZEND: Survey on the Examination System ZEND: Survey on the Examination System Sun Bingli, K. Ramesh Babu School of Computing Science and Engineering, VIT University, TamilNadu, India bingli_0202@163.com; Abstract With the development of computer

More information

Data Processing System to Network Supported Collaborative Design

Data Processing System to Network Supported Collaborative Design Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3351 3355 Advanced in Control Engineering and Information Science Data Processing System to Network Supported Collaborative Design

More information

THE OUTLOOK FOR MATHEMATICS ON THE WEB

THE OUTLOOK FOR MATHEMATICS ON THE WEB Applied Mathematics and Stochastic Analysis, 13:3 (2000), 313-316. SttOIT IEPOITS AND COMMUNICATIONS THE OUTLOOK FOR MATHEMATICS ON THE WEB BRADFORD D. ALLEN Florida Institute of Technology Department

More information

Ultra-Low Latency Down to Microseconds SSDs Make It. Possible

Ultra-Low Latency Down to Microseconds SSDs Make It. Possible Ultra-Low Latency Down to Microseconds SSDs Make It Possible DAL is a large ocean shipping company that covers ocean and land transportation, storage, cargo handling, and ship management. Every day, its

More information

New research on Key Technologies of unstructured data cloud storage

New research on Key Technologies of unstructured data cloud storage 2017 International Conference on Computing, Communications and Automation(I3CA 2017) New research on Key Technologies of unstructured data cloud storage Songqi Peng, Rengkui Liua, *, Futian Wang State

More information

Inventions on using LDAP for different purposes- Part-3

Inventions on using LDAP for different purposes- Part-3 From the SelectedWorks of Umakant Mishra August, 2006 Inventions on using LDAP for different purposes- Part-3 Umakant Mishra Available at: https://works.bepress.com/umakant_mishra/64/ Inventions on using

More information

A PROPOSED METHOD FOR GENERATING,STORING AND MANAGING LARGE AMOUNTS OF MODELLING DATA USING SCRIPTS AND ON-LINE DATABASES

A PROPOSED METHOD FOR GENERATING,STORING AND MANAGING LARGE AMOUNTS OF MODELLING DATA USING SCRIPTS AND ON-LINE DATABASES Ninth International IBPSA Conference Montréal, Canada August 15-18, 2005 A PROPOSED METHOD FOR GENERATING,STORING AND MANAGING LARGE AMOUNTS OF MODELLING DATA USING SCRIPTS AND ON-LINE DATABASES Spyros

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

Global Support Software. User Guide

Global Support Software. User Guide Global Support Software User Guide Table of Contents Contacting Global Support Software Corp... 3 Log into the Site... 5 Changing your password...5 Self Registration...6 About Issues...6 The Home Page...

More information

Design of Physical Education Management System Guoquan Zhang

Design of Physical Education Management System Guoquan Zhang 2nd International Conference on Education, Management and Information Technology (ICEMIT 2015) Design of Physical Education Management System Guoquan Zhang Department of Physical Education, Bohai University,

More information

Information Technology Department, PCCOE-Pimpri Chinchwad, College of Engineering, Pune, Maharashtra, India 2

Information Technology Department, PCCOE-Pimpri Chinchwad, College of Engineering, Pune, Maharashtra, India 2 Volume 5, Issue 5, May 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Adaptive Huffman

More information

Mobile Data Management Structure Design based on Mobile Database

Mobile Data Management Structure Design based on Mobile Database International Conference on Materials Engineering and Information Technology Applications (MEITA 2015) Mobile Data Management Structure Design based on Mobile Database Xin Hu Library, Nanchang Institute

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY Rashmi Gadbail,, 2013; Volume 1(8): 783-791 INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK EFFECTIVE XML DATABASE COMPRESSION

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

A Communication Middleware with Unified Data Transmission Interface

A Communication Middleware with Unified Data Transmission Interface Communications and Network, 2013, 5, 34-38 doi:10.4236/cn.2013.51b009 Published Online February 2013 (http://www.scirp.org/journal/cn) A Communication Middleware with Unified Data Transmission Interface

More information

Design and Implementation of Computer Room Management System in University

Design and Implementation of Computer Room Management System in University Design and Implementation of Computer Room Management System in University YOUwen Zhang, Dong Kang* {Zhangyouwen521@163.com} HaiNan college of Economics and Business Haikou 571127, China Abstract. With

More information

Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm

Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm Research and Application of E-Commerce Recommendation System Based on Association Rules Algorithm Qingting Zhu 1*, Haifeng Lu 2 and Xinliang Xu 3 1 School of Computer Science and Software Engineering,

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

Online Teaching Evaluation System Design and Implementation

Online Teaching Evaluation System Design and Implementation International Conference on Humanities Science, Management and Education Technology (HSMET 2017) Online Teaching Evaluation System Design and Implementation Baosheng Qi Department of Information Engineering

More information

Norcom. e-fileplan Electronic Cabinet System

Norcom. e-fileplan Electronic Cabinet System Norcom e-fileplan Electronic Cabinet System Revision 2.0 \ Phone: (866) 726-6328 Email:sales@norcom-inc.com e-fileplan Overview e-fileplan is an electronic filing cabinet and document imaging system. e-fileplan

More information

Computing at Cox Green Curriculum Plan. Key Stage 3 Year 7

Computing at Cox Green Curriculum Plan. Key Stage 3 Year 7 Computing at Cox Green Curriculum Plan Key Stage 3 Year 7 Term 1 Term 2 Term 3 Term 4 Term 5 Term 6 E-safety Database Programming Spreadsheet and modelling Web design How data is represented in s? How

More information

The principle of a fulltext searching instrument and its application research Wen Ju Gao 1, a, Yue Ou Ren 2, b and Qiu Yan Li 3,c

The principle of a fulltext searching instrument and its application research Wen Ju Gao 1, a, Yue Ou Ren 2, b and Qiu Yan Li 3,c International Conference on Education, Management, Commerce and Society (EMCS 2015) The principle of a fulltext searching instrument and its application research Wen Ju Gao 1, a, Yue Ou Ren 2, b and Qiu

More information

INTRODUCTION TO THE INTERNET. Presented by the Benbrook Public Library

INTRODUCTION TO THE INTERNET. Presented by the Benbrook Public Library INTRODUCTION TO THE INTERNET Presented by the Benbrook Public Library INTRODUCTION TO THE INTERNET What is the Internet? How did it come about? What is the World Wide Web? How does it work? How do I get

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

Key Technology of Online Writing System Development Hongmei Zhao

Key Technology of Online Writing System Development Hongmei Zhao 3rd International Conference on Machinery, Materials and Information Technology Applications (ICMMITA 2015) Key Technology of Online Writing System Development Hongmei Zhao College of Education and Sports,

More information

The research and design of user interface in parallel computer system

The research and design of user interface in parallel computer system 5th International Conference on Education, Management, Information and Medicine (EMIM 2015) The research and design of user interface in parallel computer system Liu Xiang 1 Shang Liyuan 2 Lu Zhenting

More information

International Journal of Scientific & Engineering Research Volume 2, Issue 12, December ISSN Web Search Engine

International Journal of Scientific & Engineering Research Volume 2, Issue 12, December ISSN Web Search Engine International Journal of Scientific & Engineering Research Volume 2, Issue 12, December-2011 1 Web Search Engine G.Hanumantha Rao*, G.NarenderΨ, B.Srinivasa Rao+, M.Srilatha* Abstract This paper explains

More information

THE MICROCOMPUTER SYSTEM CHAPTER - 2

THE MICROCOMPUTER SYSTEM CHAPTER - 2 THE MICROCOMPUTER SYSTEM CHAPTER - 2 20 2.1 GENERAL ASPECTS The first computer was developed using vacuum tubes. The computers thus developed were clumsy and dissipating more power. After the invention

More information

DESIGN AND IMPLEMENTATION OF TOOL FOR CONVERTING A RELATIONAL DATABASE INTO AN XML DOCUMENT: A REVIEW

DESIGN AND IMPLEMENTATION OF TOOL FOR CONVERTING A RELATIONAL DATABASE INTO AN XML DOCUMENT: A REVIEW DESIGN AND IMPLEMENTATION OF TOOL FOR CONVERTING A RELATIONAL DATABASE INTO AN XML DOCUMENT: A REVIEW Sunayana Kohli Masters of Technology, Department of Computer Science, Manav Rachna College of Engineering,

More information

Queries give database managers its real power. Their most common function is to filter and consolidate data from tables to retrieve it.

Queries give database managers its real power. Their most common function is to filter and consolidate data from tables to retrieve it. 1 2 Queries give database managers its real power. Their most common function is to filter and consolidate data from tables to retrieve it. The data you want to see is usually spread across several tables

More information

An Integrated Framework to Enhance the Web Content Mining and Knowledge Discovery

An Integrated Framework to Enhance the Web Content Mining and Knowledge Discovery An Integrated Framework to Enhance the Web Content Mining and Knowledge Discovery Simon Pelletier Université de Moncton, Campus of Shippagan, BGI New Brunswick, Canada and Sid-Ahmed Selouani Université

More information

Research on Data Storage Structure of Object Pool for Intelligent Virtual Terminal Based on ISO11783

Research on Data Storage Structure of Object Pool for Intelligent Virtual Terminal Based on ISO11783 5th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2017) Research on Data Storage Structure of Object Pool for Intelligent Virtual Terminal Based on ISO11783

More information

THE WEB SEARCH ENGINE

THE WEB SEARCH ENGINE International Journal of Computer Science Engineering and Information Technology Research (IJCSEITR) Vol.1, Issue 2 Dec 2011 54-60 TJPRC Pvt. Ltd., THE WEB SEARCH ENGINE Mr.G. HANUMANTHA RAO hanu.abc@gmail.com

More information

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c

Research of tooling test signal collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Research of tooling test collection and analysis Guozhuang Liang 1, a, Xuan Chen 1,b,Yufeng Yao 2,c 1 School

More information

Design on Data Storage Structure for Course Management System Li Ma

Design on Data Storage Structure for Course Management System Li Ma 3rd International Conference on Education, Management and Computing Technology (ICEMCT 2016) Design on Data Storage Structure for Course Management System Li Ma School of Education and Sports, Bohai University,

More information

A REASONING COMPONENT S CONSTRUCTION FOR PLANNING REGIONAL AGRICULTURAL ADVANTAGEOUS INDUSTRY DEVELOPMENT

A REASONING COMPONENT S CONSTRUCTION FOR PLANNING REGIONAL AGRICULTURAL ADVANTAGEOUS INDUSTRY DEVELOPMENT A REASONING COMPONENT S CONSTRUCTION FOR PLANNING REGIONAL AGRICULTURAL ADVANTAGEOUS INDUSTRY DEVELOPMENT Yue Fan 1, Yeping Zhu 1*, 1 Agricultural Information Institute, Chinese Academy of Agricultural

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

Test Cases Generation from UML Activity Diagrams

Test Cases Generation from UML Activity Diagrams Eighth ACIS International Conference on Software Engineering, Artificial Intelligence, Networking, and Parallel/Distributed Computing Test Cases Generation from UML Activity Diagrams Hyungchoul Kim, Sungwon

More information

An Application of Genetic Algorithm for Auto-body Panel Die-design Case Library Based on Grid

An Application of Genetic Algorithm for Auto-body Panel Die-design Case Library Based on Grid An Application of Genetic Algorithm for Auto-body Panel Die-design Case Library Based on Grid Demin Wang 2, Hong Zhu 1, and Xin Liu 2 1 College of Computer Science and Technology, Jilin University, Changchun

More information

Operation Manual DHCP. Table of Contents

Operation Manual DHCP. Table of Contents Table of Contents Table of Contents Chapter 1 DHCP Overview... 1-1 1.1 Introduction to DHCP... 1-1 1.2 DHCP IP Address Assignment... 1-2 1.2.1 IP Address Assignment Policy... 1-2 1.2.2 Obtaining IP Addresses

More information

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b

Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 2016) Design and Implementation of Inspection System for Lift Based on Android Platform Yan Zhang1, a, Yanping Hu2,b 1

More information

Developing ArXivSI to Help Scientists to Explore the Research Papers in ArXiv

Developing ArXivSI to Help Scientists to Explore the Research Papers in ArXiv Submitted on: 19.06.2015 Developing ArXivSI to Help Scientists to Explore the Research Papers in ArXiv Zhixiong Zhang National Science Library, Chinese Academy of Sciences, Beijing, China. E-mail address:

More information

Open Data Standards for Administrative Data Processing

Open Data Standards for Administrative Data Processing University of Pennsylvania ScholarlyCommons 2018 ADRF Network Research Conference Presentations ADRF Network Research Conference Presentations 11-2018 Open Data Standards for Administrative Data Processing

More information

Exploration of Fault Diagnosis Technology for Air Compressor Based on Internet of Things

Exploration of Fault Diagnosis Technology for Air Compressor Based on Internet of Things Exploration of Fault Diagnosis Technology for Air Compressor Based on Internet of Things Zheng Yue-zhai and Chen Xiao-ying Abstract With the development of network and communication technology, this article

More information

Multi-dimensional database design and implementation of dam safety monitoring system

Multi-dimensional database design and implementation of dam safety monitoring system Water Science and Engineering, Sep. 2008, Vol. 1, No. 3, 112-120 ISSN 1674-2370, http://kkb.hhu.edu.cn, e-mail: wse@hhu.edu.cn Multi-dimensional database design and implementation of dam safety monitoring

More information

Block-Matching based image compression

Block-Matching based image compression IEEE Ninth International Conference on Computer and Information Technology Block-Matching based image compression Yun-Xia Liu, Yang Yang School of Information Science and Engineering, Shandong University,

More information

The Capture and Reduction Technology of Image Data based on HTTP Protocol 1

The Capture and Reduction Technology of Image Data based on HTTP Protocol 1 1, 2, 3 The Capture and Reduction Technology of Image Data based on HTTP Protocol 1 Wu yan lun, 2 Zhang xiao hong, 3 Peng cui School of Information Engineering, Southwest University of Science and Technology,

More information

A DTD-Syntax-Tree Based XML file Modularization Browsing Technique

A DTD-Syntax-Tree Based XML file Modularization Browsing Technique IJCSNS International Journal of Computer Science and Network Security, VOL.6 No.2A, February 2006 127 A DTD-Syntax-Tree Based XML file Modularization Browsing Technique Zhu Zhengyu 1, Changzhi Li, Yuan

More information

And FlexCel is much more than just an API to read or write xls files. On a high level view, FlexCel contains:

And FlexCel is much more than just an API to read or write xls files. On a high level view, FlexCel contains: INTRODUCTION If you develop applications for the.net Framework, be it Winforms, ASP.NET or WPF, you are likely to need to interface with Excel sooner or later. You might need to create Excel files that

More information

High-Reliability, Next-Generation Supervisory and Control System for Power Stations

High-Reliability, Next-Generation Supervisory and Control System for Power Stations 214 High-Reliability, Next-Generation Supervisory and Control System for Power Stations High-Reliability, Next-Generation Supervisory and Control System for Power Stations Akio Ito Kazuo Furudate Masayuki

More information

A Method Based Genetic Algorithm for Pipe Routing Design

A Method Based Genetic Algorithm for Pipe Routing Design 5th International Conference on Advanced Engineering Materials and Technology (AEMT 2015) A Method Based Genetic Algorithm for Pipe Routing Design Changtao Wang 1, a, Xiaotong Sun 2,b,Tiancheng Yuan 3,c

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 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

Study on data encryption technology in network information security. Jianliang Meng, Tao Wu a

Study on data encryption technology in network information security. Jianliang Meng, Tao Wu a nd International Workshop on Materials Engineering and Computer Sciences (IWMECS 05) Study on data encryption technology in network information security Jianliang Meng, Tao Wu a School of North China Electric

More information

Facial Animation System Design based on Image Processing DU Xueyan1, a

Facial Animation System Design based on Image Processing DU Xueyan1, a 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 206) Facial Animation System Design based on Image Processing DU Xueyan, a Foreign Language School, Wuhan Polytechnic,

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

Research on Design Information Management System for Leather Goods

Research on Design Information Management System for Leather Goods Available online at www.sciencedirect.com Physics Procedia 24 (2012) 2151 2158 2012 International Conference on Applied Physics and Industrial Engineering Research on Design Information Management System

More information

Design and Implement of Laboratory Management System based Web Zheng-Bo LI School of Economic Management, Beihua University, Jilin , China.

Design and Implement of Laboratory Management System based Web Zheng-Bo LI School of Economic Management, Beihua University, Jilin , China. Advances in Engineering Research (AER), volume 82 2016 International Conference on Engineering and Advanced Technology (ICEAT-16) Design and Implement of Laboratory Management System based Web Zheng-Bo

More information

Unit 10 Databases. Computer Concepts Unit Contents. 10 Operational and Analytical Databases. 10 Section A: Database Basics

Unit 10 Databases. Computer Concepts Unit Contents. 10 Operational and Analytical Databases. 10 Section A: Database Basics Unit 10 Databases Computer Concepts 2016 ENHANCED EDITION 10 Unit Contents Section A: Database Basics Section B: Database Tools Section C: Database Design Section D: SQL Section E: Big Data Unit 10: Databases

More information

Index Compression. David Kauchak cs160 Fall 2009 adapted from:

Index Compression. David Kauchak cs160 Fall 2009 adapted from: Index Compression David Kauchak cs160 Fall 2009 adapted from: http://www.stanford.edu/class/cs276/handouts/lecture5-indexcompression.ppt Administrative Homework 2 Assignment 1 Assignment 2 Pair programming?

More information

DupScout DUPLICATE FILES FINDER

DupScout DUPLICATE FILES FINDER DupScout DUPLICATE FILES FINDER User Manual Version 10.3 Dec 2017 www.dupscout.com info@flexense.com 1 1 Product Overview...3 2 DupScout Product Versions...7 3 Using Desktop Product Versions...8 3.1 Product

More information

The CAD/CAE system of a tricone rock bit

The CAD/CAE system of a tricone rock bit Computer Aided Optimum Design in Engineering IX 453 The CAD/CAE system of a tricone rock bit Z. Wu 1, V. Thomson 2, H. Attia 2 & Y. Lin 1 1 Department of Mechanical Engineering, Southwest Petroleum Institute,

More information

Available online at Procedia Engineering 29 (2012) 69 73

Available online at   Procedia Engineering 29 (2012) 69 73 Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 69 73 2012 International Workshop on Information and Electronics Engineering (IWIEE) Research on the Planning and Construction of

More information

Enabling Seamless Sharing of Data among Organizations Using the DaaS Model in a Cloud

Enabling Seamless Sharing of Data among Organizations Using the DaaS Model in a Cloud Enabling Seamless Sharing of Data among Organizations Using the DaaS Model in a Cloud Addis Mulugeta Ethiopian Sugar Corporation, Addis Ababa, Ethiopia addismul@gmail.com Abrehet Mohammed Omer Department

More information

!!!!!!!!!!!!! speedy. pdm !!!!!!!!!!!!!!!!!!!!!!!! documents, Finding. all4cad. not just searching! Made in Germany CAD / CAM - SYSTEMHAUS

!!!!!!!!!!!!! speedy. pdm !!!!!!!!!!!!!!!!!!!!!!!! documents, Finding. all4cad. not just searching! Made in Germany CAD / CAM - SYSTEMHAUS speedy all4cad Made in Germany Finding documents, not just searching pdm CAD / CAM - SYSTEMHAUS i speedy/pdm functional overview Technical document management 1 The business solution 3 The search 4 The

More information

An Efficient Image Processing Method Based on Web Services for Mobile Devices

An Efficient Image Processing Method Based on Web Services for Mobile Devices An Efficient Image Processing Method Based on Web Services for Mobile Devices Yi Liang a,b a Tianjin Key Lab of Intelligent Computing & Novel Software Technology, Tianjin University of Technology Tianjin,

More information

Keywords: Motion Capture System, Virtual Interaction, Wireless Sensor Network, Motion Builder

Keywords: Motion Capture System, Virtual Interaction, Wireless Sensor Network, Motion Builder Advances in Engineering Research (AER), volume 107 2nd International Conference on Materials Engineering and Information Technology Applications (MEITA 2016) Study of Virtual Interaction System based on

More information

Introducing the Oracle Rdb LogMiner TM

Introducing the Oracle Rdb LogMiner TM Introducing the Oracle Rdb LogminerTM Introducing the Oracle Rdb LogMiner TM An article from the Rdb Journal By Norm Lastovica January 15, 2000 Copyright 2000 Oracle Corporation. All Rights Reserved. file:///d

More information

Path-based XML Relational Storage Approach

Path-based XML Relational Storage Approach Available online at www.sciencedirect.com Physics Procedia 33 (2012 ) 1621 1625 2012 International Conference on Medical Physics and Biomedical Engineering Path-based XML Relational Storage Approach Qi

More information

The design and implementation of UML-based students information management system

The design and implementation of UML-based students information management system The design and implementation of UML-based students information management system Abstract Yunli Cheng 1, a, ChuanQin Li 2, b 1 Guangzhou Nanyang Polytechnic, Guangzhou 510925, China 2 Guangzhou Huaxia

More information

A Comparative Study of Locality Preserving Projection and Principle Component Analysis on Classification Performance Using Logistic Regression

A Comparative Study of Locality Preserving Projection and Principle Component Analysis on Classification Performance Using Logistic Regression Journal of Data Analysis and Information Processing, 2016, 4, 55-63 Published Online May 2016 in SciRes. http://www.scirp.org/journal/jdaip http://dx.doi.org/10.4236/jdaip.2016.42005 A Comparative Study

More information

Specifying the PCB Design Rules and Resolving Violations

Specifying the PCB Design Rules and Resolving Violations Specifying the PCB Design Rules and Resolving Violations Summary This article introduces the PCB Design Rules System, in particular how rules are created and applied to objects in a design. It also describes

More information

Research on Design and Application of Computer Database Quality Evaluation Model

Research on Design and Application of Computer Database Quality Evaluation Model Research on Design and Application of Computer Database Quality Evaluation Model Abstract Hong Li, Hui Ge Shihezi Radio and TV University, Shihezi 832000, China Computer data quality evaluation is the

More information

User Guide. Version 1.5 Copyright 2006 by Serials Solutions, All Rights Reserved.

User Guide. Version 1.5 Copyright 2006 by Serials Solutions, All Rights Reserved. User Guide Version 1.5 Copyright 2006 by Serials Solutions, All Rights Reserved. Central Search User Guide Table of Contents Welcome to Central Search... 3 Starting Your Search... 4 Basic Search & Advanced

More information

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2 Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 256-259, pp 2898-2901 doi:10.4028/www.scientific.net/amm.256-259.2898 2013 Trans Tech Publications, Switzerland The Analysis and

More information

Application of Redundant Backup Technology in Network Security

Application of Redundant Backup Technology in Network Security 2018 2nd International Conference on Systems, Computing, and Applications (SYSTCA 2018) Application of Redundant Backup Technology in Network Security Shuwen Deng1, Siping Hu*, 1, Dianhua Wang1, Limin

More information

Ramani A.V 2 HEAD OF CS & SRMV CAS, Coimbatore, Tamilnadu, India

Ramani A.V 2 HEAD OF CS & SRMV CAS, Coimbatore, Tamilnadu, India Volume 7, Issue 2, February 2017 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Website Quality

More information

Creating an Oracle Database Using DBCA. Copyright 2009, Oracle. All rights reserved.

Creating an Oracle Database Using DBCA. Copyright 2009, Oracle. All rights reserved. Creating an Oracle Database Using DBCA Objectives After completing this lesson, you should be able to do the following: Create a database by using the Database Configuration Assistant (DBCA) Generate database

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Research and Design Application Platform of Service Grid Based on WSRF

Research and Design Application Platform of Service Grid Based on WSRF DOI: 10.7763/IPEDR. 2012. V49. 27 Research and Design Application Platform of Service Grid Based on WSRF Jianmei Ge a, Shying Zhang a College of Computer Science and Technology, Beihua University, No.1

More information

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc. Study on secure data storage based on cloud computing ABSTRACT KEYWORDS

BioTechnology. An Indian Journal FULL PAPER. Trade Science Inc. Study on secure data storage based on cloud computing ABSTRACT KEYWORDS [Type text] [Type text] [Type text] ISSN : 0974-7435 Volume 10 Issue 22 BioTechnology 2014 An Indian Journal FULL PAPER BTAIJ, 10(22), 2014 [13778-13783] Study on secure data storage based on cloud computing

More information