نتایج جستجو برای: shoulder joint

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

2012
Monika Ostrowska Jan Gietka Tomasz Nesteruk Agnieszka Piliszek Jerzy Walecki

BACKGROUND Despite the fact that joint tuberculosis is one of the most common forms of extrapulmonary tuberculosis, it is a disease entity that is very rare in Poland (less than 100 cases a year in the last 10 years). The symptoms are non-specific, and thus the disease is rarely taken into account in preliminary differential diagnosis. CASE REPORT A 68-year-old female patient was admitted to ...

Journal: :EURASIP journal on advances in signal processing 2010
Michael J. Bey Stephanie K. Kline Roger Zauel Patricia A. Kolowich Terrence R. Lock

The objectives of this study were to describe a technique for measuring in-vivo glenohumeral joint contact patterns during dynamic activities and to demonstrate application of this technique. The experimental technique calculated joint contact patterns by combining CT-based 3D bone models with joint motion data that were accurately measured from biplane x-ray images. Joint contact patterns were...

2010
Robert C. Manske Matt Meschke Andrew Porter Barbara Smith Michael Reiman

BACKGROUND Posterior shoulder tightness, as demonstrated by limited internal rotation range of motion, is a suggested factor in many shoulder pathologies. Methods to increase posterior shoulder mobility may be beneficial. HYPOTHESIS Shoulder internal rotation range of motion will not change with either of 2 interventions: cross-body stretch alone and cross-body stretch plus posterior capsule ...

Journal: :the archives of bone and joint surgery 0
ali torkaman firuzgar hospital, iran university of medical sciences, tehran, iran abolfazl bagherifard shafa orthopedic hospital, iran university of medical sciences, tehran, iran tahmineh mokhtari department of anatomy, school of medicine, tehran university of medical sciences, tehran, iran mohamadhossein shabanpour haghighi firuzgar hospital, iran university of medical sciences, tehran, iran siamak monshizadeh firuzgar hospital, iran university of medical sciences, tehran, iran hamid taraz firuzgar hospital, iran university of medical sciences, tehran, iran

background: surgical treatments for acromioclavicular (ac) joint dislocation present with some complications. the present study was designed to evaluate the double-button fixation system in the management of acute acromioclavicular joint dislocation. methods: this cross sectional study, done between february 2011 to june 2014, consisted of 28 patients who underwent surgical management by the do...

Journal: :Journal of sport rehabilitation 2016
Amir K Vafadar Julie N Côté Philippe S Archambault

CONTEXT Joint-position sense (JPS) plays a critical role in the stability of shoulder joint. Restoration of JPS is essential to improve rehabilitation outcomes in individuals with shoulder injury. However, the number of affordable and reliable shoulder-JPS measurement methods for everyday clinical practice is limited. OBJECTIVE To estimate reliability and validity of 3 simple shoulder-JPS mea...

2014
Ahmet Eroglu

The shoulder joint has some specific properties in the human body. It has adjusted to the mechanical demands of a vertical body position more than any other joint. The shoulder has the largest motion range of all joints in the human body. In addition to the shoulder is exposed cosmetically, particularly in women. Extensive surgical exposures of the shoulder joint were commonly used when shoulde...

2006
Charles A. Thigpen Lori Michener Darin A. Padua

CHARLES A. THIGPEN: Effects Of Forward Head And Rounded Shoulder Posture On Scapular Kinematics, Muscle Activity, And Shoulder Coordination (Under the direction of Dr. Darin A. Padua) Forward head and rounded shoulder posture (FHRSP) has been identified as a potential risk factor for the development of shoulder pain. The mechanism through which forward head and rounded shoulder can facilitate s...

Journal: :Journal of the American Veterinary Medical Association 2013
Luis M Rubio-Martínez Eva Rioja A S Shakespeare

Case Description-A 4.6-month-old pot-bellied pig was evaluated because of non-weight-bearing lameness (grade 5/5) in the right forelimb of 4 days' duration. Clinical Findings-Clinical and radiographic examination revealed a closed, lateral luxation of the right shoulder joint. Treatment and Outcome-Initial attempts at closed reduction failed to provide adequate stability of the shoulder joint. ...

Journal: :The American journal of sports medicine 2007
Michael Bahk Ekavit Keyurapan Atsushi Tasaki Eric L Sauers Edward G McFarland

Laxity testing is an important part of the examination of any joint. In the shoulder, it presents unique challenges because of the complexity of the interactions of the glenohumeral and scapulothoracic joints. Many practitioners believe that laxity testing of the shoulder is difficult, and they are unclear about its role in evaluation of patients. The objectives of the various laxity and instab...

2011

INTRODUCTION Fluoroscopic image-model registration, using either a single image or dual images, has been widely used to measure in-vivo human joint kinematics, such as the knee, hip, spine and shoulder. The critical step of this technique is the registration of the 3D joint model to the 2D images. An automatic 2D-3D image matching method has been validated as a useful and efficient method for t...

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

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

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