نتایج جستجو برای: annealing in vacuum

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

B. Natarajan N. Jeyakumaran N. Prithivikumaran, V. Lakshmipriya

ZnO thin films with preferred orientation along the (002) plane were prepared onto the glass substrates by the sol-gel spin coating method for different post- annealing temperatures. The XRD study confirms that the thin films grown by this method have good crystalline hexagonal wurtzite structure. The optical band gap of the samples was determined from UV-visible spectra. It is found that the s...

Journal: :The journal of physical chemistry. B 2006
D Mattia M P Rossi B M Kim G Korneva H H Bau Y Gogotsi

The use of carbon nanomaterials in various applications requires precise control of their surface and bulk properties. In this paper, we present a strategy for modifying the surface chemistry, wettability, and electrical conductivity of carbon tubes and films through annealing in a vacuum. Experiments were conducted with 60-300 nm nanotubes (nanopipes), produced by noncatalytic chemical vapor d...

2010
M. Ramya S. Ganesan

Cu2S thin films have been prepared by vacuum evaporation method from CuS powder. Cu2S was deposited onto precleaned flat glass substrates coated under a pressure of 10 torr at an evaporation rate of 3Å /sec. The resistivity of the vacuum evaporated Cu2S thin films was measured in the temperature range 303K-453K and was found between 10 to 10 ohm cm. This low resistivity is due to degenerate nat...

Journal: :Nanoscale 2015
Yun Ji Kim Young Gon Lee Ukjin Jung Sangchul Lee Sang Kyung Lee Byoung Hun Lee

The operation of chemical vapor-deposited (CVD) graphene field-effect transistors (GFETs) is highly sensitive to environmental factors such as the substrate, polymer residues, ambient condition, and other species adsorbed on the graphene surface due to their high defect density. As a result, CVD GFETs often exhibit a large hysteresis and time-dependent instability. These problems become a major...

Journal: :The Review of scientific instruments 2016
Timur V Kulevoy Boris B Chalyhk Petr A Fedin Alexey L Sitnikov Alexander V Kozlov Rostislav P Kuibeda Stanislav L Andrianov Nikolay N Orlov Konstantin S Kravchuk Sergey V Rogozhkin Alexey S Useinov Efim M Oks Alexey A Bogachev Alexander A Nikitin Nasib A Iskandarov Alexander A Golubev

Metal Vapor Vacuum Arc (MEVVA) ion source (IS) is a unique tool for production of high intensity metal ion beam that can be used for material surface modification. From the other hand, the duoplasmatron ion source provides the high intensity gas ion beams. The MEVVA and duoplasmatron IS developed in Institute for Theoretical and Experimental Physics were used for the reactor steel surface modif...

2017
Ya-Chu Yang Jien-Wei Yeh Chun-Huei Tsau

This study investigated the effects of Ti content and vacuum annealing on the microstructure evolution of TixFeCoNi (x = 0, 0.5, and 1) thin films and the underlying mechanisms. The as-deposited thin film transformed from an FCC (face center cubic) structure at x = 0 into an amorphous structure at x = 1, which can be explained by determining topological instability and a hard ball model. After ...

In this work, mechanical alloying was employed to produce Ti-50Al and Ti-45Al-5Cr (at%) alloys. Alloying was performed in a planetary mill and the alloying time varying from 5 to 70h. Characterization of the powder mixture was performed by X-ray diffraction (XRD), SEM analyses and DTA test, during mechanical alloying and after annealing at 1100°c in vacuum oven. The results showed, after 50h of...

2015
Marietta Seifert Gayatri K Rane Benjamin Kirbus Siegfried B Menzel Thomas Gemming

Substrate materials that are high-temperature stable are essential for sensor devices which are applied at high temperatures. Although langasite is suggested as such a material, severe O and Ga diffusion into an O-affine deposited film was observed during annealing at high temperatures under vacuum conditions, leading to a damage of the metallization as well as a change of the properties of the...

1996
B. Méndez P. S. Dutta J. Piqueras E. Dieguez

The homogeneity and luminescence properties of undoped bulk GaSb have been studied by the cathodoluminescence ~CL! technique in the scanning electron microscope. CL images have revealed a nonuniform distribution of native defects in GaSb wafers prepared from as-grown single crystals. Postgrowth annealing in vacuum, gallium, and antimony atmospheres has been performed to obtain more accurate inf...

2016
J. Garra John M. Vohs Dawn A. Bonnell J. M. Vohs D. A. Bonnell

The surface chemistry of single crystal barium titanate (BaTiO3) has been studied using temperature programmed desorption (TPD). TPD measurements were performed with several probe molecules, including methanol and carbon dioxide. The role of oxygen vacancies in the adsorption and reaction of these molecules was examined by annealing the crystal under oxidizing or reducing conditions prior to pe...

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

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

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