USE OF THE EXPERT METHODS IN COMPUTER BASED MAINTENAN CE SUPPORT OF THE M- 28 AIRCRAFT
|
|
- Christiana Walsh
- 2 years ago
- Views:
Transcription
1 ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ SCIENTIFIC JOURNAL OF POLISH NAVAL ACADEMY 2015 (LVI) 2 (201) Piotr Golański 1, Przemysław Mądrzycki 1 DOI: / X USE OF THE EXPERT METHODS IN COMPUTER BASED MAINTENAN CE SUPPORT OF THE M- 28 AIRCRAFT ABSTRACT This article deals with the issues relating to the maintenance and diagnostics of airplanes. It presents the concept of using the expert system to support the necessary maintenance and diagnostics of the aircraft. In the beginning it describes the general principles of developing the expert systems. It briefly discusses the basic tools used and their implementation. It also presents a way of employing one of the tools, i.e. the CLIPS expert system shell for solving airplane maintenance problems. Here the technical state diagnostics simulator of the M-28 airplane is used as an example. Key words: aircraft maintenance, expert systems, mobile systems. INTRODUCTION Since their origin computer-aided maintenance systems have employed methods based on artificial intelligence, and from the start they have been known as expert systems [1, 10]. The basic difference between traditional and expert systems lies in the method of dealing with the problem. In the traditional approach the problem is solved with an algorithm which processes the data. In the expert system the problem is described and solved exclusively with appropriately prepared data structures. Therefore, tools used to build the expert systems are somewhat different to tools used to build conventional systems. In the case of conventional systems imperative languages based on the languages C and Pascal are used. To build expert 1 Air Force Institute of Technology, Księcia Bolesława 6 Str., Warszawa, Poland; {piotr.golanski; 5
2 Piotr Golański, Przemysław Mądrzycki systems declarative languages are used, such as Lisp [8] or Prolog [5]. In practice, to build Expert systems, specialized tools are employed expert system shells. These are, in fact, really expert system without knowledge. This article presents the use of one of the expert system shells for building an airplane support system. It also discusses the principles underlying the construction and performance of such a system. In the concluding part it presents the use of the expert methods with regard to a simple diagnostic problem, employing the M-28 airplane diagnostic simulator, designed to train ground personnel. The simulator was developed in the Air Force Institute of Technology in cooperation with the Air Force Officers Higher School, within the framework of the project UDA-POIG /09-00 Development of, and studies on, an airplane diagnostic simulator in virtual technology [11]. PROBLEM ANALYSIS The expert systems are systems employed to manage operations models of technical object operations processes. The model of such a process, which would simultaneously reflect the way of the expert system performance, can be expressed in the form of finite state machine [7]. M = ( Q, Σ, δ, q 0, F ), (1) where: Q finite state set; Σ finite input alphabet; q 0 initial state ( q 0 Q ); δ transition function δ : Q Σ Q ; F final state set ( F Q ). The finite state set defines the knowledge states in the expert system relating to the operated object. The initial finite alphabet is a set of symbols which allow for a dialogue between the user and the system. The transition function δ, depending on the current state and the results of the user-system dialogue, changes the knowledge state in the system. The final state set determines the knowledge state which contains the solution to the problem. 6 Zeszyty Naukowe AMW Scientific Journal of PNA
3 Use of the expert methods in computer based maintenance support of the M-28 aircraft The presented model (1) also describes the basic elements and performance of the expert system as well. In the literature the expert systems are described in various aspects and at various levels of detail. This article has adopted the account of the expert system structure presented in the work [12]. In this approach the expert system is composed of four parts (fig. 1): knowledge base declarative representation of knowledge often in the form of if-then; working memory data specific for the problem being solved; inference engine code which is the core of the system which makes inferences based on the knowledge base and data from the cache; user interface code controlling the dialogue between the user and the system. Fig. 1. A diagram of the expert system structure The key elements in every expert system are the set of data declarations dependent on the problem, called base knowledge and the program independent of the problem (although dependent on the data structure) called inference engine. The knowledge base is the expert s domain knowledge, and it is implemented by the 2 (201)
4 Piotr Golański, Przemysław Mądrzycki knowledge engineer as the initial state of knowledge relating to the object q 0. The inference engine operates on the base knowledge and in the dialogue with the operator it generates a solution to the problem defined by the user, realizing the transition function δ. In order to interact with the system the user employs the interface, most often Graphic User Interface type, using the elements of the finite alphabet Σ. Inference engines work in one of two modes: forward chaining and backward chaining. Forward chaining is the top-down method which using the known facts attempts to make inferences (from the satisfied rule conditions), which are then performed as actions. This process continues until the goals are reached. Backward chaining is the bottom-up method which starts with goals, and searches the data base until it finds the rules whose actions match the expected goal. If the condition of such a rule is not satisfied, it is added to the list of goals. Backward chaining is more like a verification process than a search process and it is usually used in technical diagnostics systems [5]. IMPLEMENTATION AND PERFORMANCE OF THE SYSTEM In order to implement the inference engine and the knowledge base, in the case of the system under consideration, CLIPS (C Language Integrated Production System) was used, the tool for building expert systems in National Aeronautics and Space Administration (NASA). A CLIPS was widely used in the past and is widely used at present for building expert systems relating to technical diagnostics: [2, 4, 9, 13]. The performance of the CLIPS s interpreter is based on using the inference mechanisms contained in its inference engine and the set of rules and facts written in the file m-28.clp. The rules have the form of implication: where: LHS Left Hand Side; RHS Right Hand Side. LHS => RHS, (2) As a result of the work of the inference engine the rules whose LHS match the facts placed in the cache are selected. Then, the order of triggering rules is determined and stored in the cache. In the next step the rules are triggered following their priority, and then actions contained in their RHS are performed. This way the inference engine performs forward chaining. 8 Zeszyty Naukowe AMW Scientific Journal of PNA
5 Use of the expert methods in computer based maintenance support of the M-28 aircraft In the case of the discussed system, in the initial state q 0 is triggered by the no-goal rule (fig. 2), as in the cache after it is entered from the file m-28.clp there is no defined action goal, i.e. the maintenance action has not been selected. Execution of the RHS of this rule leads to waiting for the selection of action. Fig. 2. The rule of maintenance action selection After selecting the action, i.e. determining the action goal, the inference engine looks for indirect goals which ensure execution of the selected action, triggering the propagate-goal rule (fig. 3). If, for example, the action identified with the goal pg44.diag (diagnostics of low fuel warning light) has been selected then the facts shown in figure 4 will match the propagate-goal rule. As a result of the execution of RHS of the rule two goals pg44.test and PG44 will be determined. As it can be seen, despite the fact that the inference engine CLIPS performs the forward chaining inference, appropriately formulated facts allow for executing back chaining inference and the goals which occur in the LHS of the rules are determined. Fig. 3. The rule of goal propagation Fig. 4. Facts containing propagate goal pg44.diag 2 (201)
6 Piotr Golański, Przemysław Mądrzycki Repeated triggering of the propagate-goal rule leads to determining goals and initial actions. After reaching this state, dialogue rules, checking if the goals are reached, begin to be triggered. Figure 5 presents the ask-question-leg l values-and- -instruct rule generating the questions does the variable have a value?. This question is transmitted to the user by means of the interface. In the case of a negative answer the function message is invoked which is also used to transmit the answer as a text message. Fig. 5. An example of dialogue rule CONCLUSIONS The aim of this article is to present the concept of using expert methods for M-28 aircraft maintenance. The concept is based on using CLIPS expert system shell. This solution has been tested on simple maintenance procedures of M-28 aircraft. The positive result of the test indicates that after appropriate extension of the knowledge base it would be possible to build a complete diagnostic expert system for this aircraft. In addition, such a system, following necessary modifications, could be used for diagnostics of other aircrafts as well as other technical objects. 10 Zeszyty Naukowe AMW Scientific Journal of PNA
7 Use of the expert methods in computer based maintenance support of the M-28 aircraft REFERENCES [1] Barker V. E., O Connor D. E., Expert systems for configuration at Digital: XCON and beyond, Communications of the ACM, 1989, Vol. 32, No. 3, pp [2] CLIPS 94, Third Conference on CLIPS Proceedings (Electronic Version), September 12 14, 1994, Lyndon B. Johnson Space Center, [online], documentation/other/3ccp, pdf, [access ]. [3] Dapeng T., Li Peiyu L., Pan Xiaohong P., Embedded Fault Diagnosis Expert System Based on CLIPS and ANN, Computational Science ICCS 2007 Lecture Notes in Computer Science, 2007, Vol. 4490, pp [4] Gartner D., Sheppard J., W., An Experiment in Encapsulation in System Diagnosis, Test Technology and Commercialization Conference Record, AUTOTESTCON 96, pp [5] Gatnar E., Stąpor K., Prolog język sztucznej inteligencji, Wyd. PLJ, Warszawa 1991 [Prolog language of artificial intelligence available in the Polish language]. [6] Giarratano J. C., CLIPS User s Guide, [7] Homenda W., Elementy lingwistyki matematycznej i teorii automatów, Oficyna Wydawnicza Politechniki Warszawskiej, Warszawa 2005 [Elements of mathematical linguistics and theory of automated machines available in the Polish language]. [8] Jurkiewicz Z., Lao M. J., Język programowania LISP, PWN, Warszawa 1990 [The programming language LISP available in the Polish language]. [9] Long H., Wang X., Aircraft fuel system diagnostic fault detection through expert system, Proc. IEEE Sixth World Congress on Intelligent Control and Automation, WCICA, 2008 pp [10] Mądrzycki P. at all, Diagnostic Simulator of the M-28 Aircraft for the Ground Engineering Crew in Virtual Technology, Polish Journal of Environmental Studies, 2011, Vol. 20, No. 5A. [11] Mazurkiewicz D., Computer-aided maintenance and reliability management systems for conveyor belts, Eksploatacja i Niezawodność Maintenance and Reliability, 2014, Vol. 16, No. 3, pp [12] Merritt D., Building Expert Systems in Prolog, Amzi! inc., USA, [13] Yan C., Ma S., Zhou G., Fang J., Fault Diagnostic Expert System of Rolling Element Bearing Based on CLIPS, Journal of Information and Computational Science, 2013, Vol. 10, No. 10, pp [available online], pdf, [access ]. 2 (201)
8 Piotr Golański, Przemysław Mądrzycki ZASTOSOWANIE METOD EKSPERCKICH W KOMPUTEROWYM SYSTEMIE WSPOMAGANIA OBSŁUGI SAMOLOTU M- 28 STRESZCZENIE Artykuł dotyczy problematyki wspomagania procesu obsługi i diagnostyki statków powietrznych. Przedstawiono w nim koncepcję wykorzystania systemu ekspertowego do wspomagania obsługi i diagnostyki statku powietrznego. Na wstępie przedstawiono ogólne zasady budowy systemów ekspertowych. Krótko omówiono podstawowe narzędzie służące do ich implementacji. Przedstawiono sposób wykorzystania jednego z narzędzi, jakim jest powłoka systemów ekspertowych CLIPS, do rozwiązania problemów obsługowych statku powietrznego na przykładzie symulatora diagnostycznego samolotu M-28. Słowa kluczowe: obsługa statku powietrznego, systemy ekspertowe, systemy mobilne. 12 Zeszyty Naukowe AMW Scientific Journal of PNA
DEDUPLICATION OF TRACKED OBJECTS POSITION DATA AT SINGLE OBSERVATION POINT OF A VESSEL MONITORING SYSTEM
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ SCIENTIFIC JOURNAL OF POLISH NAVAL ACADEMY 2015 (LVI) 2 (201) Jędrzej Hajduczenia 1, Sylwester Kaczmarek 2, Jarosław Sadowski 1 DOI: 10.5604/0860889X.1172069
THE USE OF EXPERT SYSTEM FOR MARINE DIESEL ENGINE DIAGNOSIS
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ ROK LIII NR 1 (188) 2012 Adam Charchalis Rafał Pawletko Akademia Morska w Gdyni THE USE OF EXPERT SYSTEM FOR MARINE DIESEL ENGINE DIAGNOSIS ABSTRACT The paper
SELECTED ASPECTS OF IMPLEMENTING A GNSS SYSTEM IN AVIATION
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ SCIENTIFIC JOURNAL OF POLISH NAVAL ACADEMY 2015 (LVI) 1 (200) DOI: 10.5604/0860889X.1161254 Henryk Jafernik 1, Janusz Ćwiklak 1, Radosł aw Fellner 2 SELECTED
A Contribution to Expert Decision-based Virtual Product Development
A Contribution to Expert Decision-based Virtual Product Development László Horváth, Imre J. Rudas Institute of Intelligent Engineering Systems, John von Neumann Faculty of Informatics, Óbuda University,
AN ALGORITHM FOR GENERATING BINARY PSEUDO-RANDOM SEQUENCES
ZESZYTY NAUKOWE POLITECHNIKI BIAŁOSTOCKIEJ. INFORMATYKA AN ALGORITHM FOR GENERATING BINARY PSEUDO-RANDOM SEQUENCES Wiktor Dańko Faculty of Computer Science, Bialystok University of Technology, Białystok,
THE STILL PICTURE CAMERA AS A TOOL FOR ANGULAR MEASUREMENTS OF SURFACE OBJECTS IN AN OFF SHORE AREA
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ SCIENTIFIC JOURNAL OF POLISH NAVAL ACADEMY 2015 (LVI) 1 (200) Krzysztof Naus 1, Paulina Turek 2 DOI: 10.5604/0860889X.1161259 THE STILL PICTURE CAMERA AS A TOOL
EXPERIMENTAL STUDIES OF WHEELCHAIR ENERGY CONSUMPTION
PRACE NAUKOWE POLITECHNIKI WARSZAWSKIEJ z. 112 Transport 2016, Piotr Czajkowski Artur Drozd EXPERIMENTAL STUDIES OF WHEELCHAIR ENERGY CONSUMPTION The manuscript delivered: May 2016 Abstract: The maintenance
Technica Agraria 2(2) 2003, 3-8
Technica Agraria 2(2) 2003, 3-8 THE PROBLEMS OF RATIONALIZATION OF DIAGNOSTIC TEST OF MACHINES Czesław Rzenik, Anna Moliska Abstract. The paper presents the method of rationalization of diagnostic test
More on Expert Systems
More on Expert Systems Knowledge Engineering The process of building an expert system: 1. The knowledge engineer establishes a dialog with the human expert to elicit knowledge. 2. The knowledge engineer
Towards Rule-based System for the Assembly of 3D Bricks
Universal Journal of Communications and Network 3(4): 77-81, 2015 DOI: 10.13189/ujcn.2015.030401 http://www.hrpub.org Towards Rule-based System for the Assembly of 3D Bricks Sanguk Noh School of Computer
Artificial intelligence systems for knowledge management in e-health: the study of intelligent software agents.
Artificial intelligence systems for knowledge management in e-health: the study of intelligent software agents. M. Furmankiewicz, A. Sołtysik-Piorunkiewicz, and P. Ziuziański Abstract In this paper, authors
RATIONALIZATION OF VERTICAL MILLING CENTRE FINAL ASSEMBLY PROCESS
KOMISJA BUDOWY MASZYN PAN ODDZIAŁ W POZNANIU Vol. 27 nr 2 Archiwum Technologii Maszyn i Automatyzacji 2007 OLAF CISZAK*, JAN ŻUREK** RATIONALIZATION OF VERTICAL MILLING CENTRE FINAL ASSEMBLY PROCESS This
Using Cloud Computing with RETE Algorithms in a Platform as a Service (PaaS) for Business Systems Development
Using Cloud Computing with RETE Algorithms in a Platform as a Service (PaaS) for Business Systems Development Richard Poblete 1, David de la Fuente 2, and Margarita Alonso 3 1 Department of Business Administration,
Warszawy 8, 35-959 Rzeszów, Poland
Solid State Phenomena Vols. 147-149 (2009) pp 231-236 Online available since 2009/Jan/06 at www.scientific.net (2009) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/ssp.147-149.231
Fuzzy Knowledge Base System for Fault Tracing of Marine Diesel Engine
Fuzzy Knowledge Base System for Fault Tracing of Marine Diesel Engine 99 Fuzzy Knowledge Base System for Fault Tracing of Marine Diesel Engine Faculty of Computers and Information Menufiya University-Shabin
Software implementation of multiple model neural filter for radar target tracking
Scientific Journals Maritime University of Szczecin Zeszyty Naukowe Akademia Morska w Szczecinie 2012, 32(104) z. 2 pp. 88 93 2012, 32(104) z. 2 s. 88 93 Software implementation of multiple model neural
REAL-TIME TRAINING ALGORITHMS IN NEUROEVOLUTIONARY NAVIGATIONAL DECISION SUPPORT SYSTEM
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ ROK LIII NR 4 (191) 2012 Mirosł aw Łącki Akademia Morska w Gdyni REAL-TIME TRAINING ALGORITHMS IN NEUROEVOLUTIONARY NAVIGATIONAL DECISION SUPPORT SYSTEM ABSTRACT
A Knowledge Based System towards Identifying Problems and Getting Instant Solutions about Our Personal Vehicles
Volume 2, No.2, March - April 2013 Shah Murtaza Rashid Al Masud, International Journal of Advanced Trends in Computer Science and Engineering, 2(2), March April 2013, 15-20 International Journal of Advanced
Course Syllabus For Operations Management. Management Information Systems
For Operations Management and Management Information Systems Department School Year First Year First Year First Year Second year Second year Second year Third year Third year Third year Third year Third
D A T A V I S U A L I Z A T I O N O F M A R I N E O B J E C T S O N D I G I T A L M A P S
Z E S Z Y T Y N A U K O W E A K A D E M I I M A R Y N A R K I W O J E N N E J S C I E N T I F I C J O U R N A L O F P O L I S H N A V A L A C A D E M Y 2015 (LVI) 3 (202) B a r t o s z C z a p l e w s
Building well-balanced CDN 1
Proceedings of the Federated Conference on Computer Science and Information Systems pp. 679 683 ISBN 978-83-60810-51-4 Building well-balanced CDN 1 Piotr Stapp, Piotr Zgadzaj Warsaw University of Technology
PROCEEDINGS OF THE INSTITUTE OF VEHICLES 3(99)/2014
PROCEEDINGS OF THE INSTITUTE OF VEHICLES 3(99)/2014 Wojciech Skarka 1, Katarzyna Jezierska-Krupa 2, Maciej Krysiak 3 COMPARISON OF TWO VERSIONS OF BLIND SPOT INFORMATION SYSTEMS IN BYTEL AND MUSHELLKA
Analysis of Multilayer Neural Networks with Direct and Cross-Forward Connection
Analysis of Multilayer Neural Networks with Direct and Cross-Forward Connection Stanis law P laczek and Bijaya Adhikari Vistula University, Warsaw, Poland stanislaw.placzek@wp.pl,bijaya.adhikari1991@gmail.com
Q1. What is Artificial Intelligence? Explain how an AI system is different from a conventional Computing system.
Unit I: ARTIFICIAL INTELLIGENCE Q1. What is Artificial Intelligence? Explain how an AI system is different from a conventional Computing system. Q2. What are the AI techniques? Discuss with example. Q3.
Trends in the stock market and their price forecasting using artificial neural networks 1
wsb.pl/wroclaw/ceejme ISSN electronic version Central and Eastern European Journal of Management and Economics Vol. 1, No. 2, 155-164, Dec. 2013 Trends in the stock market and their price forecasting using
DEMAND FORECASTING IN A BUSINESS BASED ON EXPERTS OPINIONS AN APPLICATION OF WEIBULL DISTRIBUTIONS
EKONOMETRIA ECONOMETRICS 1(39). 2013 ISSN 1507-3866 Paweł Dittmann Wrocław University of Economics, Wrocław, Poland pawel.dittmann@ue.wroc.pl DEMAND FORECASTING IN A BUSINESS BASED ON EXPERTS OPINIONS
An Agent-Based Concept for Problem Management Systems to Enhance Reliability
An Agent-Based Concept for Problem Management Systems to Enhance Reliability H. Wang, N. Jazdi, P. Goehner A defective component in an industrial automation system affects only a limited number of sub
Lecture 2 Rule-based expert systems
Lecture 2 Rule-based expert systems Introduction, or what is knowledge? Rules as a knowledge representation technique The main players in the development team Structure of a rule-based expert system Characteristics
Integrated Environment for Software Development and Analysis
87 «..» 004:378.1 847, 2009,.87-97 Integrated Environment for Software Development and Analysis L. Globa, T. Kot, D. Lysenko National Technical University of Ukraine, Information Telecommunication Networks
Designing Applications with Distributed Databases in a Hybrid Cloud
Designing Applications with Distributed Databases in a Hybrid Cloud Evgeniy Pluzhnik 1, Oleg Lukyanchikov 2, Evgeny Nikulchev 1 & Simon Payain 1 1 Moscow Technological Institute, Moscow, 119334, Russia,
SCIENTIFIC JOURNAL OF POLISH NAVAL ACADEMY 2015 (LVI) 2 (201) ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ SCIENTIFIC JOURNAL OF POLISH NAVAL ACADEMY 2015 (LVI) 2 (201) Jan Monieta 1 DOI: 10.5604/0860889X.1172072 THE IDENTIFICATION AND ELIMINATION OF INTERFERENCE
A Prototype Student Advising Expert System Supported with an Object-Oriented Database
A Prototype Student Advising Expert System Supported with an Object-Oriented Database M. Ayman Al Ahmar Deputy Dean, College of Information Technology Ajman University of Science and Technology (AUST)
MODELING THE FLEXIBILITY OF PNEUMATIC TIRED WHEELS MOVING ON THE SOIL SURFACE
Modeling the flexibility TECHNICAL of pneumatic tired SCIENCES wheels moving on the soil surface Abbrev.: Tech. Sc., Pap. And Rep., No 9, Y. 2006 111 MODELING THE FLEXIBILITY OF PNEUMATIC TIRED WHEELS
A NEURAL NETWORKS APPLICATION IN DECISION SUPPORT SYSTEM. Galina Setlak, Wioletta Szajnar, Leszek Kobyliński
60 A NEURAL NETWORKS APPLICATION IN DECISION SUPPORT SYSTEM Galina Setlak, Wioletta Szajnar, Leszek Kobyliński Abstract: This work presents the using of the chosen neural networks for the data classification.
A Hybrid Load Balancing Policy underlying Cloud Computing Environment
A Hybrid Load Balancing Policy underlying Cloud Computing Environment S.C. WANG, S.C. TSENG, S.S. WANG*, K.Q. YAN* Chaoyang University of Technology 168, Jifeng E. Rd., Wufeng District, Taichung 41349
SIGNAAL MODULAR COMBAT SYSTEM TACTICOS CAPABILITIES DURING HELICOPTER TASKS REALIZATION
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ ROK XLIX NR 4 (175) 2008 Arkadiusz Panasiuk Polish Naval Academy SIGNAAL MODULAR COMBAT SYSTEM TACTICOS CAPABILITIES DURING HELICOPTER TASKS REALIZATION ABSTRACT
QUALITY MANAGEMENT SYSTEM MODELLING OF VEHICLE INSPECTION STATIONS
TRANSPORT PROBLEMS 2009 PROBLEMY TRANSPORTU Volume 4 Issue 4 Andrzej ŚWIDERSKI* Department of Quality and Management Systems str. Nowowiejska 26, 02-010 Warsaw Andrzej WOJCIECHOWSKI, Ewa DĘBICKA Motor
MANAGEMENT FOR SAFETY SYSTEMS DEVELOPMENT
PRACE NAUKOWE Akademii im. Jana Długosza w Czstochowie Technika, Informatyka, Inynieria Bezpieczestwa 2014, t. II, s. 399 403 http://dx.doi.org/10.16926/tiib.2014.02.35 Pavlo Teslenko 1, Oleksandr Voznyi
SELECTED ASPECTS OF TRANSPORTATION SYSTEM MODELLING
TOTAL LOGISTIC MANAGEMENT No. 1 2008 PP. 15 24 Tomasz AMBROZIAK, Dariusz PYZA SELECTED ASPECTS OF TRANSPORTATION SYSTEM MODELLING Abstract: The paper presents selected aspects of the transport services
Open-Source, Cross-Platform Java Tools Working Together on a Dialogue System
Open-Source, Cross-Platform Java Tools Working Together on a Dialogue System Oana NICOLAE Faculty of Mathematics and Computer Science, Department of Computer Science, University of Craiova, Romania oananicolae1981@yahoo.com
Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing
www.ijcsi.org 579 Research and realization of Resource Cloud Encapsulation in Cloud Manufacturing Zhang Ming 1, Hu Chunyang 2 1 Department of Teaching and Practicing, Guilin University of Electronic Technology
Expert Systems : AI Course Lecture 35 36, notes, slides www.myreaders.info/, RC Chakraborty, e-mail rcchak@gmail.
Expert Systems : AI Course Lecture 35 36, notes, slides www.myreaders.info/, RC Chakraborty, e-mail rcchak@gmail.com, June 01, 2010 www.myreaders.info/html/artificial_intelligence.html www.myreaders.info
Capability Service Management System for Manufacturing Equipments in
Capability Service Management System for Manufacturing Equipments in Cloud Manufacturing 1 Junwei Yan, 2 Sijin Xin, 3 Quan Liu, 4 Wenjun Xu *1, Corresponding Author School of Information Engineering, Wuhan
Computer/Information Science Course Descriptions
Computer/Information Science Course Descriptions COMS 1003: Introduction to Computer Based Systems Provides students with both computer concepts and hands-on applications. Although little or no prior computer
Business Process- and Graph Grammar-Based Approach to ERP System Modelling
JOURNAL OF APPLIED COMPUTER SCIENCE Vol. 20 No. 1 (2012), pp. 7-21 Business Process- and Graph Grammar-Based Approach to ERP System Modelling Mariusz Flasiński, Janusz Jurek Jagiellonian University IT
MICHIGAN TEST FOR TEACHER CERTIFICATION (MTTC) TEST OBJECTIVES FIELD 050: COMPUTER SCIENCE
MICHIGAN TEST FOR TEACHER CERTIFICATION (MTTC) TEST OBJECTIVES Subarea Educational Computing and Technology Literacy Computer Systems, Data, and Algorithms Program Design and Verification Programming Language
Information Broker Agents in Intelligent Websites
Information Broker Agents in Intelligent Websites Catholijn M. Jonker, Jan Treur Vrije Universiteit Amsterdam, Department of Artificial Intelligence De Boelelaan 1081a, 1081 HV Amsterdam, The Netherlands
INFO DAYS FP7 2nd Call
Rzeszow, 2008.03.11-12 Integrated Design Flight Mechanics performance optimization Andrzej MAJKA Integrated design of personal aircrafts fleet (multidisciplinary problem) Problems: Problem formulation
Artificial Intelligence (LISP)
Artificial Intelligence (LISP) Introduction Artificial Intelligence (AI) is a broad field, and means different things to different people. It is concerned with getting computers to do tasks that require
WYBRANE PROBLEMY OPTYMALIZACJI WODY POD STĘPKĄ W TRANSPORCIE TOWARÓW DROGĄ MORSKĄ
ZESZYTY NAUKOWE POLITECHNIKI ŚLĄSKIEJ 2013 Seria: TRANSPORT z. 80 Nr kol. 1895 Waldemar UCHACZ 1, Wiesław GALOR 2 WYBRANE PROBLEMY OPTYMALIZACJI WODY POD STĘPKĄ W TRANSPORCIE TOWARÓW DROGĄ MORSKĄ Streszczenie.
Integrated Modeling for Data Integrity in Product Change Management
Integrated Modeling for Data Integrity in Product Change Management László Horváth*, Imre J. Rudas** Institute of Intelligent Engineering Systems, John von Neumann Faculty of Informatics, Budapest Tech
Anomaly Detection Toolkit for Integrated Systems Health Management (ISHM)
AIAA Infotech@Aerospace 2010 20-22 April 2010, Atlanta, Georgia AIAA 2010-3498 Anomaly Detection Toolkit for Integrated Systems Health Management (ISHM) John Schmalzel 1 and Fernando Figueroa 2 NASA, Stennis
NEW APPROACH TO INTEGRATED DATA MANAGEMENT IN SPECIAL MATERIALS PROCESSING
ADVANCES IN MANUFACTURING SCIENCE AND TECHNOLOGY Vol. 38, No. 1, 2014 DOI: 10.2478/amst-2014-0002 NEW APPROACH TO INTEGRATED DATA MANAGEMENT IN SPECIAL MATERIALS PROCESSING Józef Gawlik, Anna Kiełbus,
TQM TOOLS IN CRISIS MANAGEMENT
TQM TOOLS IN CRISIS MANAGEMENT Anna Starosta 1 Grzegorz Zieliński 2 Abstract The current article is concerned with basic aspects connected with improvement of crisis management activities employed by economic
VALIDATION AND VERIFICATION OF KNOWLEDGE BASES IN THE CONTEXT OF KNOWLEDGE MANAGEMENT. LOGOS REASONING SYSTEM CASE STUDY
Krzysztof Michalik Uniwersytet Ekonomiczny w Katowicach VALIDATION AND VERIFICATION OF KNOWLEDGE BASES IN THE CONTEXT OF KNOWLEDGE MANAGEMENT. LOGOS REASONING SYSTEM CASE STUDY Introduction For some time
Keywords:-Workflow Model, Workflow Architecture, Workflow Application Development, Waterfall Model, Workflow Modelling Tools.
Volume 4, Issue 1, January 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Eineeri Research Paper Available online at: www.ijarcsse.com A New Approach in
Curriculum Vitae. Personal information:
Curriculum Vitae Personal information: Name: Marek Kraft Date of birth: 23 August 1980 Address of residence: Os. Orła Białego 6 m. 4 61-251 Poznań, Poland Phone numer: +48 608 237 146 Email address: marek.kraft@put.poznan.pl
CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW
CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW 1 XINQIN GAO, 2 MINGSHUN YANG, 3 YONG LIU, 4 XIAOLI HOU School of Mechanical and Precision Instrument Engineering, Xi'an University
Design of Data Archive in Virtual Test Architecture
Journal of Information Hiding and Multimedia Signal Processing 2014 ISSN 2073-4212 Ubiquitous International Volume 5, Number 1, January 2014 Design of Data Archive in Virtual Test Architecture Lian-Lei
An Open Integrated Environment for Transparent Fuzzy Agents Design
An Open Integrated Environment for Transparent Fuzzy Agents Design Department of Mathematics and Computer Science, University of Salerno via Ponte don Melillo, 84084 Fisciano, Salerno, Italy {gacampora,loia}@unisa.it
Workflow Automation and Management Services in Web 2.0: An Object-Based Approach to Distributed Workflow Enactment
Workflow Automation and Management Services in Web 2.0: An Object-Based Approach to Distributed Workflow Enactment Peter Y. Wu wu@rmu.edu Department of Computer & Information Systems Robert Morris University
Computational Modeling and Simulation for Learning an Automation Concept in Programming Course
Computational Modeling and Simulation for Learning an Automation Concept in Programming Course Yong Cheon Kim, Dai Young Kwon, and Won Gyu Lee Abstract Computational thinking is a fundamental skill for
EXPERT SYSTEM FOR SUPPORTING THE PROCESS OF HYDRODYNAMIC TORQUE CONVERTER CONSTRUCTION
TECHNICAL TRANSACTIONS MECHANICS CZASOPISMO TECHNICZNE MECHANIKA 1-M/2013 KAROL OSOWSKI*, MARCIN MIGUS**, ANDRZEJ KĘSY* EXPERT SYSTEM FOR SUPPORTING THE PROCESS OF HYDRODYNAMIC TORQUE CONVERTER CONSTRUCTION
Optimized New Efficient Load Balancing Technique For Scheduling Virtual Machine
Optimized New Efficient Load Balancing Technique For Scheduling Virtual Machine B.Preethi 1, Prof. C. Kamalanathan 2, 1 PG Scholar, 2 Professor 1,2 Bannari Amman Institute of Technology Sathyamangalam,
Creating Applications for Geodetic Computations**
GEOMATICS AND ENVIRONMENTAL ENGINEERING Volume 4 Number 1 2010 Jan Ruchel* Creating Applications for Geodetic Computations** 1. Visual Basic Simple and Effective Programming Language The computations related
THE EXTENSION OF SIMULATION AND OPTIMIZATION ON MODEL DYNBALANCE(2-2)
THE EXTENSION OF SIMULATION AND OPTIMIZATION ON MODEL DYNBALANCE(2-2) Abstract ElŜbieta Kasperska, Damian Słota Institute of Mathematics Silesian University of Technology ul. Kaszubska 23, Gliwice 44-100
Method of Fault Detection in Cloud Computing Systems
, pp.205-212 http://dx.doi.org/10.14257/ijgdc.2014.7.3.21 Method of Fault Detection in Cloud Computing Systems Ying Jiang, Jie Huang, Jiaman Ding and Yingli Liu Yunnan Key Lab of Computer Technology Application,
CRITERIA FOR ESTIMATING NAVIGATIONAL SAFETY AT SEA
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ SCIENTIFIC JOURNAL OF POLISH NAVAL ACADEMY 2015 (LVI) 2 (201) Zdzisław Kopacz 1, Wacław Morgaś 1 DOI: 10.5604/0860889X.1172071 CRITERIA FOR ESTIMATING NAVIGATIONAL
Sborník vědeckých prací Vysoké školy báňské - Technické univerzity Ostrava číslo 2, rok 2005, ročník LI, řada strojní článek č.
Sborník vědeckých prací Vysoké školy báňské - Technické univerzity Ostrava číslo 2, rok 2005, ročník LI, řada strojní článek č. 1489 Dongbo WANG *, Xiu-Tian YAN **, J. Ion WILLIAM ***, Runxiao WANG ****,
Barcode Based Automated Parking Management System
IJSRD - International Journal for Scientific Research & Development Vol. 2, Issue 03, 2014 ISSN (online): 2321-0613 Barcode Based Automated Parking Management System Parth Rajeshbhai Zalawadia 1 Jasmin
An Intelligent Assistant for Public Transport Management
An Intelligent Assistant for Public Transport Management Martin Molina Department of Artificial Intelligence, Universidad Politécnica de Madrid Campus de Montegancedo s/n 28660, Boadilla del Monte, Madrid,
ANNUAL OF NAVIGATION 8/2004
ANNUAL OF NAVIGATION 8/2004 Tomasz Praczyk Naval University of Gdynia RADAR IMAGES COMPRESSION FOR THE NEED OF A POSITIONING COASTAL SYSTEM AND AN ASSESSMENT OF THIS PROCESS ABSTRACT The article presents
Datavetenskapligt Program (kandidat) Computer Science Programme (master)
Datavetenskapligt Program (kandidat) Computer Science Programme (master) Wolfgang Ahrendt Director Datavetenskap (BSc), Computer Science (MSc) D&IT Göteborg University, 30/01/2009 Part I D&IT: Computer
Making Business Rules operational. Knut Hinkelmann
Making Business Rules operational Knut Hinkelmann Levels of Expression For expressing rules there is a trade-off between acessibility of business meaning and desirable automation Rules can be expressed
Research of pest diagnosis system development tools based on binary tree
Research of pest diagnosis system development tools based on binary tree Yun Qiu 1, Guomin Zhou 1 1 Agricultural Information Institute of CAAS, Beijing 100081 Qiuyun@mail.caas.net.cn Abstract. A visual
Dong-Joo Kang* Dong-Kyun Kang** Balho H. Kim***
Visualization Issues of Mass Data for Efficient HMI Design on Control System in Electric Power Industry Visualization in Computerized Operation & Simulation Tools Dong-Joo Kang* Dong-Kyun Kang** Balho
ABSTRACT INTRODUCTION
Z E S Z Y T Y N A U K O W E A K A D E M I I M A R Y N A R K I W O J E N N E J S C I E N T I F I C J O U R N A L O F P O L I S H N A V A L A C A D E M Y 2015 (LVI) 3 (202) T o m a s z S o b c z y ń s k
Applying MVC to Evolutionary Acquisition IRPM
2012 International Conference on Information and Knowledge Management (ICIKM 2012) IPCSIT vol.45 (2012) (2012) IACSIT Press, Singapore Applying MVC to Evolutionary Acquisition IRPM Patrick Letouze 1,2+,
A Scala DSL for Rete-based Runtime Verification
A Scala DSL for Rete-based Runtime Verification Klaus Havelund Jet Propulsion Laboratory California Institute of Technology, California, USA Abstract. Runtime verification (RV) consists in part of checking
KEEP THIS COPY FOR REPRODUCTION PURPOSES. I ~~~~~Final Report
MASTER COPY KEEP THIS COPY FOR REPRODUCTION PURPOSES 1 Form Approved REPORT DOCUMENTATION PAGE I OMS No. 0704-0188 Public reoorting burden for this collection of information is estimated to average I hour
Technology WHITE PAPER
Technology WHITE PAPER What We Do Neota Logic builds software with which the knowledge of experts can be delivered in an operationally useful form as applications embedded in business systems or consulted
Introduction to knowledge representation and reasoning. We now look briefly at how knowledge about the world might be represented and reasoned with.
Introduction to knowledge representation and reasoning We now look briefly at how knowledge about the world might be represented and reasoned with. Aims: To introduce semantic networks and frames for knowledge
The Use of Hybrid Regulator in Design of Control Systems
World Applied Sciences Journal 23 (10): 1291-1297, 2013 ISSN 1818-4952 IDOSI Publications, 2013 DOI: 10.5829/idosi.wasj.2013.23.10.13144 The Use of Hybrid Regulator in Design of Control Systems Vladimir
A Case Study on Migration from IEC PLC to IEC Function Block Control
A Case Study on Migration from IEC 61131 PLC to IEC 61499 Function Block Control William Wenbin Dai, wdai005@aucklanduni.ac.nz Valeriy Vyatkin, v.vyatkin@auckland.ac.nz Department of Electrical and Computer
Research on Operation Management under the Environment of Cloud Computing Data Center
, pp.185-192 http://dx.doi.org/10.14257/ijdta.2015.8.2.17 Research on Operation Management under the Environment of Cloud Computing Data Center Wei Bai and Wenli Geng Computer and information engineering
A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools
A Conceptual Approach to Data Visualization for User Interface Design of Smart Grid Operation Tools Dong-Joo Kang and Sunju Park Yonsei University unlimit0909@hotmail.com, boxenju@yonsei.ac.kr Abstract
STRUCTURAL REDUNDANCY IN AN OFFSHORE VESSEL DYNAMIC POSITIONING SYSTEM
3-2007 PROBLEMY EKSPLOATACJI 41 Leszek CHYBOWSKI Zbigniew MATUSZAK Akademia Morska, Szczecin STRUCTURAL REDUNDANCY IN AN OFFSHORE VESSEL DYNAMIC POSITIONING SYSTEM Key words Technical system, dynamic positioning,
COMPUTER AIDED LABORATORY ACCREDITATION PROCESS - SERVICE TO THE CUSTOMER AS A REQUIREMENT OF ISO/IEC 17025 STANDARD INITIAL DISCUSSION PAPER
COMPUTER AIDED LABORATORY ACCREDITATION PROCESS - SERVICE TO THE CUSTOMER AS A REQUIREMENT OF ISO/IEC 17025 STANDARD INITIAL DISCUSSION PAPER Marek Szczutkowski Uniwersity of Technology and Life Sciences
應 用 測 試 於 軟 體 發 展 生 命 週 期. Testing In The Software Development Life Cycle
The Second Management Innovation and Practices Conference, Tamsui, Taiwan, April 2001,Volume 2, pp59-68 應 用 測 試 於 軟 體 發 展 生 命 週 期 Testing In The Software Development Life Cycle 蔡 博 元 莊 立 文 真 理 大 學 資 訊
Rules and Business Rules
OCEB White Paper on Business Rules, Decisions, and PRR Version 1.1, December 2008 Paul Vincent, co-chair OMG PRR FTF TIBCO Software Abstract The Object Management Group s work on standards for business
DIAGNOSE OF THE ORGANIZATION DEVELOPMENT - RESEARCH RESULTS
DIAGNOSE OF THE ORGANIZATION DEVELOPMENT - RESEARCH RESULTS Sławomir LUŚCIŃSKI, Wacław GIERULSKI Summary: This paper presents the original method of the diagnose of the organization development together
Creation of third generation e-learning systems using telepresence robot and specialized visual programming language
prof. dr hab. Yaroslav Matviychuk m.eng. Roman Hasko Department of Informational Systems and Technologies Institute of Business and Innovative Technologies National University Lviv Polytechnic Ph.D. Olexandra
CS Master Level Courses and Areas COURSE DESCRIPTIONS. CSCI 521 Real-Time Systems. CSCI 522 High Performance Computing
CS Master Level Courses and Areas The graduate courses offered may change over time, in response to new developments in computer science and the interests of faculty and students; the list of graduate
APPLICATIONS AND RESEARCH ON GIS FOR THE REAL ESTATE
APPLICATIONS AND RESEARCH ON GIS FOR THE REAL ESTATE Chengda Lin, Lingkui Meng, Heping Pan School of Remote Sensing Information Engineering Wuhan University, 129 Luoyu Road, Wuhan 430079, China Tel: (86-27)-8740-4336
IMAV: An Intelligent Multi-Agent Model Based on Cloud Computing for Resource Virtualization
2011 International Conference on Information and Electronics Engineering IPCSIT vol.6 (2011) (2011) IACSIT Press, Singapore IMAV: An Intelligent Multi-Agent Model Based on Cloud Computing for Resource
DEVICE FOR SPOOFING IN GLOBAL POSITIONING SYSTEM
ZESZYTY NAUKOWE AKADEMII MARYNARKI WOJENNEJ ROK LIII NR 4 (191) 2012 Ryszard J. Katulski Jarosł aw Magiera Agnieszka Studań ska Politechnika Gdań ska DEVICE FOR SPOOFING IN GLOBAL POSITIONING SYSTEM ABSTRACT
Computer-aided business intelligence for non-business solutions
Volume 13, Number 3, 2011 WIETE 2011 Global Journal of Engineering Education Computer-aided business intelligence for non-business solutions Sławomir Wiak, Dominik Jeske, Maciej Krasuski & Rafał Stryjek
Simulating Optimum Design of Handling Service Center System Based on WITNESS
Advances in Natural Science Vol. 6, No. 4, 2013, pp. 64-68 DOI:10.3968/j.ans.1715787020130604.2958 ISSN 1715-7862 [PRINT] ISSN 1715-7870 [ONLINE] www.cscanada.net www.cscanada.org Simulating Optimum Design
IAI : Expert Systems
IAI : Expert Systems John A. Bullinaria, 2005 1. What is an Expert System? 2. The Architecture of Expert Systems 3. Knowledge Acquisition 4. Representing the Knowledge 5. The Inference Engine 6. The Rete-Algorithm
MODELLING AND PROTOTYPING OF AERONAUTICAL PLANETARY GEAR DEMONSTRATOR
Journal of KONES Powertrain and Transport, Vol. 17, No. 3 2010 MODELLING AND PROTOTYPING OF AERONAUTICAL PLANETARY GEAR DEMONSTRATOR Grzegorz Budzik, Bogdan Kozik, Jacek Pacana, Bart omiej muda Rzeszów