نتایج جستجو برای: silv

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

Journal: :Physical review letters 2006
J X Cao X G Gong J X Zhong R Q Wu

We have determined stable geometries for pristine Si nanowires grown along their 100 axis through systematic density functional studies. Strikingly, Si nanowires with diameters smaller than 1.7 nm prefer a shape that has a square cross section. This stems from dimerization between corner atoms and also from benign reconstruction patterns that maximally saturate Si dangling bonds.

2011
Alexei A. Maznev Jeffrey K. Eliason Austin Minnich Kimberlee Collins Gang Chen John Cuffe Timothy Kehoe Clivia M. Sotomayor Keith A. Nelson Jeremy A. Johnson Clivia M. Sotomayor Torres

The length-scales at which thermal transport crosses from the diffusive to ballistic regime are of much interest particularly in the design and improvement of nano-structured materials. In this work, we demonstrate that the departure from diffusive transport has been observed in Si and GaAs using an optical transient thermal grating technique where an arbitrary, experimentally set length scale ...

2014
Jianwei Ji Guan Wang Xiaozeng You Xiangxing Xu

Silicon quantum dots (Si QDs) attract increasing interest nowadays due to their excellent optical and electronic properties. However, only a few optoelectronic organic molecules were reported as ligands of colloidal Si QDs. In this report, N-vinylcarbazole - a material widely used in the optoelectronics industry - was used for the modification of Si QDs as ligands. This hybrid nanomaterial exhi...

Journal: :Physical review letters 2006
Chin-Lung Kuo Gyeong S Hwang

Atomic structure and structural stability of neutral oxygen vacancies on amorphous silica are investigated using combined Monte Carlo and density functional calculations. We find that, unlike their bulk counterparts, the Si-Si dimer configuration of surface oxygen vacancies is likely to be unstable due to the high tensile strains induced, thereby undergoing thermally activated transformation wi...

2013
Tao Wang Jian-Ping Zhao Sheng-Di Bai

The symmetric title mol-ecule, [Hf(C26H40N4Si)Cl4], lies about a twofold rotation axis. The Hf(IV) and Si atoms lie on the rotation axis with all other atoms being in general positions. The Hf(IV) atom is six-coordinated by two N atoms from the N (2),N (2')-(di-methyl-silanedi-yl)bis-(N-tert-butyl-3-methyl-benz-imid-amidate) ligand and four Cl(-) ions in a slightly distorted octa-hedral geometr...

Journal: :Advanced materials 2016
Jialiang Lang Bin Ding Ting Zhu Hanxiao Su Hao Luo Longhao Qi Kai Liu Ke Wang Naveed Hussain Chunsong Zhao Xiaoyan Li Huajian Gao Hui Wu

Lithium-ion batteries with a Si anode can drive large mechanical actuation by utilizing the dramatic volume changes of the electrode during the charge/discharge cycles. A large loading of more than 10 MPa can be actuated by a LiFePO4 ||Si full battery with a rapid response while the driving voltage is lower than 4 V.

2004
Timothy D. Schowalter

This paper provides a conceptual framework for increasing our understanding of the relationships between plant resistance to insect herbivores and insect herbivore influences on ecosystem nutrient cycling and succession. For a given plant species, adequate nutrient/light availability favors establishment and productivity; small insect herbivore populations regulated by plant biochemistry stimul...

Journal: :Journal of visualized experiments : JoVE 2015
Hidenori Mizuno Hitoshi Sai Koji Matsubara Hidetaka Takato Michio Kondo

One of the potential applications of metal nanostructures is light trapping in solar cells, where unique optical properties of nanosized metals, commonly known as plasmonic effects, play an important role. Research in this field has, however, been impeded owing to the difficulty of fabricating devices containing the desired functional metal nanostructures. In order to provide a viable strategy ...

2009
Guangan Zhang Liping Wang Pengxun Yan Qunji Xue

CrSiN films with various Si contents were deposited by reactive magnetron sputtering using the codeposition of Cr and Si targets in the presence of the reactive gas mixture. Comparative studies on microstructure and mechanical properties between CrN and CrSiN films with various Si contents were carried out. The structure of the CrSiN filmswas found to change from crystalline to amorphous struct...

Journal: :Physical review letters 2013
Jian-Tao Wang Changfeng Chen Hiroshi Mizuseki Yoshiyuki Kawazoe

Silicon and germanium transform from diamond to β-tin structure under compression, but upon decompression they turn into metastable BC8 Si and ST12 Ge phases, respectively, instead of returning to the lowest-enthalpy diamond structure. Here we explore by first-principles calculations the atomistic mechanism underlying this intriguing phenomenon. We identify a body-centered tetragonal structure ...

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

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

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