نتایج جستجو برای: care ethics

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

Journal: :Journal of evaluation in clinical practice 2001
M L Gross

The goals of medical ethics education comprise several dimensions: legal duties to secure informed consent, tell the truth and protect confidentiality; objective competencies that include an understanding of DNR regulations and surrogate decision-making procedures; discursive moral skills such as moral sensitivity, reciprocity and moral development that combine into the capacity for moral dialo...

2012
Clarence H. Braddock Lois Snyder Richard L. Neubauer

The Patient-Centered Medical Home: An Ethical Analysis of Principles and Practice Clarence H. Braddock III, MD, MPH, Lois Snyder, JD, Richard L. Neubauer, MD, and Gary S. Fischer, MD For the American College of Physicians Ethics, Professionalism and Human Rights Committee and The Society of General Internal Medicine Ethics Committee* Stanford School of Medicine, Stanford, USA; Center for Ethics...

ژورنال: دین و سلامت 2018
امیری, مهرنگار, بهبودی, مریم, شفیع‌پور, ویدا ,

Background and Purpose: Ethics is an integral part of medical and nursing professions, and care in pediatric ward is different from other wards due to patients’ age and sensitivity of their medical conditions. Therefore, we aimed to compare the severity of moral distress among nurses working in pediatric wards and pediatric intensive care units. Materials and Methods: This descriptive co...

2010
Yank D. Coble

The WMA is a federation of National Medical Associations (NMA) representing over 8 million physicians in >85 countries around the world. It was founded in 1947 with the mission to “serve humanity by endeavoring to achieve the highest international standards in medical education, medical science, medical care, and medical ethics, and health care for all the people of the world”. Despite the enor...

Journal: :International journal of nursing studies 2003
Ben Hannigan Davina Allen

In a number of countries throughout the world attention is being paid to the ways in which health and social care research is undertaken and regulated. In the United Kingdom, new research governance frameworks are intended to promote improvement in research quality. This paper draws on our experiences of seeking research ethics committee approval for two investigations with the same research de...

Journal: :Journal of interprofessional care 2005
Helen Aveyard Sarah Edwards Sharon West

OBJECTIVES The aim of this project was to identify core topics of health care ethics that could be taught through an inter-professional approach to undergraduate education. DESIGN Five nominal group technique workshops. SETTING AND PARTICIPANTS Teaching staff from different professional disciplines in our university (nursing branches, occupational therapy and physiotherapy). RESULTS Seven...

2015
SEYED ALI ENJOO MITRA AMINI SEYED ZIAADIN TABEI ALI MAHBUDI ZAHRA KAVOSI MAHBOOBEH SABER

INTRODUCTION The application of organizational ethics in hospitals is one of the novel ways to improve medical ethics. Nowadays achieving efficient and sufficient ethical hospital indicators seems to be inevitable. In this connection, the present study aims to determine the best indicators in hospital accreditation. METHODS 69 indicators in 11 fields to evaluate hospital ethics were achieved ...

2018
Boris Cheval Stéphane Cullati Jesper Pihl-Thingvad Denis Mongin Martina Von Arx Pierre Chopard Delphine S Courvoisier

INTRODUCTION Healthcare professionals are particularly at risk of developing numerous physical and psychological health problems. The experiences of emotional burden associated with providing healthcare, notably care-related regret, have been associated with these health problems, but only using cross-sectional data so far. Evidence of a causal impact of regret has not been assessed. The Impact...

Journal: :ACOG technical bulletin 1989

Physicians vary widely in their familiarity with ethical theories and methods and their sensitivity toward ethical issues. It is important for physicians to improve their skills in addressing ethical questions. Obstetrician–gynecologists who are familiar with the concepts of medical ethics will be better able to approach complex ethical situations in a clear and structured way. By considering t...

Journal: :Medical physics 2009
Christopher F Serago Nabil Adnani Morris I Bank Jose A BenComo Jun Duan Lynne Fairobent D Jay Freedman Per H Halvorsen William R Hendee Michael G Herman Richard K Morse Herbert W Mower Douglas E Pfeiffer William J Root George W Sherouse Matthew K Vossler Robert E Wallace Barbara Walters

A comprehensive Code of Ethics for the members of the American Association of Physicists in Medicine (AAPM) is presented as the report of Task Group 109 which consolidates previous AAPM ethics policies into a unified document. The membership of the AAPM is increasingly diverse. Prior existing AAPM ethics polices were applicable specifically to medical physicists, and did not encompass other typ...

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

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

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