نتایج جستجو برای: baffle cut

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

Journal: :Circulation. Cardiovascular interventions 2013
Joseph M Mets Lisa Bergersen John E Mayer Audrey C Marshall Doff B McElhinney

BACKGROUND Factors associated with obstruction of the cavopulmonary pathway in patients with a lateral tunnel (LT) intracardiac Fontan connection and outcomes of percutaneous stent implantation for this complication have not been characterized. METHODS AND RESULTS Between 1999 and 2011, 51 patients underwent stent implantation for LT pathway stenosis at a median age of 10.2 years and a median...

2008
Athanasia M. Goula Margaritis Kostoglou Thodoris D. Karapantsios Anastasios I. Zouboulis

Computational fluid dynamics simulations are employed to assess the effect of adding a vertical baffle at the feed section of a full-scale edimentation tank for the improvement of solids settling in potable water treatment. A general CFD-based simulation strategy is developed based n the specific features and conditions met in practice for potable water treatment. The linearity of the particle ...

2013
Azlin Md Said Mahdi Shahrokhi Fatemeh Rostami Md Azlin Md Said

In order to increase the performance of a primary sedimentation tank (clarifier), it is essential to have a uniform and calm flow field. The use of suitable baffle configurations may help forming favorable flow field and increase the efficiency of the primary sedimentation tank. In order to find the proper position of a baffle in a rectangular primary sedimentation tank, computational investiga...

Journal: :Multidiszciplináris tudományok 2021

During the operation of hydrocyclone cut size diameter is most important data. This connected to feed rate, which closely related cross section. Preliminary research has revealed that square cross-section more effective than circular cross-section. The compared 2 types sections at 5 different rates. One a standard rectangular and other narrows with baffle plate. calculations for have shown bett...

Journal: :European journal of echocardiography : the journal of the Working Group on Echocardiography of the European Society of Cardiology 2009
B Schwagten L Jordaens E Jessurun M Witsenburg M Scheffer T Szili-Torok

A baffle puncture is a challenging procedure but can be safely done using direct visualization of the region of interest. To our knowledge, however, it has never been performed in a patient with dextrocardia. We present a 62-year-old male with dextrocardia, right isomerism, congenitally corrected transposition of the great arteries, persistent left-sided superior and inferior caval veins, atria...

2005
SANG C. PARK

This patient was seen for the first time at Children's Hospital of Pittsburgh at 34 days of age with cyanosis and grunting respirations of two weeks duration. Cardiac catheterization and angiography confirmed the diagnosis of transposition of the great arteries (TGA) with an intact ventricular septum. Following balloon atrial septostomy, systemic arterial saturation rose to 80% from 34%. Repeat...

The performance of corrugated baffles inserted in a rectangular channel heat exchanger is investigated. The fluid flows and thermal distribution are determined via numerical simulations. The working fluid has a shear thinning behavior. The influence of the baffle design is explored, we interest to the “wavy” shape. The corrugation angle of baffle (α) is changed from 0° (i.e. a straight...

Journal: :European journal of cardio-thoracic surgery : official journal of the European Association for Cardio-thoracic Surgery 2008
Jürgen Hörer Elisabeth Karl Georgia Theodoratou Christian Schreiber Julie Cleuziou Zsolt Prodan Manfred Vogt Rüdiger Lange

OBJECTIVES Atrial switch procedures for transposition of the great arteries are associated with reoperations mainly for systemic ventricular dysfunction and baffle complications. This study aims at identifying the results of reoperations following the Senning operation. METHODS Records of 314 hospital survivors who had undergone the Senning operation were reviewed for details concerning cardi...

Journal: :Circulation 1976
M J Godman B Friedli A Pasternac B S Kidd G A Trusler W T Mustard

Fourteen patients have been studied hemodynamically 4-10 years (mean 5.5 years) after the Mustard operation for transposition of the great arteries. Investigation was directed principally at 1) the detection of baffle obstruction by catheterization of the pulmonary veins (PV) and venae cavae and recording of simultaneous right ventricular (RV) and pulmonary capillary wedge pressures (PCW); 2) t...

Journal: :Heart 1998
S C Brown B Eyskens L Mertens L Stockx M Dumoulin M Gewillig

OBJECTIVE Obstruction of the venous pathways after Mustard repair for transposition of the great arteries is associated with an increased risk of arrhythmia and sudden death. The purpose of this study was to assess the effectiveness of the largest (tracheal 22 x 40 mm) Wallstents in treating baffle obstructions. DESIGN Retrospective analysis of patients with stented venous pathways. SUBJECT...

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

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

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