نتایج جستجو برای: sinus elevation

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

Journal: :AJNR. American journal of neuroradiology 1989
R G Quisling J P Mickle

Venous pressures were measured within the vein of Galen aneurysm/straight sinus complex in 15 patients with Galenic arteriovenous fistulae and vein of Galen aneurysms. Pressures exceeded normal (less than 5 cm of H2O) in each instance, ranging between 9 and 55 cm of H2O. Measured values exceeding 20 cm of H2O were associated with an increased occurrence of brain calcification. Mean venous press...

Journal: :Journal of clinical periodontology 2014
Leonardo Trombelli Giovanni Franceschetti Claudio Stacchi Luigi Minenna Orio Riccardi Rosario Di Raimondo Alessandro Rizzi Roberto Farina

AIMS To evaluate the outcomes of transcrestal sinus floor elevation (tSFE) performed with a minimally invasive procedure (Smart Lift technique) combined with the additional use of deproteinized bovine bone mineral (DBBM) or β-tricalcium phosphate (β-TCP). METHODS In a multicenter randomized controlled trial, 38 sites in 38 patients were treated with the Smart Lift technique in association wit...

Journal: :Applied sciences 2021

The aims of this study were to propose a minimally invasive lateral approach technique for maxillary sinus floor elevation (MSFE) with simultaneous implant placement and evaluate the surgical outcome complications technique. This reviewed 49 surgeries MSFE (n = 83) using approach. A circular shape window diameter 5 6 mm an area 20–30 mm2 was made on wall sinus. After Schneiderian membrane, xeno...

2012
Peerawut Deeprasertkul Ranjan K Thakur

Sinus arrest rarely occurs during acute myocardial infarction involving the right coronary artery (RCA) and sinus node (SN) artery. We report a rare case of sinus arrest caused by SN artery occlusion following RCA stenting. A 56-year-old woman with a significant history of RCA stenosis with prior bare metal stenting, presented to the emergency department with anginal chest pain. Initial work up...

2017
Thomas Starch-Jensen Janek Dalsgaard Jensen

Objectives The objective of the present study is to present the current best evidence for enhancement of the vertical alveolar bone height and oral rehabilitation of the atrophic posterior maxilla with dental implants and propose some evidence-based treatment guidelines. Material and Methods A comprehensive review of the English literature including MEDLINE (PubMed), Embase and Cochrane Libra...

Journal: :Clinical oral implants research 2014
Clemens Walter Dorothea C Dagassan-Berndt Sebastian Kühl Roland Weiger Niklaus P Lang Nicola U Zitzmann

AIM The aim of this pilot study was to analyze the interfurcal bone height in relation to the possible need for subsequent sinus floor elevation in patients with advanced periodontitis and furcation involvement of first and/or second maxillary molars. MATERIAL AND METHODS Seventeen dentate patients, who received cone beam computed tomography (CBCT) for detailed preoperative diagnosis and plan...

Journal: :The Journal of clinical investigation 1936
G D Gammon

The observation that a state of elevated blood pressure develops in animals after denervation of the carotid sinus and aortic arch (1) has suggested that certain forms of hypertension in man might similarly be due to a failure of the depressor mechanism. Several studies have lent some support to this hypothesis (2, 3, 4). The evidence may be summarized briefly as follows: direct stimulation of ...

2016
Jang Won Lee Ji Yong Yoo Seung Jae Paek Won-Jong Park Eun Joo Choi Moon-Gi Choi Kyung-Hwan Kwon

OBJECTIVES The maxillary sinus mucosa is reported to recover to preoperative sterility after sinus floor elevation. However, when drainage of maxillary sinus is impaired, recovery can be delayed and maxillary sinusitis can occur. Therefore, in this study, we investigated the correlations between anatomic variants that can interrupt the ostium of the maxillary sinus and incidence of complication...

2016
Saad Al-Almaie

Continuous advancements in the field of implant dentistry have provided clinicians with various treatment options to facilitate the placement of dental implants in patients with vertical bone deficits in the posterior maxilla. Today, one of the most common ways to compensate for inadequate vertical bone height is to elevate the sinus floor by tenting of the schneiderian membrane by the implant ...

Journal: :Journal of clinical periodontology 2008
Wah Ching Tan Niklaus P Lang Marcel Zwahlen Bjarni E Pjetursson

OBJECTIVES The objectives of this systematic review were to assess the survival rate of implants placed in sites with transalveolar sinus floor elevation. MATERIAL AND METHODS An electronic search was conducted to identify prospective and retrospective cohort studies on transalveolar sinus floor elevation, with a mean follow-up time of at least 1 year after functional loading. Failure and com...

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

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

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