نتایج جستجو برای: droplet evaporation

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

Journal: :Langmuir : the ACS journal of surfaces and colloids 2013
Yong Xie Shengming Guo Chuanfei Guo Meng He Dongxue Chen Yinglu Ji Ziyu Chen Xiaochun Wu Qian Liu Sishen Xie

Bottom-up self-assembly is able to constitute a variety of structures and has been thought to be a promising way for advanced nanofabrication. Droplet evaporation, as the simplest method, has been used in various self-assemblies. However, the assembled area is not large enough and the order is still not well controlled. Here we show a facile and controllable two-stage droplet evaporation method...

Journal: :Soft matter 2014
Prachya Mruetusatorn Jonathan B Boreyko Guru A Venkatesan Stephen A Sarles Douglas G Hayes C Patrick Collier

Droplet interface bilayers (DIBs) are a powerful platform for studying the dynamics of synthetic cellular membranes; however, very little has been done to exploit the unique dynamical features of DIBs. Here, we generate microscale droplet interface bilayers (μDIBs) by bringing together femtoliter-volume water droplets in a microfluidic oil channel, and characterize morphological changes of the ...

Journal: :Lab on a chip 2013
Aida Ebrahimi Piyush Dak Eric Salm Susmita Dash Suresh V Garimella Rashid Bashir Muhammad A Alam

Label-free, rapid detection of biomolecules in microliter volumes of highly diluted solutions (sub-femtomolar) is of essential importance for numerous applications in medical diagnostics, food safety, and chem-bio sensing for homeland security. At ultra-low concentrations, regardless of the sensitivity of the detection approach, the sensor response time is limited by physical diffusion of molec...

2002
Chan-Woo Park Massoud Kaviany

An existing in-cylinder thermal regeneration concept for Diesel engines is examined for the roles of the porous insert motion and the fuel injection strategies on the fuel evaporation and combustion and on the engine efficiency. While the heated air emanating from the insert enhances fuel evaporation resulting in a superadiabatic combustion process (thus increasing thermal efficiency), the corr...

2017

Combustion kinetics ...................................................................................................................................... 1 Physical mixing and its effects on ignition, propagation and extinction ...................................................... 2 Mixing ...........................................................................................................

Journal: :The journal of physical chemistry. A 2015
B J Mason M I Cotterell T C Preston A J Orr-Ewing J P Reid

We present measurements of the evolving extinction cross sections of individual aerosol particles (spanning 700-2500 nm in radius) during the evaporation of volatile components or hygroscopic growth using a combination of a single particle trap formed from a Bessel light beam and cavity ring-down spectroscopy. For single component organic aerosol droplets of 1,2,6-hexanetriol, polyethylene glyc...

2010
ZHIQUN LIN

INTRODUCTION In the process of drying, nonvolatile solutes (e.g., polymers, proteins, viruses, bacteria, DNA, microspheres, nanocrystals, carbon nanotubes, etc.) contained within a sessile droplet (i.e., unconstrained liquid) readily assemble into a diverse range of intriguing oneor two-dimensional structures, possessing dimensions of a few hundred submicrons and beyond. It is, in principle, a ...

2017
Zoey S Davidson Yongyang Huang Adam Gross Angel Martinez Tim Still Chao Zhou Peter J Collings Randall D Kamien A G Yodh

Drop drying and deposition phenomena reveal a rich interplay of fundamental science and engineering, give rise to fascinating everyday effects (coffee rings), and influence technologies ranging from printing to genotyping. Here we investigate evaporation dynamics, morphology, and deposition patterns of drying lyotropic chromonic liquid crystal droplets. These drops differ from typical evaporati...

Journal: :IBM Journal of Research and Development 2011
Wen-Xin Tang Changxi Zheng Zhenyu Zhou David E. Jesson Jerry Tersoff

We describe the design and application of a low-energy electron microscope (LEEM) dedicated to the study of III–V materials. Recent studies of Langmuir (free) evaporation of GaAs(001) have been reviewed. Running Ga droplets are observed, and the motion is predicted and shown to slow and stop near a characteristic temperature. Striking bursts of Bdaughter[ droplet nucleation accompany the coales...

2014
S. S. Sazhin I. N. Shishkova M. Al Qubeissi

A previously developed kinetic model for two-component vapour and background gas (air) is applied to the analysis of droplet heating and evaporation in Diesel engine-like conditions. The model used in the analysis is based on the introduction of the kinetic region in the immediate vicinity of the droplets and the hydrodynamic region. The presence of two components in the vapour, finite thermal ...

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

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

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