نتایج جستجو برای: safety management system

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

2006
Nancy G. Leveson

FUNCTION Mass/energy flow and balance GENERAL FUNCTION Flow and storage of heat, etc. PHYSICAL FUNCTION States of components what? what? what? what? what?

Journal: :مدیریت اطلاعات سلامت 0
فرخنده اسدی استادیار، مدیریت اطلاعات بهداشتی درمانی، دانشکده پیراپزشکی، دانشگاه علوم پزشکی شهید بهشتی، تهران، ایران حمید مقدسی دانشیار، مدیریت اطلاعات بهداشتی درمانی، دانشکده پیراپزشکی، دانشگاه علوم پزشکی شهید بهشتی، تهران، ایران اعظم السادات حسینی استادیار، مدیریت اطلاعات بهداشتی درمانی، دانشکده پیراپزشکی، دانشگاه علوم پزشکی شهید بهشتی، تهران، ایران محمد دهقانی مربی، آموزش مدارک پزشکی، دانشگاه علوم پزشکی هرمزگان، ایران

introduction: ambulatory care is an inseparable part of health care system. it is commonly considered as the entrance of the patient to the health care system. high qualify ambulatory care has an important role in reducing mortality and morbidity rates. on the other hand, quality of information has an important role in the quality and safety of ambulatory health care. it is hence necessary to p...

2016
Jong-Hyeon Lee

The humidifier disinfectant disaster (HDD) was not a simple poisoning accident by biocides, but a singular disaster in history created by chemicals in household products. This disaster was a result of the failure of a system for the management of chemical and product safety. Since the management authority for chemical usage safety is different from those for chemical safety in products, many bl...

2006
Ioannis Kontogounis Kyriakos C. Chatzidimitriou Andreas L. Symeonidis Pericles A. Mitkas

The leap from decision support to autonomous systems has often raised a number of issues, namely system safety, soundness and security. Depending on the field of application, these issues can either be easily overcome or even hinder progress. In the case of Supply Chain Management (SCM), where system performance implies loss or profit, these issues are of high importance. SCM environments are o...

2008
R. D. Alexander

The use of simulation in safety analysis is often criticised. We are faced, however, with safety critical systems of ever-greater complexity, and with the demand to extend safety engineering to cover large-scale sociotechnical systems such as hospitals and military forces. Simulation methods offer ways to analyse aspects of these systems that other, ‘traditional’ methods cannot, because of size...

2005
Christopher Preece Simon Stocking

This paper outlines the adaptation of communication theory and the development of safety communications management in construction contracting. Effective and efficient safety communication is essential in raising safety awareness and reducing incident frequency in the construction industry, and has the resultant effect of decreasing costs and increasing contractor profitability. Management shou...

ژورنال: طب کار 2014
حاج آقازاده, محمد, زارع, مهدی, عدل, جواد,

Background: Nowadays the tendency of understanding how effective management practices and organizational factors have highly developed and activities mostly focus on safety culture and climate. Despite extensive studies in the field of safety climate in different countries, few attempts have been made in Iran which in most of them the toolkit of Loughborough university has been used. The aim of...

Aghajani Aliabadi, Zahra , Gharari, Noradin , Panahi, Davood , Sadeghi-Yarandi, Mohsen , Soltanzadeh, Ahmad ,

Introduction: Considering the importance of implementing occupational safety and health management systems for the prevention of various diseases in the workplace, as well as determining the notability and role of induction and implementation of occupational health management systems in controlling and reducing COVID-19 outbreak in work environments, as one of the most sensitive and important o...

2014
Jan K. Wachter Patrick L. Yorio J. K. Wachter P. L. Yorio

Based on survey results from over fifty groups of workers and their employees, it has been determined that worker perceptions related to safety climate, interactional justice, and task and team safety proficiency behaviors act as mediators between a system of safety management practices and reductions in recordable injuries and, to a lesser extent, lost time injuries. It appears that in those i...

ژورنال: طب کار 2019

Introduction: Human factors studies have shown that about 80% of the root causes of major accidents affecting safety, the environment or ergonomics are related to human error. The purpose of this study was to identify human errors using the HFACS method and the FAHP theory in cement industry. Methods: The present study was a retrospective study carried out in the cement industry. At first, R...

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

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

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"; } -->