نتایج جستجو برای: ch4 gas sensor

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

Journal: :Physical chemistry chemical physics : PCCP 2015
Ningning Yu Lu Wang Min Li Xiaotian Sun Tingjun Hou Youyong Li

Molybdenum disulfide (MoS2), a kind of graphene-like, two-dimensional material, has attracted great interest because of its unique properties and potential applications in electronics and sensors. In this paper, first-principle calculations and grand canonical Monte Carlo (GCMC) simulations are performed and used to show that the MoS2 layer is efficient at absorbing non-polar gases. Compared wi...

1999
Haroon S. Kheshgi Atul K. Jain V. R. Kotamarthi Donald J. Wuebbles

Tropospheric CH4 concentration depends, according to modeled tropospheric processes, on many factors, including emissions of CH4 as well as NOx and CO. Illustrative analyses of the relation between emissions and CH4 concentration give some guidance on the role of CH4 in the stabilization of greenhouse gas concentrations. The contribution of CH4 to radiative forcing at the time of stabilization ...

Journal: :The Science of the total environment 2016
Lars Elsgaard Anne B Olsen Søren O Petersen

Intensification of livestock production makes correct estimation of methanogenesis in liquid manure increasingly important for inventories of CH4 emissions. Such inventories currently rely on fixed methane conversion factors as knowledge gaps remain with respect to detailed temperature responses of CH4 emissions from liquid manure. Here, we describe the temperature response of CH4 production in...

2013
Eliete B. Canterle David da Motta Marques Lúcia R. Rodrigues

Temporary wetlands are short-term alternative ecosystems formed by flooding for irrigation of areas used for rice farming. The goal of this study is to describe the development cycle of rice fields as temporary wetlands in southern Brazil, evaluating how this process affect the gas production (CH4 and CO2) in soil with difference % carbon and organic matter content. Two areas adjacent to Lake M...

Journal: :Facta universitatis. Series electronics and energetics 2022

In this work we present the atomistic computational study of adsorption properties Co doped MoS2 adsorbed ammonia (NH3) and methane (CH4). The distance, energy (Ead), charge transfer (Qt), bandgap, Density States (DOS), Projected (PDOS), transport properties, sensitivity recovery time have been reported. diffusion property system was calculated using Nudge Elastic Band (NEB) method. results dep...

Journal: :Waste management & research : the journal of the International Solid Wastes and Public Cleansing Association, ISWA 2002
Yutaka Dote

Microbial cultures used for methane oxidation experiments were prepared by enriching under a 20 % CH4 atmosphere either leachate extracts from two different landfill sites or a digested sewage sludge. No microbes were axenically isolated, therefore the cultures were mixtures of CH4 oxidising and other aerobic microorganisms. CH4 oxidation experiments were carried out with a batch reactor, whose...

Journal: :The Analyst 2014
Mohammad Jahjah Wei Ren Przemysław Stefański Rafał Lewicki Jiawei Zhang Wenzhe Jiang Jan Tarka Frank K Tittel

A methane (CH4) and nitrous oxide (N2O) sensor based on a sensitive, selective and well established technique of quartz enhanced photoacoustic spectroscopy (QEPAS) was developed for environmental and biomedical measurements. A thermoelectrically cooled (TEC) distributed feedback quantum cascade laser (DFB-QCL), capable of continuous wave (CW) mode hop free emission in the 7.83 μm wavelength ran...

2016
Rebecca Danielsson Rebecca Danielson

Greenhouse gas emissions from the agricultural sector represent about 14.5% of total emissions related to human activity. Approximately 40% of agricultural sector emissions derive from enteric methane (CH4) production by ruminants, due to their microbial digestion of feed. Level of CH4 production varies according to feed type, feed intake and even among individual animals raised under similar c...

2008
David Bastviken Jonathan J. Cole Michael L. Pace Matthew C. Van de Bogert

[1] Methane (CH4) represents a major product of organic matter decomposition in lakes. Once produced in the sediments, CH4 can be either oxidized or emitted as a greenhouse gas to the atmosphere. Lakes represent an important source of atmospheric CH4, but the relative magnitudes of the internal pathways that lead to CH4 emissions are not yet clear. We quantified internal cycling and methane emi...

2014
Chengjie Wang Guodong Han Shiping Wang Xiajie Zhai Joel Brown Kris M. Havstad Xiuzhi Ma Andreas Wilkes Mengli Zhao Shiming Tang Pei Zhou Yuanyuan Jiang Tingting Lu Zhongwu Wang Zhiguo Li

Considering their contribution to global warming, the sources and sinks of methane (CH4) should be accounted when undertaking a greenhouse gas inventory for grazed rangeland ecosystems. The aim of this study was to evaluate the mitigation potential of current ecological management programs implemented in the main rangeland regions of China. The influences of rangeland improvement, utilization a...

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

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

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