نتایج جستجو برای: nano ceria

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

2017
Nicholas C. Nelson Juan Sebastian Manzano Igor I. Slowing J. Sebastiań Manzano

The stability of palladium supported on ceria (Pd/CeO2) was studied during liquid flow transfer hydrogenation using primary and secondary alcohols as hydrogen donors. For primary alcohols, the ceria support was reduced to cerium hydroxy carbonate within 14 h and was a contributing factor toward catalyst deactivation. For secondary alcohols, cerium hydroxy carbonate was not observed during the s...

2009
Steven C. DeCaluwe Bryan Eichhorn Greg Jackson

Title of Document: QUANTIFYING THE ROLE OF CERIUM OXIDE AS A CATALYST IN SOLID OXIDE FUEL CELL ANODES Steven C. DeCaluwe, Doctor of Philosophy, 2009 Directed By: Associate Professor Gregory S. Jackson, Department of Mechanical Engineering Solid Oxide Fuel Cells (SOFCs) are an important electrochemical power conversion device, due largely to their high efficiencies and ability to directly oxidiz...

Journal: :Science 2016
John Jones Haifeng Xiong Andrew T DeLaRiva Eric J Peterson Hien Pham Sivakumar R Challa Gongshin Qi Se Oh Michelle H Wiebenga Xavier Isidro Pereira Hernández Yong Wang Abhaya K Datye

Catalysts based on single atoms of scarce precious metals can lead to more efficient use through enhanced reactivity and selectivity. However, single atoms on catalyst supports can be mobile and aggregate into nanoparticles when heated at elevated temperatures. High temperatures are detrimental to catalyst performance unless these mobile atoms can be trapped. We used ceria powders having simila...

2017
Vasiliki Papaefthimiou Dimitris K Niakolas Fotios Paloukis Thierry Dintzer Spyridon Zafeiratos

Nickel/doped-ceria composites are promising electrocatalysts for solid-oxide fuel and electrolysis cells. Very often steam is present in the feedstock of the cells, frequently mixed with other gases, such as hydrogen or CO2 . An increase in the steam concentration in the feed mixture is considered accountable for the electrode oxidation and the deactivation of the device. However, direct experi...

2017
Oliver S Hammond Karen J Edler Daniel T Bowron Laura Torrente-Murciano

Ceria is a technologically important material with applications in catalysis, emissions control and solid-oxide fuel cells. Nanostructured ceria becomes profoundly more active due to its enhanced surface area to volume ratio, reactive surface oxygen vacancy concentration and superior oxygen storage capacity. Here we report the synthesis of nanostructured ceria using the green Deep Eutectic Solv...

Journal: :Journal of Power Sources 2021

There is a growing attention to enhance the performance of solid oxide fuel cell (SOFC) electrodes through incorporation nano-catalyst materials within electrodes’ active sites. In this study, we report technique for increased efficiency and microstructural control infiltration process polymerized norepinephrine (pNE) treatment. Nano-CeO2 catalysts were incorporated both commercial anode-suppor...

2011
Ranjan Sen Siddhartha Das Karabi Das

This paper reports a study on nanocrystalline ceria powder prepared by high energy ball-milling and combustion synthesis methods. The combustion synthesis was carried out using ceric ammonium nitrate as oxidizer and citric acid, glycine or citric acid plus glycine as fuel. The minimum crystallite size of ceria powder is obtained by combustion synthesis of ceric ammonium nitrate and citric acid....

Journal: :The Journal of chemical physics 2013
Hao Wang Alexander Chroneos Udo Schwingenschlögl

Doped ceria is considered as an electrolyte for solid oxide fuel cell applications. The introduction of dopants in the ceria lattice will affect its electronic structure and, in turn, its ionic conductivity. Simulation of these issues using density functional theory becomes complicated by the random distribution of the constituent atoms. Here we use the generalized gradient approximation with o...

2016
Nicholas C. Nelson Juan Sebastian Manzano Aaron D. Sadow Steven H. Overbury Igor I. Slowing J. Sebastiań Manzano

Palladium supported on high-surface-area ceria effectively catalyzes the hydrogenation of phenol to cyclohexanone at atmospheric pressure and room temperature. Activation of H2 at Pd sites and phenol at surface ceria sites was investigated by probing the redox properties of the catalyst and studying the mechanism of phenol adsorption. Temperature-programmed reduction and pulsed chemisorption we...

2015
Nader Shehata Michael Clavel Kathleen Meehan Effat Samir Soha Gaballah Mohammed Salah

This paper discusses the effect of adding reduced erbium-doped ceria nanoparticles (REDC NPs) as a coating on silicon solar cells. Reduced ceria nanoparticles doped with erbium have the advantages of both improving conductivity and optical conversion of solar cells. Oxygen vacancies in ceria nanoparticles reduce Ce4+ to Ce3+ which follow the rule of improving conductivity of solar cells through...

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

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

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