نتایج جستجو برای: khuzestan west azarbayejan

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

پایان نامه :موسسه آموزش عالی غیردولتی رودکی تنکابن - دانشکده ادبیات و زبانهای خارجی 1393

abstract the present study was an attempt to investigate the effect of critical thinking on writing ability of 60 iranian intermediate efl learners studying at chenar language institute in khuzestan, iran. to this end, the participants of the study were selected based on their performance in an pet test, a cornell critical thinking test form x and a pre-test of writing. the participants un...

Journal: :the international journal of humanities 2005
najle khandagh

this article examines the political turmoil, iran foreign policy, great powers interventions with especial reference to firqa-yi dimukrat azarbayejan and oil crisis between 1941-1947. this article also deals with the international reaction, the role of the united nations, and that of the prime minister, qavam, who concluded agreements with the firqa-yi dimukrat lead-ers and the ussr. the succe...

H. Keyvanfar N. Razmaraii S.A. Pourbakhsh, S.M. Azimi

  Bluetongue is an infectious disease that primarily affects sheep. But due to serious socioeconomic consequence of it outbreaks on the international trade it has been included in the OIE notifiable diseases (list A). During 2007-8, total number of 130 blood samples gathered from suspected sheep to bluetongue disease in seropositive region including Khuzestan, Kurdistan, Fars, Ilam and Qum prov...

Journal: :jundishapur journal of microbiology 0
seyed mohammad alavi health institute, jundishapur infectious and tropical diseases research center, jundishapur university of medical sciences, ahvaz, ir iran.; health institute, jundishapur infectious and tropical diseases research center, jundishapur university of medical sciences, ahvaz, ir iran. tel: +98-6113387724 mohammad mehdi khoshkho infectious diseases department , razi hospital, medical college, jundishapur university of medical sciences, ahvaz, ir iran.

background leptospirosis as an emerging infectious disease is considered as an important public health problem worldwide. objectives the current study aimed to identify potential risks for leptospirosis among rice farmers in khuzestan province, iran. patients and methods a cross-sectional study was carried out in khuzestan, south west iran, from october to december, 2012. randomly selected part...

Journal: :Energies 2022

From the late 1900s onward, hydrocarbon exploitation has led to severe environmental footprints in Khuzestan province, Iran. However, no comprehensive study been conducted evaluate such issues. In this research, an inclusive analysis was performed investigate these impacts. To do this, first, two datasets related a 15-year period (2006–2021) were collated: satellite data from Sentinel-1 mission...

Journal: :iranian journal of neurology 0
davood kashipazha department of neurology, golestan hospital, ahvaz jundishapur university of medical sciences, ahvaz, iran seyed ehsan mohammadianinejad department of neurology, golestan hospital, ahvaz jundishapur university of medical sciences, ahvaz, iran nastaran majdinasab department of neurology, golestan hospital, ahvaz jundishapur university of medical sciences, ahvaz, iran mostafa azizi department of neurology, golestan hospital, ahvaz jundishapur university of medical sciences, ahvaz, iran majid jafari department of neurology, golestan hospital, ahvaz jundishapur university of medical sciences, ahvaz, iran

background: neuromyelitis optica (nmo) is an uncommon neuro- inflammatory syndrome that has shown to be distinct from multiple sclerosis (ms) and associated with the autoantibody marker nmo-immunoglobulin g (igg). there are still only a few studies regarding the epidemiology of nmo in iran. in the present study, we tried to describe the epidemiology of nmo in khuzestan as one of the densely pop...

Journal: :Industrial Engineering and Management Systems 2016

Journal: :Procedia - Social and Behavioral Sciences 2012

Extended abstract 1- Introduction Desert dust is formed under the influence of special weather and environmental conditions in desert areas and enters the atmosphere. Local hurricanes caused by surface air instability, passing through dry deserts, remove silt and sand particles from the surface and enter the atmosphere. Desert dust physically, in addition to its ecological effects such as lun...

2014
Abdolkarim Sheikhi Mohsen Azarbeig Hamid Karimi

526 Ann Dermatol Received May 27, 2013, Revised July 18, 2013, Accepted for publication July 25, 2013 Corresponding author: Abdolkarim Sheikhi, Department of Immunology, Faculty of Medicine, Dezful University of Medical Sciences, Azadegan Main Boulevard, Dezful, Khuzestan 6461945914, Iran. Tel: 98-641-6269733, Fax: 98-641-6269538, E-mail: sheikhi.a@dums.ac.ir This is an Open Access article dist...

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

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

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