نتایج جستجو برای: anaerobic sludge

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

2006
Nitin Verma Chul Park John T. Novak Zeynep Erdal Bob Forbes

Dewatered sludge cakes from bench scale anaerobic digesters operated at mesophilic temperatures and solids retention times (SRT) ranging from 10 days to 40 days were evaluated for their sulfur odor generation potential. Extracellular Polymeric Substances (EPS) extraction for digested sludge samples was also carried out. Static headspace sulfur gas analysis was successfully used to compare diffe...

Journal: :Bioresource technology 2013
Michelle N Young Andrew K Marcus Bruce E Rittmann

The Combined Activated Sludge-Anaerobic Digestion Model (CASADM) quantifies the effects of recycling anaerobic-digester (AD) sludge on the performance of a hybrid activated sludge (AS)-AD system. The model includes nitrification, denitrification, hydrolysis, fermentation, methanogenesis, and production/utilization of soluble microbial products and extracellular polymeric substances (EPS). A CAS...

Journal: :Water science and technology : a journal of the International Association on Water Pollution Research 2011
M S de Graaff H Temmink G Zeeman C J N Buisman

Source-separated black water (BW) (toilet water) containing 38% of the organic material and 68% of the phosphorus in the total household waste (water) stream including kitchen waste, is a potential source for energy and phosphorus recovery. The energy recovered, in the form of electricity and heat, is more than sufficient for anaerobic treatment, nitrogen removal and phosphorus recovery. The ph...

Journal: :Water science and technology : a journal of the International Association on Water Pollution Research 2006
N Yemashova S Kalyuzhnyi

Four selected azo dyes (acid orange 6, acid orange 7, methyl orange and methyl red) were completely decolourised in the presence of anaerobic granular sludge, while only methyl red was degraded in aerobic conditions using a conventional activated sludge. Additional experiments with culture broth devoid of cells showed that anaerobic decolourisation of azo dyes was performed by extracellular red...

2018
Nicholas Benn Daniel Zitomer

Conventional petroleum-derived plastics are recalcitrant to biodegradation and can be problematic as they accumulate in the environment. In contrast, it may be possible to add novel, biodegradable bioplastics to anaerobic digesters at municipal water resource recovery facilities along with primary sludge to produce more biomethane. In this study, thermal and chemical bioplastic pretreatments we...

2012
L. Zhang

The up flow anaerobic sludge bed (UASB)-digester system is one promising low temperature anaerobic process for sewage treatment. In this study, the effects of height of UASB sludge transfer (HUST) on performance of a UASB-digester system treating sewage at 15°C were studied. The studied HUSTs were 27, 47 and 67 cm in the UASB sludge bed of 70 cm, from which sludge was transferred to the digeste...

2013
Anteneh Mesfin Yeneneh Tushar Kanti Sen Siewhui Chong Ha Ming Ang Ahmet Kayaalp

This work deals with the effect of combined microwave-ultrasonic pretreatment on the anaerobic biodegradability of primary, excess activated and mixed sludge. The characteristics, biodegradability and anaerobic digester performance for untreated primary, excess activated and mixed sludge were compared to combined microwave-ultrasonic pretreated primary, excess activated and mixed sludge. All sl...

2009
A Machnicka K Grűbel J Suschka

Disintegration by hydrodynamic cavitation has a positive effect on the degree and rate of sludge anaerobic digestion. By applying hydrodynamic disintegration the lysis of cells occurs in minutes instead of days. The intracellular and extracellular components are set free and are immediately available for biological degradation which leads to an improvement of the subsequent anaerobic process. H...

2015
Rosa-Elena Yaya-Beas Jules B. van Lier Grietje Zeeman

This research was conducted to study the anaerobic sludge filtration capacity regarding helminth egg removal in upflow anaerobic sludge blanket (UASB) reactors. Two 25 L lab-scale UASB reactors were operated at an ambient temperature which varied between 17.1 and 28.6 °C. Ascaris suum egg was selected as the model egg considering its similarity in terms of size and morphology to Ascaris lumbric...

Journal: :The Journal of toxicological sciences 1978
Y Tonogai M Iwaida M Tati Y Ose T Sato

Biochemical degradation test of food coal-tar dyes using sludge was studied in order to evaluate their safety. It was found that some dyes were little decomposed under aerobic condition but four azo dyes were readily decomposed under anaerobic condition. These were Food Yellow No. 4, No. 5, and Food Red No. 2, No. 102. Decomposed products of these four azo dyes by sludge under anaerobic conditi...

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

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

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