نتایج جستجو برای: compressive suture

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

Journal: :The International journal of periodontics & restorative dentistry 2010
Edward P Allen

This paper describes a new suturing method, the subpapillary continuous sling suture, for use with soft tissue grafts in tunnel procedures to treat gingival recession. This method combines the graft suture and the sutures used to advance the pouch margins over the graft into a single continuous sling suture. It is indicated particularly for sites with shallow recessions and those treated for au...

Journal: :American journal of surgery 2009
Joris J Harlaar Gabrielle H van Ramshorst Jeroen Nieuwenhuizen Joost G Ten Brinke Wim C J Hop Gert-Jan Kleinrensink Hans Jeekel Johan F Lange

BACKGROUND There is no conclusive evidence which size of suture stitches and suture distance should be used to prevent burst abdomen and incisional hernia. METHODS Thirty-eight porcine abdominal walls were removed immediately after death and divided into 2 groups: A and B (N = 19 each). Two suturing methods using double-loop polydioxanone were tested in 14-cm midline incisions: group A consis...

2017
Michael A. Boin Matthew A. Dorweiler Christopher J. McMellen Gregory C. Gould Richard T. Laughlin

Methods: Nine paired Achilles-calcaneus complexes were harvested from cadavers. An artificial Achilles rupture was created 2 cm proximal to the insertion on the calcaneus. One specimen from each cadaver was assigned to a suture-only or a suture anchor–augmented repair. The contralateral specimen of the same cadaver received the opposing repair. Cyclic testing was then performed at 10 to 100 N f...

Journal: :Asian cardiovascular & thoracic annals 2006
Sven Beholz Simon Dushe Wolfgang Konertz

The Pericarbon Freedom stentless valve has shown excellent hemodynamics. A continuous suture technique at the inflow site may reduce cardiopulmonary bypass and crossclamp times and affect postoperative hemodynamics. In a prospective case-matched study, interrupted and continuous suture line techniques were used in 68 and 71 patients, respectively. Isolated valve replacement was performed in 70....

Journal: :Journal of forensic sciences 2013
Helen S Alesbury Douglas H Ubelaker Robin Bernstein

This project evaluated the utility of the frontonasal suture for estimating age at death. Utilizing human remains of known age at death with varying degrees of fusion, curated at the American Museum of Natural History in New York City and the Smithsonian Institution's National Museum of Natural History in Washington, DC, data were collected from the ectocranial surface of 522 crania; 68 of thes...

2017
John Erickson Frank Chiarappa Jonathan Haskel Justin Rice Adam Hyatt James Monica Aman Dhawan

BACKGROUND All-soft tissue suture anchors provide advantages of decreased removal of bone and decreased glenoid volume occupied compared with traditional tap or screw-in suture anchors. Previous published data have led to biomechanical concerns with the use of first-generation all-soft suture anchors. PURPOSE/HYPOTHESIS The purpose of this study was to evaluate the load to 2-mm displacement a...

2017
Marcus Vinicius H. de Carvalho Evaldo Marchi Edmir Américo Lourenço

INTRODUCTION Tissue adhesives can be used as adjacent to sutures to drop or avoid bleeding in cardiovascular operations. OBJECTIVE To verify the efficiency of fibrin and cyanoacrylate adhesive to seal arterial sutures and if the adhesives penetrate through suture line to the inner of arteries. METHODS 20 abdominal aorta segments of pigs were divided into two groups according to the adhesive...

Journal: :International braz j urol : official journal of the Brazilian Society of Urology 2009
Evangelos M Mazaris Eleftherios Chatzidarellis Ioannis M Varkarakis Athanasios Dellis Charalambos Deliveliotis

OBJECTIVES To prospectively evaluate the outcome of using a two-suture technique for the vesicourethral anastomosis (VUA) during radical retropubic prostatectomy (RRP). MATERIALS AND METHODS Two groups of 50 patients each underwent nerve-sparing RRP for localized prostate cancer by one surgeon. In one group, the vesicourethral anastomosis was performed using 2 Vicryl 2-0 stitches placed at th...

2017
Hsin-Hua Liu Liwei Zhang Meng Shi Lu Chen John G Flanagan

Animal models of ocular hypertension are important tools for glaucoma studies. Both acute transient models and chronic models of ocular hypertension may be useful to investigate specific aspects of neurodegeneration. In this study, we compare the intraocular pressure (IOP) and inner retinal changes induced by 1) laser photocoagulation of both episcleral veins and limbal vessels and 2) circumlim...

2005
Pamela D. Govett Craig A. Harms

The tissue reaction to four suture materials placed in the skin of juvenile loggerhead sea turtles, Caretta caretta, was evaluated both grossly and histologically. Chromic gut, polyglyconate, polyglactin 910, and poliglecaprone 25 were used in 258 turtles to close a wound produced at the time of laparoscopic sex determination. Gross tissue reactions were graded in 68 turtles at one week, and in...

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

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

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