نتایج جستجو برای: sediment discharge

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

2015
Deonie Allen Scott Arthur Heather Haynes

Vegetated swales are an accepted and commonly implemented sustainable urban drainage system in the built urban environment. Laboratory and field research has defined the effectiveness of a vegetated swale in sediment detention during a single rainfall-runoff event. Event mean concentrations of suspended and bed load sediment have been calculated using current best analytical practice, providing...

2010
R. A. Parsons F. Nimmo

[1] Using a stereo pair of HiRISE images of a pole‐facing crater slope at 38°S, 218°E, we measure topographic profiles along nine gullies. Typical slopes of the interior channel region (above the depositional apron) are ∼20°. We test the hypothesis that sediment transport on gully slopes occurs via fluvial transport processes by developing a numerical sediment transport model based on steep flu...

2016
Mohsen Cheraghi Seifeddine Jomaa Graham C. Sander D. A. Barry

A detailed laboratory study was conducted to examine the effects of particle size on hysteretic sediment transport under time-varying rainfall. A rainfall pattern composed of seven sequential stepwise varying rainfall intensities (30, 37.5, 45, 60, 45, 37.5, and 30 mm h), each of 20 min duration, was applied to a 5 m 3 2 m soil erosion flume. The soil in the flume was initially dried, ploughed ...

2012

Comment: Arctic rivers and their estuaries are characterized by seasonal extremes; long ice cover, limited light conditions and a very strong seasonal signal in discharge, but also sediment, and POC/DOC fluxes. Even though many readers are probably familiar with this, it should be mentioned. It would be good to minimally add timing and amounts in discharge and delivered OM, and relate this to t...

Varied flows such as flooding resulting from dam break can happen due to earthquakes, seepage, bombing, overtopping, mistake in design and project performance as well as causing financial damages and human losses. Unsteady flow during flooding events has a high impact on flow field pattern, sediment motion, ecology and also, distribution of contamination in the river. In this study, the impact ...

2012

Comment: Arctic rivers and their estuaries are characterized by seasonal extremes; long ice cover, limited light conditions and a very strong seasonal signal in discharge, but also sediment, and POC/DOC fluxes. Even though many readers are probably familiar with this, it should be mentioned. It would be good to minimally add timing and amounts in discharge and delivered OM, and relate this to t...

2012
Craig A. Grove Jens Zinke Tim Scheufen Joseph Maina Eric Epping Wim Boer Geert-Jan A. Brummer

Coral cores provide vital climate reconstructions for site-specifi c temporal variability in river fl ow and sediment load. Yet, their ability to record spatial differences across multiple catchments is relatively unknown. Here, we investigate spatial linkages between four coral proxies of terrestrial runoff and their relationships between sites. Coral cores were drilled in and around Antongil ...

Journal: :Journal of environmental quality 2009
Marshall D McDaniel Mark B David Todd V Royer

Sediments can be important in regulating stream water P concentrations, and this has implications for establishing nutrient standards that have not been fully investigated. We evaluated abiotic and biotic processes to better understand the role of sediments in determining stream water dissolved P concentrations. Sediment and stream water samples were collected during low discharge from 105 stre...

Journal: :SpringerPlus 2016
Wenbo Kou Jie Zhang Xinxin Lu Yantian Ma Xiaozhen Mou Lan Wu

Bacteria play a vital role in various biogeochemical processes in lacustrine sediment ecosystems. This study is among the first to investigate the spatial distribution patterns of bacterial community composition in the sediments of Poyang Lake, the largest freshwater lake of China. Sediment samples were collected from the main basins and mouths of major rivers that discharge into the Poyang Lak...

2014
Luo Hao Ma Minghui Liang Bin Bao Chenguang

Population distribution of amphioxus (Branchiostoma belcheri tsingtauense) was investigated in the Luan River Estuary from 1999 to 2011, to describe its trends and discover the factors that influence its decline. Amphioxus are distributed on the seabed at 5-10 m depth, between the Xinkai Estuary and the Dapu River Estuary, where the primary sand components of the sediment are medium and fine, w...

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

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

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