نتایج جستجو برای: total coliform bacteria tcb

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

2015
Nazak AMANIDAZ Ali ZAFARZADEH Amir Hossein MAHVI

BACKGROUND This study investigated the interaction between heterotrophic bacteria and coliform, fecal coliforms, fecal streptococci bacteria in water supply networks. METHODS This study was conducted during 2013 on water supply distribution network in Aq Qala City, Golestan Province, Northern Iran and standard methods were applied for microbiological analysis. The surface method was applied t...

ژورنال: سلامت و محیط زیست 2016

Background and Objectives: Qualitative evaluation of sewage sludge before any kind of application is essential. The present study was aimed to investigate Total coliform, Fecal coliform and Salmonella in sewage sludge produced at wastewater treatment plants in Azerbaijan Province, Iran. Materials and Methods: Nine wastewater treatment plants were chosen in East Azerbaijan Province, and their...

Journal: :Bulletin of the Pan American Health Organization 1992
J Juárez Mendoza G Martínez Rosales J Díaz Sánchez E Brust Mascher H Brust Carmona

With a view to evaluating a small-scale water disinfection system based on production and application of oxidizing gases, the level of equivalent residual chlorine and the degree of contamination by fecal and total coliform bacteria was assessed at various points in the drinking water system of a Mexico City hospital before and after installation of the disinfection equipment. Tests done in May...

Journal: :Applied and environmental microbiology 1980
D J Grimes

Bacteriological effects of hydraulically dredging polluted bottom sediment in the navigation channel of the Upper Mississippi River (river mile 827.5 [about 1,332 km] to 828.1 [about 1,333 km]) were investigated. Bottom sediment in the dredging site contained high total coliform densities (about 6,800 most-probable-number total coliform index per g [dry weight] and 3,800 membrane filter total c...

Journal: :JPMA. The Journal of the Pakistan Medical Association 1991
S J Khurshid S Bibi

The radiometric method has been used for detection of coliform bacteria in water. The method is based on measuring the released metabolic 14CO2 from 14C-lactose in growth media containing coliform organisms incubated at 37 degrees C under continuous shaking. This rapid and sensitive radiometric method permits the detection of even single coliform organisms within 6 hours of incubation. Using th...

2007
James A. Entry Robert K. Hubbard Janice E. Thies Jeffry J. Fuhrmann

Survival of total and fecal coliform bacteria was measured in the 0 to 5, 5 to 15, and 15 to 30 cm soil depths at 1, 3, 7, 14, and 90 to 120 d after swine (Sus scrofa) wastewater application to riparian filterstrips in southern Georgia during each season of the year. Vegetative treatments evaluated were: (i) 20 m grass-10 m forest, (ii) 10 m grass-20 m forest, and (iii) 10 m grass-20 m maidenca...

Journal: :international journal of aquatic biology 0
harekrishna jana vidyasagar university keshab chandra mondal vidyasagar university chiranjit maity vidyasagar university arpan das vidyasagar university suman kumar halder vidyasagar university abhijit mitra university of calcutta

the effect of microbial load on the condition index of the edible oyster, saccostrea cucullata were analysed on monthly basis during 2010 and 2011 from the three different stations (namkhana, frasergaunge and sajnekhali) of indian sundarbans. the results showed significant variation with respect to microbial load between stations and seasons, which is reflected in the tissue of edible oyster. s...

Journal: :iranian journal of public health 0
nazak amanidaz ali zafarzadeh amir hossein mahvi

background: this study investigated the interaction between heterotrophic bacteria and coliform, fecal coliforms, fecal streptococci bacteria in water supply networks. methods: this study was conducted during 2013 on water supply distribution network in aq qala city, golestan province, northern iran and standard methods were applied for microbiological analysis. the surface method was applied t...

Introduction: Analyzing the health risk associated with the microbial contamination of seawater is necessary to ensure that there is not any threat to human or environment. The aim of this study was to evaluate the microbiological quality of Caspian sea water using indicator bacteria. Some Physicochemical parameters were studied to assed their association with the contamination level of Caspian...

Journal: :iranian journal of public health 0
m yarahmadi m yunesian mr pourmand a shahsavani i mubedi b nomanpour

background: the objective of this study was to evaluate the efficacy of sanitization of lettuce according to the protocols set forth by iranian ministry of health and medical education for reducing populations of total coliform, fecal coliform, and helminth eggs present on lettuce. methods: in the present study, we determined the load of total coliform, fecal coliform, and parasites of lettuce....

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

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

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