نتایج جستجو برای: ultrafiltered uf

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

Journal: :The Journal of thoracic and cardiovascular surgery 1996
Nobuyuki Ishibashi Toshiharu Shin'oka Masakuni Ishiyama Takahiko Sakamoto Hiromi Kurosawa

OBJECTIVE Our treatment strategy for pulmonary atresia with ventricular septal defect (VSD) and major aortopulmonary collateral arteries is a staged repair that comprises the first complete unifocalization (UF) with 'unification' of intrapulmonary arteries and then the definitive repair. The purpose of this study is to evaluate the outcome of our staged repair strategy with complete UF and to d...

2014
Duong Anh Vuong Steffen Flessa Paul Marschall Son Thai Ha Khue Ngoc Luong Reinhard Busse

OBJECTIVES The study objective was to identify the size of different hospital financing sources for different hospital services and their impact on the uninsured. METHODS A panel dataset of 84 public general hospitals (2005-2008) with cross-section data on hospital activity and hospital revenue was created and used to calculate unit costs of different hospital services by applying multiple re...

2017
A. Ficheux N. Gayrard F. Duranton C. Guzman I. Szwarc F. Vetromile P. Brunet M.F. Servel A. Argilés

Background Recent randomized controlled trials suggest that sufficiently high convection post-dilutional haemodiafiltration (HC-HDF) improves survival in dialysis patients, consequently this technique is increasingly being adopted. However, when performing HC-HDF, rigorous control systems of the ultrafiltration setting are required. Assessing the global ultrafiltration coefficient of the dialys...

Journal: :CoRR 2017
Jun Chen Qiang Yao M. S. Houari Sabirin Keisuke Nonaka Hiroshi Sankoh Sei Naito

In this paper, we report on an optimized union-find (UF) algorithm that can label the connected components on a 2D image efficiently by employing GPU architecture. The proposed method comprises three phases: UF-based local merge, boundary analysis, and link. The coarse labeling in local merge, which makes computation efficient because the length of the labelequivalence list is sharply suppresse...

Journal: :Neuropsychology 2008
Paul G Nestor Marek Kubicki Margaret Niznikiewicz Ronald J Gurrera Robert W McCarley Martha E Shenton

Patients with schizophrenia and healthy control subjects underwent both neuropsychological evaluation and magnetic resonance diffusion tensor imaging, during which the cingulum bundle (CB) and the uncinate fasciculus (UF) were defined with fiber tractography and their integrity was quantified. On the basis of prior findings, it was hypothesized that neuropsychological disturbance in schizophren...

Journal: :Biochemistry 2004
Paul V Bernhardt Gerhard Schenk Gregory J Wilson

Cyclic voltammetry of the non-heme diiron enzyme porcine purple acid phosphatase (uteroferrin, Uf) has been reported for the first time. Totally reversible one-electron oxidation responses (FeIII-FeII --> FeII-FeIII) are seen both in the absence and in the presence of weak competitive inhibitors phosphate and arsenate, and dissociation constants of these oxoanion complexes formed with uteroferr...

2014
Seishi Ikeda Keijiro Suzuki Makoto Kawahara Masao Noshiro Naokazu Takahashi

The impact of a urea-formaldehyde (UF) fertilizer on bacterial diversity in onion bulbs and main roots of sugar beet were examined using a 16S rRNA gene clone library. The UF fertilizer markedly increased bacterial diversity in both plants. The results of principal coordinates analysis (PCoA) revealed that nearly 30% of the variance observed in bacterial diversity in both the onion and sugar be...

2018

Description: This course is specifically designed for healthcare professionals who have an interest in sports medicine. The course will encompass presentations on diagnosis, treatment, research, education and prevention of athletic injuries presented by experts from many different areas of Running Medicine. The format consists of lectures and breakout sessions, and will include ample time for p...

2018

Description: This course is specifically designed for healthcare professionals who have an interest in sports medicine. The course will encompass presentations on diagnosis, treatment, research, education and prevention of athletic injuries presented by experts from many different areas of Running Medicine. The format consists of lectures and breakout sessions, and will include ample time for p...

Journal: :Journal of colloid and interface science 2008
Arie Dipareza Syafei Cheng-Fang Lin Chung-Hsin Wu

This study investigates the performance of ultrafiltration (UF) by membranes coated with titanium dioxide (TiO2) photocatalyst under ultraviolet (UV) illumination in removing natural organic matter (NOM) and possibly in reducing membrane fouling. Experiments were carried out using heat-resistant ceramic disc UF membranes and humic acids as model substances representing naturally occurring organ...

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

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

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