نتایج جستجو برای: including influent turbidity

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

Journal: :Journal of fish biology 2010
C G Wellington C M Mayer J M Bossenbroek N A Stroh

Laboratory experiments were conducted to determine how larval and juvenile yellow perch Perca flavescens respond to changes in prey density when exposed to different levels and types of turbidity (phytoplanktonic or sedimentary). Across prey densities, consumption by P. flavescens tended to be less in phytoplanktonic turbidity compared with sedimentary turbidity. For larvae, this effect was dep...

Journal: :Clinical chemistry 1994
M Sampson M Ruddel R J Elin

We compared the effects of specimen turbidity and glycerol concentration on nine enzymatic methods for triglyceride measurement. We assayed 51 specimens with triglyceride concentrations of 0.85-8.21 mmol/L (75-727 mg/dL) and turbidity at 420 nm equivalent to > or = 0.1 mmol/L (8.8 mg/dL) triglyceride (measured as part of our comparison method). The data were analyzed by multiple regression, whi...

2008
Enner H. Alcântara

The objective of this paper is to study the turbidity behavior in an Amazon Floodplain Lake. Observations of turbidity provide quantitative information about water quality conditions. However, the number of available in situ measurements of water quality characteristics is usually limited, especially temporal series variables and synoptic coverage of extensive water body. In order to contribute...

2009
MARK W. CARTER DANIEL E. SHOUP JOHN M. DETTMERS DAVID H. WAHL

—Environmental factors such as turbidity and habitat complexity affect many aspects of aquatic food webs, including predator–prey interactions. We examined the effects of turbidity (0, 5, 10, 20, 40 nephelometric turbidity units [NTU]) and cover (presence or absence) on prey selection by adult smallmouth bass Micropterus dolomieu (mean 6 SD 1⁄4 290 6 41 mm total length) in laboratory pools. Ind...

2016
YOSHIAKI TANIGUCHI Yoshiaki Taniguchi

In tuna farming, turbidity measurement is highly important since one of the cause of death of tuna is a choking death due to muddy water. In this paper, we consider to use visible light communication modules for estimation of turbidity in underwater environments. If these modules can be used as turbidity meters, additional introduction of dedicated turbidity meters is not necessary. In this pap...

2007
Hyun Jung Cho

Estuarine waters are generally more turbid than lakes or marine waters due to greater algal mass and continual re-suspension of sediments. The varying effects of diurnal and seasonal prevailing winds on the turbidity condition of a wind-dominated estuary were investigated by spatial and statistical analyses of wind direction, water level, turbidity, chlorophyll a, and PAR (Photosynthetically Ac...

2010
Akbar Baghvand Abdolreza Karbassi

Problem statement: Turbid waters, containing colloidal particles, are normally treated by coagulation-flocculation followed by clarification. Ferric chloride and alum, which are the most common types of coagulants in water treatment plants of Iran as well as many other countries, were investigated with the aim of determining their capabilities to reduce turbidity of drinking water. Turbidity wa...

Journal: :iranian journal of environmental sciences 0
gopal ghosh 1. research center for environmental quality management, graduate school of engineering, kyoto university, kyoto 615–8540, japan; 2. departments of environmental science and technology, jessore university of science and technology, jessore 7408, bangladesh s. hanamoto research center for environmental quality management, graduate school of engineering, kyoto university, kyoto 615–8540, japan n. yamashita research center for environmental quality management, graduate school of engineering, kyoto university, kyoto 615–8540, japan x. huang department of environmental science and engineering, tsinghua university, beijing 100084, china h. tanaka research center for environmental quality management, graduate school of engineering, kyoto university, kyoto 615–8540, japan

this study investigated the occurrence and removal of 12 antibiotics (ciprofloxacin, enrofloxacin, levofloxacin, norfloxacin, nalidixic acid, azithromycin, clarithromycin, roxithromycin, lincomycin, novobiocin, sulfamethoxazole, trimethoprim) at four sewage treatment plants (stps): two stps in kyoto, japan and two stps in beijing, china. the stps differed in design and operation conditions, uti...

Journal: :journal of research in health sciences 0

background: electrocoagulation is a technique involving the electrolytic addition of coagulating metal ions directly from sacrificial electrodes. these ions coagulate with turbidity agents in the water, in a similar manner to the addition of coagulating chemicals such as alum and ferric chloride, and allow the easier removal of the pollutants. purpose of this study was to conduct experimental i...

Journal: :iranian journal of public health 0
a.mesdaghinia

the objective of this research was to study the feasibility of a two stage continuous system employing anaerobic-aerobic microbial film for domestic wastewater treatment and the effect of iron on the behavior of sulfate reducing bacteria in anaerobic metabolism. a bench scale system with an anaerobic filter followed by aerobic fixed units used plastic media and was operated in up flow manner wi...

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

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

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