On Effective Data Retrieval from SQL by Use of Fuzzy Logic

Total Page:16

File Type:pdf, Size:1020Kb

On Effective Data Retrieval from SQL by Use of Fuzzy Logic International Journal of Fuzzy Mathematics and Systems. ISSN 2248-9940 Volume 1, Number 2 (2011), pp. 173-180 © Research India Publications http://www.ripublication.com On Effective Data Retrieval from SQL by use of Fuzzy Logic 1Y.S. Pawar, 2R.G. Sapre and 3Sayali R. Sapre 1Rukmai Technical Institute, Solapur, Maharashtra, India 2Department of Mathematics, Gogate Jogalekar College, Ratnagiri, Maharashtra, India 3Gogate Jogalekar College, Ratnagiri, Maharashtra, India Abstract The Structured Query Language (SQL) is a very powerful tool, it is unable to satisfy needs for data selection based on linguistic expressions and degrees of truth. The goal of the research whose results are presented in the paper is to capture these expressions and make them suitable for queries. For this purpose the fuzzy generalised logical condition for the WHERE part of SQL was developed. In this way, queries based on linguistic expressions are supported and are accessing relational databases in the same way as with the SQL. Fuzzy query is not only a querying tool; it improves the meaning of a query and extracts additional valuable information. Statistical data about districts of the Slovak Republic are used in the case study. Fuzzy approach has some limitations that would appear in a querying process. These limitations and ideas how to solve them are outlined in this paper. Keywords: SQL, fuzzy queries, fuzzy logical condition. AMS Classification Number: 03B52 Introduction This paper examines situations when database querying process by the two-valued realisation of Boolean algebra is not adequate and offers solution based on the fuzzy logic because the fuzzy logic is an approach to computing based on "degrees of truth" rather than the usual "true or false" logic. The fuzzy logic deals with reasoning that is approximate rather than precise to solve problems in a way that more resembles human logic. Fuzzy Logic allows us to form queries which expresses semantic intent 174 Y.S. Pawar et al of our queries. This area of research is not new one but there are still many possibilities and ways for the improvement of existing approaches and for creating new approaches. Fuzzy queries have emerged in the last 25 years to deal with the necessity to soften the two-valued Boolean logic in relational databases. A fuzzy query system is an interface to users to get information from database using regular language sentences. Many fuzzy query implementations have been proposed, resulting in slightly different languages. Although there are some variations according to the particularities of different implementations, the answer to a fuzzy query sentence is generally a list of records, ranked by the degree of matching SQL and its limitations Users search databases in order to obtain data needed for analysis, decision making or to satisfy their curiosity. The SQL is a standard query language for relational databases. The simple SQL query is as follows: select attribute_1,…,attribute_n from T where attribute_p > P and attribute_r < R Figure 1: The result of the classical query. The result of the query is shown in graphical mode in figure 1. Values P and R delimit the space of interesting data. Small squares in the graph show database records. In the graph it is obviously shown that three records are very close to meet the query criterion. These records have potentials to satisfy the query but due to rigidity of SQL query they will not be included in the output. On Effective Data Retrieval from SQL by use of Fuzzy Logic 175 The SQL uses the crisp logic in querying process that causes crisp selection. It means that the record would have not been selected even if it is extremely close to the intent of the query criterion. As the criterion becomes more and more complex, the set of records selected by the WHERE statement becomes more and more crisp. Since then the SQL has been used in many relational databases and information systems for data selection. The use of SQL may be regarded as one of the main reasons for the success of relational databases in the commercial world In this research the core of SQL remains intact and the extension is done to improve the selection process. Adding some flexibility to the SQL meets above mentioned requirements and increases effectiveness and comprehensibility of the whole querying process. Fuzzy Logic is combined with Classical SQL • When we use SQL to retrieve data, we have to fire queries. • The queries are based on certain relational conditions. • Relational conditions are connected to each other by logical operators. • After the query is fired, SQL displays the output satisfying given conditions • Some concepts and ideas that we come across in daily life can not be expressed properly by rigid conditions. • The output given by SQL query analyzer does not fit human understanding of the situations. • We intend to use ‘fuzzy logic’ in all such situations so that the output should reflect semantic intent of the query. Case Study Suppose, School Administrator has to search a Student Database for all “good” students. She first has to make some arbitrary decisions about what exactly a "good" student is. One might say that "good" students are those students who have a Grade Point Average (GPA) of 3.5 or higher. And so, the following SQL query is devised: SELECT * FROM STUDENTS WHERE GPA >= 3.5; Immediately a list of students who have grade point averages at or above 3.5 will be displayed. SQL gives what you ask for. It works with Boolean logic and so can not reflect semantic intent of the query. The answer is you get exactly what you ask for and only what you ask for. Suppose we have to also consider other parameters: 1. Academic achievement of the student (GPA). 2. Absenty of the student (Absenty). 176 Y.S. Pawar et al 3. Participation in sports activities (SP). 4. Participation in cultural activities (CU). Suppose, Goodness of a student depends on these 4 parameters. Suppose goodness is defined as GPA >= 3.5, Absenty < 10, SP upto atleast state level and CU upto atleast university level. So following query is fired SELECT * FROM STUDENTS WHERE (GPA >= 3.5) AND (Absenty < 10) AND SP IN(‘State’,’National’,’International’) AND CU IN(‘University’,’State’,’National’); SQL returns a list of all students who satisfy the given conditions in fired query. Name GPA Absenty SP CU Juili Khatu 4.00 3.00 University State Govind Date 3.50 9.80 State State Ranjan Wakde 3.80 4.50 International University Tejas Kadam 4.00 1.00 State State Kaustubh Bhagwat 3.80 1.00 State National Atharwa Jog 3.80 4.00 State State Kedar Joshi 3.90 2.00 National University Leena Gore 4.00 9.80 National University Sai Bhat 4.00 7.00 State National It is very difficult to see who the best students Is? Sorting can be done by using GPA as key field. The query fired is: SELECT * FROM STUDENTSWHERE (GPA >= 3.5) AND (Absenty < 10) ORDER BY GPA DESC, ABSENTY ASC; Name GPA Absenty SP CU Tejas Kadam 4.00 1.00 State State Juili Khatu 4.00 3.00 University State Sai Bhat 4.00 7.00 State National Leena Gore 4.00 9.80 National University Kedar Joshi 3.90 2.00 National University Kaustubh Bhagwat 3.80 1.00 State National Atharw Jog 3.80 4.00 State State Ranjan Wakde 3.80 4.50 International University Govind Date 3.50 9.80 State State On Effective Data Retrieval from SQL by use of Fuzzy Logic 177 We can see that semantic intent of the query is not reflected in the query. The output of the query does not include names of the students who should surely be there in the list. For example: Students having GPA = 3.49 and SP = “National” Students having ABSENTY = 10.1 and CU = “National” The students who fit in the definition of “Good Students” are not listed here because of rigidness of the SQL query. Also the order does not reflect order of GOODness properly. This is where we use fuzzy logic Fuzzy logic is well suited to express the intent of a database query when the semantics of the query are rather vague. What is needed is a way to express the idea of "good grades" and "good attendance" also sports grade and cultural grade on a sliding scale. This would allow the two ideas to be expressed in terms of degree rather than in absolute terms. Suppose student A has a 4.0 GPA and student B has a 3.5 GPA. Both have good grades. However, it is plain to see that only student A fits the idea of having good grades. In fuzzy logic, we would say that student A has complete membership in the set of students with good grades, while student B only has partial membership in the set of students with good grades. Under certain circumstances, students with grades as low as 3.0 might be considered to have good grades. This idea becomes especially important in situations where more than one column of data is used to define a semantic notion. In this case, data from the GPA column and the ABSENTY column are somehow combined to form the semantic notion "GOOD STUDENT". GPA Gradations Range Linguistic termGrade 0 – 0.5 Bad 0 0.5 – 1 Very poor 0.1 1 – 1.5 Poor 0.2 1.5 – 2 Less than avg. 0.3 2 – 2.5 Above avg. 0.4 2.5 – 3 Average 0.5 3 – 3.5 Good 0.6 3.5 – 4 Very good 0.7 4 – 4.5 Excellent 0.8 4.5 – 4.8 Superb 0.9 4.8 - 5 Outstanding 1 178 Y.S.
Recommended publications
  • A Philosophical Treatise on the Connection of Scientific Reasoning
    mathematics Review A Philosophical Treatise on the Connection of Scientific Reasoning with Fuzzy Logic Evangelos Athanassopoulos 1 and Michael Gr. Voskoglou 2,* 1 Independent Researcher, Giannakopoulou 39, 27300 Gastouni, Greece; [email protected] 2 Department of Applied Mathematics, Graduate Technological Educational Institute of Western Greece, 22334 Patras, Greece * Correspondence: [email protected] Received: 4 May 2020; Accepted: 19 May 2020; Published:1 June 2020 Abstract: The present article studies the connection of scientific reasoning with fuzzy logic. Induction and deduction are the two main types of human reasoning. Although deduction is the basis of the scientific method, almost all the scientific progress (with pure mathematics being probably the unique exception) has its roots to inductive reasoning. Fuzzy logic gives to the disdainful by the classical/bivalent logic induction its proper place and importance as a fundamental component of the scientific reasoning. The error of induction is transferred to deductive reasoning through its premises. Consequently, although deduction is always a valid process, it is not an infallible method. Thus, there is a need of quantifying the degree of truth not only of the inductive, but also of the deductive arguments. In the former case, probability and statistics and of course fuzzy logic in cases of imprecision are the tools available for this purpose. In the latter case, the Bayesian probabilities play a dominant role. As many specialists argue nowadays, the whole science could be viewed as a Bayesian process. A timely example, concerning the validity of the viruses’ tests, is presented, illustrating the importance of the Bayesian processes for scientific reasoning.
    [Show full text]
  • Machine Learning in Scientometrics
    DEPARTAMENTO DE INTELIGENCIA ARTIFICIAL Escuela Tecnica´ Superior de Ingenieros Informaticos´ Universidad Politecnica´ de Madrid PhD THESIS Machine Learning in Scientometrics Author Alfonso Iba´nez˜ MS Computer Science MS Artificial Intelligence PhD supervisors Concha Bielza PhD Computer Science Pedro Larranaga˜ PhD Computer Science 2015 Thesis Committee President: C´esarHerv´as Member: Jos´eRam´onDorronsoro Member: Enrique Herrera Member: Irene Rodr´ıguez Secretary: Florian Leitner There are no secrets to success. It is the result of preparation, hard work, and learning from failure. Acknowledgements Ph.D. research often appears a solitary undertaking. However, it is impossible to maintain the degree of focus and dedication required for its completion without the help and support of many people. It has been a difficult long journey to finish my Ph.D. research and it is of justice to cite here all of them. First and foremost, I would like to thank Concha Bielza and Pedro Larra~nagafor being my supervisors and mentors. Without your unfailing support, recommendations and patient, this thesis would not have been the same. You have been role models who not only guided my research but also demonstrated your enthusiastic research attitudes. I owe you so much. Whatever research path I do take, I will be prepared because of you. I would also like to express my thanks to all my friends and colleagues at the Computa- tional Intelligence Group who provided me with not only an excellent working atmosphere and stimulating discussions but also friendships, care and assistance when I needed. My special thank-you goes to Rub´enArma~nanzas,Roberto Santana, Diego Vidaurre, Hanen Borchani, Pedro L.
    [Show full text]
  • Application of Fuzzy Query Based on Relation Database Dongmei Wei Liangzhong Yi Zheng Pei
    Application of Fuzzy Query Based on Relation Database Dongmei Wei Liangzhong Yi Zheng Pei School of Mathematics & Computer Engineering, Xihua University, Chengdu 610039, China Abstract SELECT <list of ¯elds> FROM <list of tables> ; The traditional query in relation database is unable WHERE <attribute> in <multi-valued attribute> to satisfy the needs for dealing with fuzzy linguis- tic values. In this paper, a new data query tech- SELECT <list of ¯elds> FROM <list of tables>; nique combined fuzzy theory and SQL is provided, WHERE NOT <condition> and the query can be implemented for fuzzy linguis- tic values query via a interface to Microsoft Visual SELECT <list of ¯elds> FROM <list of tables>; Foxpro. Here, we applied it to an realism instance, WHERE <subcondition> AND <subcondition> questions could be expressed by fuzzy linguistic val- ues such as young, high salary, etc, in Employee SELECT <list of ¯elds> FROM <list of tables>; relation database. This could be widely used to WHERE <subcondition> OR <subcondition> realize the other fuzzy query based on database. However, the Complexity is limited in precise data processing and is unable to directly express Keywords: Fuzzy query, Relation database, Fuzzy fuzzy concepts of natural language. For instance, theory, SQL, Microsoft visual foxpro in employees relation database, to deal with a query statement like "younger, well quali¯ed or better 1. Introduction performance ", it is di±cult to construct SQL be- cause the query words are fuzzy expressions. In Database management systems(DBMS) are ex- order to obtain query results, there are two basic tremely useful software products which have been methods of research in the use of SQL Combined used in many kinds of systems [1]-[3].
    [Show full text]
  • On Fuzzy and Rough Sets Approaches to Vagueness Modeling⋆ Extended Abstract
    From Free Will Debate to Embodiment of Fuzzy Logic into Washing Machines: On Fuzzy and Rough Sets Approaches to Vagueness Modeling⋆ Extended Abstract Piotr Wasilewski Faculty of Mathematics, Informatics and Mechanics University of Warsaw Banacha 2, 02-097 Warsaw, Poland [email protected] Deep scientific ideas have at least one distinctive property: they can be applied both by philosophers in abstract fundamental debates and by engineers in concrete practi- cal applications. Mathematical approaches to modeling of vagueness also possess this property. Problems connected with vagueness have been discussed at the beginning of XXth century by philosophers, logicians and mathematicians in developing foundations of mathematics leading to clarification of logical semantics and establishing of math- ematical logic and set theory. Those investigations led also to big step in the history of logic: introduction of three-valued logic. In the second half of XXth century some mathematical theories based on vagueness idea and suitable for modeling vague con- cepts were introduced, including fuzzy set theory proposed by Lotfi Zadeh in 1965 [16] and rough set theory proposed by Zdzis¸saw Pawlak in 1982 [4] having many practical applications in various areas from engineering and computer science such as control theory, data mining, machine learning, knowledge discovery, artificial intelligence. Concepts in classical philosophy and in mathematics are not vague. Classical the- ory of concepts requires that definition of concept C hast to provide exact rules of the following form: if object x belongs to concept C, then x possess properties P1,P2,...,Pn; if object x possess properties P1,P2,...,Pn, then x belongs to concept C.
    [Show full text]
  • Research Hotspots and Frontiers of Product R&D Management
    applied sciences Article Research Hotspots and Frontiers of Product R&D Management under the Background of the Digital Intelligence Era—Bibliometrics Based on Citespace and Histcite Hongda Liu 1,2, Yuxi Luo 2, Jiejun Geng 3 and Pinbo Yao 2,* 1 School of Economics & Management, Tongji University, Shanghai 200092, China; [email protected] or [email protected] 2 School of Management, Shanghai University, Shanghai 200444, China; [email protected] 3 School of Management, Shanghai International Studies University, Shanghai 200333, China; [email protected] * Correspondence: [email protected] Abstract: The rise of “cloud-computing, mobile-Internet, Internet of things, big-data, and smart-data” digital technology has brought a subversive revolution to enterprises and consumers’ traditional patterns. Product research and development has become the main battlefield of enterprise compe- Citation: Liu, H.; Luo, Y.; Geng, J.; tition, facing an environment where challenges and opportunities coexist. Regarding the concepts Yao, P. Research Hotspots and and methods of product R&D projects, the domestic start was later than the international ones, and Frontiers of Product R&D many domestic companies have also used successful foreign cases as benchmarks to innovate their Management under the Background management methods in practice. “Workers must first sharpen their tools if they want to do their of the Digital Intelligence jobs well”. This article will start from the relevant concepts of product R&D projects and summarize Era—Bibliometrics Based on current R&D management ideas and methods. We combined the bibliometric analysis software Citespace and Histcite. Appl. Sci. Histcite and Citespace to sort out the content of domestic and foreign literature and explore the 2021, 11, 6759.
    [Show full text]
  • Download (Accessed on 30 July 2016)
    data Article Earth Observation for Citizen Science Validation, or Citizen Science for Earth Observation Validation? The Role of Quality Assurance of Volunteered Observations Didier G. Leibovici 1,* ID , Jamie Williams 2 ID , Julian F. Rosser 1, Crona Hodges 3, Colin Chapman 4, Chris Higgins 5 and Mike J. Jackson 1 1 Nottingham Geospatial Science, University of Nottingham, Nottingham NG7 2TU, UK; [email protected] (J.F.R.); [email protected] (M.J.J.) 2 Environment Systems Ltd., Aberystwyth SY23 3AH, UK; [email protected] 3 Earth Observation Group, Aberystwyth University Penglais, Aberystwyth SY23 3JG, UK; [email protected] 4 Welsh Government, Aberystwyth SY23 3UR, UK; [email protected] 5 EDINA, University of Edinburgh, Edinburgh EH3 9DR, UK; [email protected] * Correspondence: [email protected] Received: 28 August 2017; Accepted: 19 October 2017; Published: 23 October 2017 Abstract: Environmental policy involving citizen science (CS) is of growing interest. In support of this open data stream of information, validation or quality assessment of the CS geo-located data to their appropriate usage for evidence-based policy making needs a flexible and easily adaptable data curation process ensuring transparency. Addressing these needs, this paper describes an approach for automatic quality assurance as proposed by the Citizen OBservatory WEB (COBWEB) FP7 project. This approach is based upon a workflow composition that combines different quality controls, each belonging to seven categories or “pillars”. Each pillar focuses on a specific dimension in the types of reasoning algorithms for CS data qualification.
    [Show full text]
  • A Framework for Software Modelling in Social Science Re- Search
    A FRAMEWORK FOR SOFTWARE MODELLING IN SOCIAL SCIENCE RESEARCH by Piper J. Jackson B.Sc., Simon Fraser University, 2005 B.A. (Hons.), McGill University, 1996 a Thesis submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the School of Computing Science Faculty of Applied Sciences c Piper J. Jackson 2013 SIMON FRASER UNIVERSITY Summer 2013 All rights reserved. However, in accordance with the Copyright Act of Canada, this work may be reproduced without authorization under the conditions for \Fair Dealing." Therefore, limited reproduction of this work for the purposes of private study, research, criticism, review and news reporting is likely to be in accordance with the law, particularly if cited appropriately. APPROVAL Name: Piper J. Jackson Degree: Doctor of Philosophy Title of Thesis: A Framework for Software Modelling in Social Science Re- search Examining Committee: Dr. Steven Pearce Chair Dr. Uwe Gl¨asser Senior Supervisor Professor Dr. Vahid Dabbaghian Supervisor Adjunct Professor, Mathematics Associate Member, Computing Science Dr. Lou Hafer Internal Examiner Associate Professor Dr. Nathaniel Osgood External Examiner Associate Professor, University of Saskatchewan Date Approved: April 29, 2013 ii Partial Copyright Licence iii Abstract Social science is critical to decision making at the policy level. Software modelling and sim- ulation are innovative computational methods that provide alternative means of developing and testing theory relevant to policy decisions. Software modelling is capable of dealing with obstacles often encountered in traditional social science research, such as the difficulty of performing real-world experimentation. As a relatively new science, computational research in the social sciences faces significant challenges, both in terms of methodology and accep- tance.
    [Show full text]
  • Leveraging the Power of Place in Citizen Science for Effective Conservation Decision Making
    BIOC-06887; No of Pages 10 Biological Conservation xxx (2016) xxx–xxx Contents lists available at ScienceDirect Biological Conservation journal homepage: www.elsevier.com/locate/bioc Leveraging the power of place in citizen science for effective conservation decision making G. Newman a,⁎,1,2, M. Chandler b,1,2,M.Clydec,1,2,B.McGreavyd,1,M.Haklaye,H.Ballardf, S. Gray g, R. Scarpino a,2, R. Hauptfeld a,2,D.Mellorh,J.Galloi,1 a Natural Resource Ecology Laboratory, Colorado State University, Fort Collins, CO 80523, USA b Earthwatch Institute, Allston, MA 02134, USA c University of New Hampshire, Cooperative Extension, Durham, NH 03824-2500, USA d University of Maine, Department of Communication and Journalism, Orono, ME 04469, USA e University College London, WC1E 6BT London, UK f UC Davis, School of Education, Davis, CA 95616, USA g Department of Community Sustainability, Michigan State University, East Lansing, MI 48823, USA h Center for Open Science, Charlottesville, VA 22903, USA i Conservation Biology Institute, Corvallis, OR 97333, USA article info abstract Article history: Many citizen science projects are place-based - built on in-person participation and motivated by local conserva- Received 16 October 2015 tion. When done thoughtfully, this approach to citizen science can transform humans and their environment. De- Received in revised form 19 May 2016 spite such possibilities, many projects struggle to meet decision-maker needs, generate useful data to inform Accepted 17 July 2016 decisions, and improve social-ecological resilience. Here, we define leveraging the ‘power of place’ in citizen sci- Available online xxxx ence, and posit that doing this improves conservation decision making, increases participation, and improves community resilience.
    [Show full text]
  • A Survey of Fuzzy Systems Software: Taxonomy, Current Research Trends, and Prospects
    A Survey of Fuzzy Systems Software: Taxonomy, Current Research Trends, and Prospects Jes´us Alcal´a-Fdez1 Jose M. Alonso2 Abstract Fuzzy systems have been used widely thanks to their ability to successfully solve a wide range of problems in different application fields. However, their replication and application requires a high level of knowledge and experience. Furthermore, few researchers publish the software and/or source code associated with their proposals, which is a major obstacle to scientific progress in other disciplines and in industry. In recent years, most fuzzy system software has been developed in order to facilitate the use of fuzzy systems. Some software is commercially distributed but most software is available as free and open source software, reducing such obstacles and providing many advantages: quicker detection of errors, innovative applications, faster adoption of fuzzy systems, etc. In this paper, we present an overview of freely available and open source fuzzy systems software in order to provide a well-established framework that helps researchers to find existing proposals easily and to develop well founded future work. To accomplish this, we propose a two-level taxonomy and we describe the main contributions related to each field. Moreover, we provide a snapshot of the status of the publications in this field according to the ISI Web of Knowledge. Finally, some considerations regarding recent trends and potential research directions are presented. Key words: Fuzzy logic, fuzzy systems, fuzzy systems software, software for applications, software engineering, educational software, open source software. 1. Introduction Fuzzy systems are one of the most important areas for the application of fuzzy set theory [1].
    [Show full text]
  • Fuzzy Sets, Fuzzy Logic and Their Applications • Michael Gr
    Fuzzy Sets, Fuzzy Logic and Their Applications • Michael Gr. Voskoglou • Michael Gr. Fuzzy Sets, Fuzzy Logic and Their Applications Edited by Michael Gr. Voskoglou Printed Edition of the Special Issue Published in Mathematics www.mdpi.com/journal/mathematics Fuzzy Sets, Fuzzy Logic and Their Applications Fuzzy Sets, Fuzzy Logic and Their Applications Special Issue Editor Michael Gr. Voskoglou MDPI • Basel • Beijing • Wuhan • Barcelona • Belgrade • Manchester • Tokyo • Cluj • Tianjin Special Issue Editor Michael Gr. Voskoglou Graduate Technological Educational Institute of Western Greece Greece Editorial Office MDPI St. Alban-Anlage 66 4052 Basel, Switzerland This is a reprint of articles from the Special Issue published online in the open access journal Mathematics (ISSN 2227-7390) (available at: https://www.mdpi.com/journal/mathematics/special issues/Fuzzy Sets). For citation purposes, cite each article independently as indicated on the article page online and as indicated below: LastName, A.A.; LastName, B.B.; LastName, C.C. Article Title. Journal Name Year, Article Number, Page Range. ISBN 978-3-03928-520-4 (Pbk) ISBN 978-3-03928-521-1 (PDF) c 2020 by the authors. Articles in this book are Open Access and distributed under the Creative Commons Attribution (CC BY) license, which allows users to download, copy and build upon published articles, as long as the author and publisher are properly credited, which ensures maximum dissemination and a wider impact of our publications. The book as a whole is distributed by MDPI under the terms and conditions of the Creative Commons license CC BY-NC-ND. Contents About the Special Issue Editor ...................................... vii Preface to ”Fuzzy Sets, Fuzzy Logic and Their Applications” ...................
    [Show full text]
  • COBWEB PROJECT Final Publishable Summary Report
    COBWEB PROJECT Final publishable summary report Grant Agreement number: 308513 Project acronym: COBWEB Project title: Citizen Observatory Web Funding Scheme: FP7 CP Period covered: from 01/11/2012 to 19/4/2017 Name of the scientific representative of the project's coordinator and organisation: Chris Higgins (University of Edinburgh) Tel: +44 (0) 7595 11 69 91 E-mail: [email protected] Project website address: www.cobwebproject.eu This project has received funding from the European Union’s Seventh Programme for research, technological development and demonstration under grant agreement No 308513 Table of Contents 1. Executive summary ....................................................................................... 3 2. Summary description of project context and objectives ........................... 4 2.1 Project context ................................................................................................. 4 2.2 Project objectives ............................................................................................. 6 3. Description of main S&T results .................................................................. 7 3.1 System design through stakeholder engagement and co-design ..................... 7 3.1.1 Co-Design ....................................................................................................................... 8 3.2 COBWEB Workflow ....................................................................................... 10 3.3 Architecture ..................................................................................................
    [Show full text]
  • Fuzzy Logic and Intelligent Technologies in Nuclear Science
    BE9900077 Da RUAN Fuzzy Logic and Intelligent Technologies in Nuclear Science Scientific staff TJ LINS, an acronym for Fuzzy Logic and Intel- and be only a step towards future FL appli- Da RUAN it ligent technologies in Nuclear Science, has cations in nuclear power plants. However, li- Xiaozhong Li been recognized since 1994 as a unique inter- censing this technology as a nuclear technol- national forum on Fuzzy Logic (FL) and intelli- ogy could be more challenging and time con- gent systems for nuclear science and industry. suming. The main task for FUNS for the coming years Programme Started at the beginning of is to solve many intricate problems pertain- 1995, both fuzzy software and hardware spon- ing to the nuclear environment by using mod- sored by OMRON Electronics NV (Belgium) were ern technologies as additional tools and to successfully implemented in BRi. To be al- bridge a gap between novel technologies and lowed by the safety authorities to carry out the industrial nuclear world. Specific prototyp- our on-line fuzzy-control experiment at BRI, we ing of Fuzzy Logic Control (FLC) of SCK«CEN's made several off-line tests and a safety on-line BRi research reactor has been chosen as FLINS' test scheme. first priority. This is an on-going R&D project for controlling BRI'S power level. The project started in 1995 and aims to investigate the In the meantime, we have constructed a demo added value of FLC for nuclear reactors. In this model which is not only suitable for most con- framework, the availability of BRi greatly sim- trol algorithm testing experiments, but also for plifies the effort to validate the model descrip- simulating the power control principle of BRi.
    [Show full text]