نتایج جستجو برای: molybdenum contamination

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

Journal: :Science 1997
J C Boyington V N Gladyshev S V Khangulov T C Stadtman P D Sun

Formate dehydrogenase H from Escherichia coli contains selenocysteine (SeCys), molybdenum, two molybdopterin guanine dinucleotide (MGD) cofactors, and an Fe4S4 cluster at the active site and catalyzes the two-electron oxidation of formate to carbon dioxide. The crystal structures of the oxidized [Mo(VI), Fe4S4(ox)] form of formate dehydrogenase H (with and without bound inhibitor) and the reduc...

2015
Min-Rui Gao Jin-Xia Liang Ya-Rong Zheng Yun-Fei Xu Jun Jiang Qiang Gao Jun Li Shu-Hong Yu

The electroreduction of water for sustainable hydrogen production is a critical component of several developing clean-energy technologies, such as water splitting and fuel cells. However, finding a cheap and efficient alternative catalyst to replace currently used platinum-based catalysts is still a prerequisite for the commercialization of these technologies. Here we report a robust and highly...

2001
N. Dauphas

Isotope anomalies provide important information about early solar system evolution. Here we report molybdenum isotope abundances determined in samples of various meteorite classes. There is no fractionation of molybdenum isotopes in our sample set within 0.1 h and no contribution from the extinct radionuclide Tc at mass 97 (Tc/Mo < 3× 10). Instead, we observe clear anomalies in bulk iron meteor...

2011
A Schneider C Tschopp Y Longtin G Renzi A Gayet-Ageron J Schrenzel D Pittet

Methods Following a standardized physical exam using sterile gloves and a sterile stethoscope, bacterial contamination of the following regions were assessed using contact plates: stethoscope diaphragm, stethoscope tube, fingertips, thenar region, hypothenar region and back of physician’s dominant hand. Total aerobic colony count (ACC) were determined on digital photographs using a counting tool.

2016
Muhamed Smajlović

INTRODUCTION Food-borne infections and intoxications remain one of the most important public health issues globally, both in developing and in developed countries. Numbers of reported outbreaks of food-borne diseases and diseased people are constantly growing. For instance, a total of 320,000 of cases of food-borne diseases, caused by only 6 most prevalent bacterial pathogens (non-typhoidal Sal...

A. Khajesarvi G. H. Akbari

In the present study, nanocrystalline Ni50Al50-xMox (X = 0, 0.5, 1, 2.5, 5) intermetallic compound was produced through mechanical alloying of nickel, aluminum, and molybdenum powders. AlNi compounds with good and attractive properties such as high melting point, high strength to weight ratio and high corrosion resistance especially at high temperatures have attracted the attention of many rese...

Journal: :Journal of trace elements in medicine and biology : organ of the Society for Minerals and Trace Elements 2005
Zhenli L He Xiaoe E Yang Peter J Stoffella

Trace elements mean elements present at low concentrations (mg kg-1 or less) in agroecosystems. Some trace elements, including copper (Cu), zinc (Zn), manganese (Mn), iron (Fe), molybdenum (Mo), and boron (B) are essential to plant growth and are called micronutrients. Except for B, these elements are also heavy metals, and are toxic to plants at high concentrations. Some trace elements, such a...

Journal: :Nature communications 2012
Sunkook Kim Aniruddha Konar Wan-Sik Hwang Jong Hak Lee Jiyoul Lee Jaehyun Yang Changhoon Jung Hyoungsub Kim Ji-Beom Yoo Jae-Young Choi Yong Wan Jin Sang Yoon Lee Debdeep Jena Woong Choi Kinam Kim

Unlike graphene, the existence of bandgaps (1-2 eV) in the layered semiconductor molybdenum disulphide, combined with mobility enhancement by dielectric engineering, offers an attractive possibility of using single-layer molybdenum disulphide field-effect transistors in low-power switching devices. However, the complicated process of fabricating single-layer molybdenum disulphide with an additi...

2002
V. A. BORISENKO

Structures operating at high temperatures and exposed to aggressive gaseous media are made of low-alloy molybdenum TsM-10 of the system Mo-Al-B, TsM-6 of the system Mo-Zr-B and TsM-12 of the system Mo-Zr-Hf-B [1, 2]. Alloy TsM-10 is commercially pure molybdenum deoxidized by aluminium and boron. Alloy TsM-6 is alloyed with up to 0.2 wt. % zirconium and TsM-12, is alloyed with up to 0.03 wt. % z...

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

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

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