نتایج جستجو برای: long term irrigation

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

Journal: :Mathematical and Computer Modelling 2011
Jing Jiang Shaoyuan Feng Zailin Huo Zhicai Zhao Bin Jia

The agro-hydrological Soil–Water–Atmosphere–Plant (SWAP) model was calibrated and validated to simulate water–salt transport based on field experiments in an arid region of China. The simulation results show lower soil water content but higher salt concentration under deficit irrigation. Soil water and salinity below 95 cm at 80% evapotranspiration (ETc ) treatments and 65 cm at 60% ETc treatme...

Journal: :physiology and pharmacology 0
ali ahmad azadbakht department of physiology, school of medicine, isfahan university of medical sciences, isfahan, iran nastaran eidelkhani department of physiology, school of medicine, isfahan university of medical sciences, isfahan, iran mohammad kazemi department of genetics and molecular biology, school of medicine, isfahan university of medical sciences, isfahan, iran maryam radahmadi department of physiology, school of medicine, isfahan university of medical sciences, isfahan, iran parham reisi department of physiology, school of medicine, isfahan university of medical sciences, isfahan, iran

introduction: stress is associated with neurological and cognitive disorders. it has been suggested that doxepin, in addition to its influence on the content of neurotransmitters, has probable neuroprotective effects as well. therefore, the aim of this study was to investigate the effects of doxepin on synaptic plasticity and brain-derived neurotrophic factor (bdnf) gene expression in the rat h...

Journal: :مجله علوم اعصاب شفای خاتم 0
ali jahanbazi jahan-abad shefa neuroscience research center, khatam alanbia hospital tehran, iran

long-term potentiation (ltp) is a reflection of synaptic plasticity that induced by specific patterns of synaptic activity and has an important role in learning and memory. the first clue of the potential role of glutamate receptors in ltp was in 1991 with the observation that the mglur agonists 1-amino-1, 3-cyclopentanedicarboxylic acid (acpd), increased ltp. studies have shown that acpd induc...

2001
Ali Kerem Saysel Yaman Barlas

A dynamic simulation model of salt accumulation on irrigated lands is presented. The original version of the model is part of a large-scale socio-economic model of irrigation-based regional development. The model introduced in this paper is a systemic one in the sense that it integrates four major sub-processes of rootzone salinization: irrigation, drainage, groundwater discharge and groundwate...

Journal: :journal of agricultural science and technology 0
g. buttar department of agronomy, punjab agricultural university, pau, ludhiana, india. h. s. thind pau regional station, dabwali road, bathinda-151001, india. k. s. sekhon pau regional station, dabwali road, bathinda-151001, india. a. kaur pau regional station, dabwali road, bathinda-151001, india. r. gill department of agronomy, punjab agricultural university, pau, ludhiana, india. b. sidhu pau regional station, dabwali road, bathinda-151001, india. m. s. aujla

a long-term field experiment was conducted for 7 years to evaluate the effect of different amendments to mitigate the adverse effect of saline-sodic water in a calcareous soil under cotton-wheat cropping system. the pooled results over 7 years revealed that the application of saline-sodic water decreased the mean cotton-seed yield by 20.7% as compared to good quality canal water. however, wheat...

Ali Jahanbazi Jahan-Abad, Leila Alizadeh, Prastoo Barati,

The term synaptic plasticity points to a series of persistent changes related to the activity of synapses. Long-term potentiation (LTP) is a reflection of synaptic plasticity that has an important role in learning and memory. LTP is a long-lasting increase of synaptic activity due to enhancement of excitatory synaptic transmission after a high-frequency train of electrical stimulations. Differe...

Journal: :Irrigation Science 2021

A correction to this paper has been published: https://doi.org/10.1007/s00271-021-00733-3

Journal: :Revista Brasileira de Agricultura Irrigada 2017

2014
Kyung-Rae Hyun Sungwook Kang Sunmi Lee

BACKGROUND This study examines the effects of long-term care insurance (LTCI) on the length of stay (LoS) of senior citizens under the national health insurance of Korea. METHODS The subjects include 3,903,448 people aged 65 and over as of July 1, 2008 when the LTCI was introduced in Korea. This study uses their panel data which traced the records of medical services and LTCI services for the...

Journal: :The American economic review 2006
Amy Finkelstein Kathleen McGarry

We demonstrate the existence of multiple dimensions of private information in the long-term care insurance market. Two types of people purchase insurance: individuals with private information that they are high risk and individuals with private information that they have strong taste for insurance. Ex post, the former are higher risk than insurance companies expect, while the latter are lower r...

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

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

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