نتایج جستجو برای: photocatalytic degredation

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

2015
A. Fallah Shojaei F. Golriz

In this work, the photocatalytic reduction of nitrate in water was examined using zinc oxide loaded with platinum nanoparticles and formic acid as a hole scavenger (electron donor). The data obtained in the structural characterization and in the nitrate photoreduction experiments showed that 1wt% Pt/ZnO photocatalyst had the highest photocatalytic activity and selectivity toward nitrogen. Selec...

2013
Min Zhang Xinluan Yu Dandan Lu Jianjun Yang

Zr/N co-doped TiO2 nanostructures were successfully synthesized using nanotubular titanic acid (NTA) as precursors by a facile wet chemical route and subsequent calcination. These Zr/N-doped TiO2 nanostructures made by NTA precursors show significantly enhanced visible light absorption and much higher photocatalytic performance than the Zr/N-doped P25 TiO2 nanoparticles. Impacts of Zr/N co-dopi...

Journal: :Physical chemistry chemical physics : PCCP 2012
Pakpoom Reunchan Naoto Umezawa Shuxin Ouyang Jinhua Ye

We used hybrid density-functional calculations to clarify the effect of substituting chromium for titanium (Cr(Ti)) on photocatalytic activities of Cr-doped SrTiO(3). A singly negative Cr(Ti)⁻, which is relevant to a lower oxidation state of Cr, is advantageous for the visible light absorption without forming electron trapping centers, while other charge states are inactive for the photocatalyt...

Journal: :ACS applied materials & interfaces 2013
Guisheng Li Bo Jiang Xin Li Zichao Lian Shuning Xiao Jian Zhu Dieqing Zhang Hexing Li

Fullerene (C60)-enhanced Bi2TiO4F2 hierarchical microspheres were prepared by a facile solvothermal method. Compared to the pure Bi2TiO4F2 photocatalyst, the C60/Bi2TiO4F2 samples exhibit much stronger photocatalytic performance for degrading Rhodamine B (RhB) and Eosin Y (EY) under visible light irradiation. Such greatly enhanced photocatalytic activity may be ascribed to strong combination an...

2012
Azam Anaraki Firooz Ali Reza Mahjoub Abbas Ali Khodadadi

The paper reports the preparation and photocatalytic activity of ZnO/SnO2 and SnO2 nanoparticles. These nanoparticles were synthesized by hydrothermal method. The products were characterized by X-ray diffraction (XRD) and scanning electron microscopy (SEM). Their grain sizes are about 50-100 nm. The photocatalytic activities of these materials were investigated for congo red removal from aqueou...

2014
Sini Kuriakose Vandana Choudhary Biswarup Satpati Satyabrata Mohapatra

We report the synthesis of Ag-ZnO hybrid plasmonic nanostructures with enhanced photocatalytic activity by a facile wet-chemical method. The structural, optical, plasmonic and photocatalytic properties of the Ag-ZnO hybrid nanostructures were studied by X-ray diffraction (XRD), field emission scanning electron microscopy (FESEM), transmission electron microscopy (TEM), photoluminescence (PL) an...

2013
Mojtaba Samiee Jian Luo

Following a series of recent studies that demonstrated enhanced visible-light photocatalytic activities of TiO2 by annealing in reducing atmospheres, a systematic investigation was conducted, in which TiO2 nanoparticles were annealed in various controlled atmospheres with the estimated oxygen partial pressure being varied from 10 1 to 10 25 atm and presence of other species (Ar, H2, N2, vacuum ...

Journal: :Medical engineering & physics 2011
Marco Rasponi Tania Ullah Richard J Gilbert Gianfranco B Fiore Todd A Thorsen

A novel, miniaturized, high-efficiency photocatalytic cell, able to work in dynamic conditions, has been designed and validated in this study. Microfluidic channels were molded out of polydimethylsiloxane (PDMS) by means of standard soft lithography techniques, so as to work as photocatalytic cells, where the coupling of anatase titanium dioxide thin films and platinum electrodes, allows an ele...

2017
Wei Li Guojing Wang Chienhua Chen Jiecui Liao Zhengcao Li

In this research, ZnO nanowires doped with Mn2+ and Co2+ ions were synthesized through a facile and inexpensive hydrothermal approach, in which Mn2+ and Co2+ ions successfully substituted Zn2+ in the ZnO crystal lattice without changing the morphology and crystalline structure of ZnO. The atomic percentages of Mn and Co were 6.29% and 1.68%, respectively, in the doped ZnO nanowires. The photoca...

2015
Qi Hao Chenxi Wang Hao Huang Wan Li Deyang Du Di Han Teng Qiu Paul K. Chu

The effectiveness of photocatalytic processes is dictated largely by plasmonic materials with the capability to enhance light absorption as well as the energy conversion efficiency. Herein, we demonstrate how to improve the plasmonic photocatalytic properties of TiO2/Al nano-void arrays by overlapping the localized surface plasmon resonance (LSPR) modes with the TiO2 band gap. The plasmonic TiO...

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

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

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