نتایج جستجو برای: maintenance modeling

تعداد نتایج: 530550  

1999
Wui-Gee Tan Taizan Chan Guy G. Gable

Through soft modeling of data collected from a survey of 83 Information Systems (IS) organizations in Singapore, this paper develops and tests a Partial Least Square (PLS) model that determines the impact of user knowledge, application quality, and maintenance control procedures on maintainer effectiveness. It was found that application quality has a very strong influence on maintainer effectiv...

2016
Tomás Kuzin Tomás Borovicka

Maintenance of a sensor part typically means renewal of the sensor in regular intervals or replacing the malfunctioning sensor. However optimal timing of the replacement can reduce maintenance costs. The aim of this article is to suggest a predictive maintenance strategy for sensors using condition monitoring and early failure detection based on their own collected measurements. Three different...

2011
Ioannis A. Raptis George Vachtsevanos

Maintenance of critical or/complex systems has recently moved from traditional preventive maintenance to Condition Based Maintenance (CBM) exploiting the advances both in hardware (sensors / DAQ cards, etc.) and in software (sophisticated algorithms blending together the state of the art in signal processing and pattern analysis). Along this path, Environmental Control Systems and other critica...

2011
A. Benmarouf Meriem

The maintenance of the domain ontology or a knowledge model after the appearance of changes in the studied domain is an essential stage. Several studies provide methodologies for the maintenance of ontology but only some of them deal with ontologies that are created from texts. Text mining techniques provide good results when the processing of texts is done for the purpose of modeling or classi...

2008
Maria Carmela Annosi Antonino De Pascale Daniel Gross Eric S. K. Yu

The continuous alignment of organizational processes with an organizations’ business strategy is a key factor to its success. This paper reports on the application of the i* framework to support the continuous alignment of corrective software maintenance processes with the strategic goals of a Software Design Maintenance Organization at Ericsson Marconi Spa. Using the i* modeling framework, ali...

Journal: :Journal of Advanced Computational Intelligence and Intelligent Informatics 2022

Loop-closure detection (LCD) in large non-stationary environments remains an important challenge robotic visual simultaneous localization and mapping (vSLAM). To reduce computational perceptual complexity, it is helpful if a vSLAM system has the ability to perform image change (ICD). Unlike previous applications of ICD, time-critical cannot assume offline background modeling stage, or rely on m...

Journal: :CoRR 2017
Sabah S. Al-Fedaghi Abdulaziz AlQallaf

We examine the problem of weaknesses in frameworks of conceptual modeling for handling certain aspects of the system being modeled. We propose the use of a flow-based modeling methodology at the conceptual level. Specifically, and without loss of generality, we develop a conceptual description that can be used for controlling the maintenance of a physical system, and demonstrate it by applying ...

1996
Catriel Beeri Alon Y. Halevy Marie-Christine Rousset

Several advanced applications of database systems require the modeling, maintenance, and usage of large collections of views. Prime examples include mediator systems that provide access to multiple information sources, data mining and archeology, mobile databases, data warehouses, and decision support systems. Furthermore, some database vendors are considering the maintenance of materialized vi...

1992
John W. Sheppard William R. Simpson

The most difficult part of system maintenance is diagnosing failures. System expertise is needed, but manuals cannot cover all the unique situations and in-house experts are difficult to retain because of today’s budgets. The resulting “expertise gap” has led to the development of “intelligent” diagnostic aids to compensate for the missing expertise. The first computer-assisted diagnostic aids ...

Journal: :Journal of Software: Evolution and Process 2013
Yu Sun Jeffrey G. Gray Romain Delamare Benoit Baudry Jules White

Domain-Specific Modeling Languages (DSMLs) are playing an increasingly significant role in software development. By raising the level of abstraction using notations that are representative of a specific domain, DSMLs allow the core essence of a problem to be separated from irrelevant accidental complexities that are typically found at the implementation level in source code. In addition to mode...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->