نتایج جستجو برای: fatigue scale

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

Journal: :international journal of community based nursing and midwifery 0
marzieh pazokian department of nursing, faculty member of baqiyatallah university of medical sciences, tehran, iran marzieh shanan department of nursing and midwifery, tehran medical sciences university, tehran, iran mashoomeh zakerimoghadam department of nursing and midwifery, tehran medical sciences university, tehran, iran abbas mehran department of nursing and midwifery, tehran medical sciences university, tehran, iran leili yekefallah department of nursing and midwifery, qazvin medical sciences university, qazvin, iran

background the physical activity for people with ms largely affects the amount of fatigue. increased appropriate physical activity tends to decrease the amount of fatigue. the aim of this study was to compare the effect of aerobic and aerobic with stretching exercises on fatigue in people with ms. methods the randomized controlled clinical trial was conducted on the members of the ms society of...

Journal: :Journal of Psychosomatic Research 1993

Journal: :Stroke 2010
Benjamin Y Tseng Sandra A Billinger Byron J Gajewski Patricia M Kluding

BACKGROUND AND PURPOSE Post-stroke fatigue is a common and neglected issue despite the fact that it impacts daily functions, quality of life, and has been linked with a higher mortality rate because of its association with a sedentary lifestyle. The purpose of this study was to identify the contributing factors of exertion fatigue and chronic fatigue in people post-stroke. METHODS Twenty-one ...

Ahsan , Behrooz, Fayazi , Bayan, Parnow , Abdolhossein,

Introduction: Multiple Sclerosis Multiple Sclerosis is a chronic and autoimmune disease. Muscle weakness and fatigue leads to decreased functional capacities and diminished quality of life in Multiple Sclerosis patients Objective: The purpose of this study was to determine the effect of aerobic exercises on fatigue and quality of life in women with Multiple Sclerosis Methods: Fifteen wome...

2011
Mauro Catalan Alessandra De Michiel Alessio Bratina Susanna Mezzarobba Lorella Pellegrini Roberto Marcovich Francesca Tamiozzo Giovanna Servillo Laura Zugna Antonio Bosco Arianna Sartori Gilberto Pizzolato Marino Zorzon

The objective of the study was to treat fatigue in patients with multiple sclerosis (MS) by a neurocognitive rehabilitation program aimed at improving motor planning by using motor imagery (MI). Twenty patients with clinically definite MS complaining of fatigue were treated for five weeks with exercises of neurocognitive rehabilitation twice a week. Patients were evaluated by Fatigue Severity S...

Journal: :Journal of the neurological sciences 2008
Eva Havlikova Jitse P van Dijk Jaroslav Rosenberger Iveta Nagyova Berrie Middel Tatiana Dubayova Zuzana Gdovinova Johan W Groothoff

OBJECTIVES Many patients with Parkinson's disease (PD) suffer from non-motor symptoms like sleep disturbances, excessive daytime sleepiness and fatigue. The aim of our research was to explore whether fatigue is related to sleepiness and sleep problems, depression and functional status, controlled for age, gender and disease duration. METHODS The sample consisted of 78 PD patients from Eastern...

Journal: :Biophysical Journal 2012

2016
Patricia Barton Crane Jimmy T. Efird Willie Mae Abel

OBJECTIVE The purpose of this study was to comprehensively examine putative factors that may independently contribute to fatigue and subsequent persistence of fatigue in elderly adults 6-8 months post-myocardial infarction (MI). Studies suggest cardiac function, comorbidities, daytime sleepiness, depression, anemia, interleukins, and social support are correlates of fatigue; however, no studies...

Journal: :Parkinsonism & related disorders 2008
Eva Havlikova Jaroslav Rosenberger Iveta Nagyova Berrie Middel Tatiana Dubayova Zuzana Gdovinova Johan W Groothoff Jitse P van Dijk

Fatigue is an important contributor to poor quality of life. The aim of our research was to identify factors associated with fatigue among patients with Parkinson's disease (PD). The sample consisted of 150 patients. The Multidimensional Fatigue Inventory (MFI), Unified Parkinson's Disease Rating Scale (UPDRS), Hospital Anxiety and Depression Scale (HADS) and Charlson co-morbidity index were us...

Journal: :Journal of neurology, neurosurgery, and psychiatry 2006
C Heesen L Nawrath C Reich N Bauer K-H Schulz S M Gold

BACKGROUND Fatigue is a major complaint of multiple sclerosis (MS) patients. However, little is known about its pathophysiological mechanisms. Evidence from chronic fatigue syndrome and studies on sickness behaviour suggest that immune and neuroendocrine factors may play a causative role in the development of fatigue. METHODS We compared whole blood stimulatory capacity for pro- (TNFalpha, IF...

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

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

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