نتایج جستجو برای: moisture determination

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

2008
F. Drost M. H. England

We have examined some of the characteristics of moisture advection and its relation to precipitation over Australia. Seasonal extremes of moisture advection have changed considerably during the latter part of the 20th century. Analysis of its skewness reveals that the relative occurrence of these events has increased. A kurtosis analysis shows that there has been a geographical shift of where t...

2018
Dianyi Liu Christopher J. Traverse Pei Chen Mark Elinski Chenchen Yang Lili Wang Margaret Young Richard R. Lunt

Perovskite semiconductors have emerged as competitive candidates for photovoltaic applications due to their exceptional optoelectronic properties. However, the impact of moisture instability on perovskite films is still a key challenge for perovskite devices. While substantial effort is focused on preventing moisture interaction during the fabrication process, it is demonstrated that low moistu...

Journal: :journal of agricultural science and technology 2010
a. afzal s. f. mousavi m. khadem

water is one of the most vital constituents in plants. in this research, for an estimation of leaf moisture content, the variation of capacitance was employed. the variations were measured via designed and manufactured capacitive sensors. the objective of the research was to estimate leaf moisture content by measuring its capacitance for five agronomic crops. experiments for measuring leaf capa...

Journal: :علوم گیاهان زراعی ایران 0
سید علی طباطبایی دانشیار، مرکز تحقیقات کشاورزی و منابع طبیعی استان یزد

adverse environmental storage conditions including high temperature and relative humidity could affect seed quality. the objective of this investigation was to quantify relationship between temperatures and seed moisture on seed deterioration and determination viability constants in sorghum. four storage temperatures (5, 15, 25 and 35oc) and three moister content levels (6, 10 and 14%) were use...

Journal: :تحقیقات مهندسی کشاورزی 0
عزت اله عسکری اصلی ارده استادیارگروه ماشین های کشاورزی دانشگاه محقق اردبیلی محمدرضا روزگار دانشجوی کارشناسی ارشد مکانیک ماشین های کشاورزی دانشگاه محقق اردبیلی

the friction properties of granular materials play an important role in the determination of specifications for designing hoppers, transporting passages, dryers, silos and machines through which grain flows. in this study, the angle of repose and internal friction coefficient were determined for three common wheat varieties (sardary, gaspard and saysoter) at four moisture contents (12, 15, 18, ...

Journal: :مهندسی بیوسیستم ایران 0
محمود امید دانشیار، دانشگاه تهران علیرضا یدالهی نیا کارشناس ارشد، دانشگاه تهران شاهین رفیعی دانشیار، دانشگاه تهران

rice is one of the most widely human consumed agricultural products. for a prevention or diminishing of rice cracking in its milling process, precision control of drying conditions is indispensable. in this research, a thin layer experimental dryer is employed to obtain paddy’s drying kinetics. drying experiments were conducted at five inlet temperatures of drying air of 30, 40, 50, 60 and 70 °...

Journal: :Plant physiology 1945
A H Hendrickson F J Veihmeyer

In experimental work on the soil-water relations of plants in the field, it is advantageous to have some knowledge of the water-holding characteristics of the soil before the field trials are started. If the moisture equivalents or the field capacities and the permanent wilting percentages are known, an irrigation program for the various plots can be laid out in advance, with assurance that the...

2007
A. Bartsch

Soil moisture is a key element in the global hydrologic, energy and carbon cycle. Knowledge about the location specific sensitivity of radar backscatter can be used for operational determination of relative soil moisture over large regions. This approach has been developed for C-Band scatterometer and transferred to C-Band ScanSAR within the ESA Tiger Innovator project SHARE (ENVISAT ASAR WS/GM...

ژورنال: علوم آب و خاک 2016
حسن‌زاده, حیدر, واعظی, علی‌رضا,

Knowledge of variation in soil properties from each event to another is very important for the determination of critical periods during which soil is susceptible to erosion processes. This study was carried out to investigate soil loss in sequential rainfall events in Zanjan Province. Toward this, ten soil textures samples were taken and were transported to small plots (60 cm×80cm) with 2...

2013
Salah Ghamari Hekmat Rabbani Javad Khazaei

Terminal velocity of chickpea, rice and lentil seeds has been experimentally measured by suspending the seeds in an air stream. In order to assessment the effects of seed size and moisture content on terminal velocity a completely randomized design in factorial experiment was carried out. The results showed that size and moisture content have significant effects (p<0.01) on terminal velocityin ...

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

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

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