نتایج جستجو برای: rht

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

ژورنال: :مهندسی مکانیک مدرس 2016
سید محمود هاشمی احسان زمانی اصغر مهدیان

نفوذگرهای چاه نفت، ابزارهای انفجاری هستند که در صنعت حفاری چاه های نفت و گاز و با هدف دستیابی به مخازن اطراف چاه و افزایش بازده آن مورد استفاده قرار می-گیرند. کارایی این نفوذگرها با عمق نفوذی که ایجاد می کنند مورد سنجش قرار می گیرد، به همین دلیل پارامتر عمق به عنوان پارامتر اصلی باید مورد بررسی قرارگیرد. در این مقاله، گزارش کاملی از شبیه سازی عددی و بهینه سازی عملکرد این ابزارها که در حقیقت، خر...

2009
Jian-Bin Yu Gui-Hua Bai

Wheat (Triticum aestivum L.) cultivars with long coleoptiles can be sown deeply for better seedling establishment in drought environments. A population of 139 recombinant inbred lines (RILs) from a cross between a long-coleoptile Chinese landrace, Wangshuibai, and shortcoleoptile U.S. wheat cultivar, Wheaton, were characterized for coleoptile length and plant height. Heritabilities for coleopti...

Journal: :Transactions of the Royal Historical Society 2022

An abstract is not available for this content so a preview has been provided. As you have access to content, full PDF via the ‘Save PDF’ action button.

Journal: :PLoS Biology 2008
Mor Nahum Israel Nelken Merav Ahissar

Auditory information is processed in a fine-to-crude hierarchical scheme, from low-level acoustic information to high-level abstract representations, such as phonological labels. We now ask whether fine acoustic information, which is not retained at high levels, can still be used to extract speech from noise. Previous theories suggested either full availability of low-level information or avail...

Journal: :European cells & materials 2010
M Y Loqman P G Bush C Farquharson A C Hall

The remarkable increase in chondrocyte volume is a major determinant in the longitudinal growth of mammalian bones. To permit a detailed morphological study of hypertrophic chondrocytes using standard histological techniques, the preservation of normal chondrocyte morphology is essential. We noticed that during fixation of growth plates with conventional fixative solutions, there was a marked m...

2007
Vassilios Chatzis Ioannis Pitas

Randomized Hough Transform (RHT) has been recently proposed as a new and eecient variation of the Hough Transform for curve detection. In this paper the RHT is combined with the Fuzzy Cell Hough Transform (FCHT) and a new variation, the Randomized Fuzzy Cell Hough Transform (RFCHT) is proposed. The p-dimensional parameter space of Hough Transform is split into fuzzy cells with overlapped interv...

2004
J. Yao N. Kharma

This paper discusses a novel and effective technique for extracting multiple ellipses from an image, using a Genetic Algorithm with Multiple Populations (MPGA). MPGA evolves a number of subpopulations in parallel, each of which is clustered around an actual or perceived ellipse in the target image. The technique utilizes both evolution and clustering to direct the search for ellipses – full or ...

Journal: :IJPRAI 2010
Shih-Hsuan Chiu Jiun-Jian Liaw Kuo-Hung Lin

The main drawbacks of the Hough transform (HT) are the heavy requirement of computation and storage. To improve the drawbacks of the HT, the randomized Hough transform (RHT) was proposed. But the RHT is not suitable for detecting the pattern with the complex image because the probability is too low. In this paper, we propose a fast randomized Hough transform for circle/circular arc detection. W...

2015
Fernando Jaén-Águila José Antonio Vargas-Hitos Juan Diego Mediavilla-García

Obstructive sleep apnea (OSA) syndrome is a prevalent condition characterized by repeated episodes of obstruction of the upper airway, leading to intermittent hypoxemia and important endothelial and anatomical dysfunctions that cause cardiovascular and cerebrovascular disease. The finding of the relationship between OSA and hypertension, especially resistant hypertension (RHT), has increased th...

2012
Joo Hong Lee Mark T. Jones Paul E. Plassmann

The simulation of Radiative Heat Transfer (RHT) effects by the Photon Monte Carlo (PMC) method is a computationally demanding problem. In this paper we present results and analysis of a new algorithm designed to solve this problem on a hybrid computing architecture. This architecture includes distributed memory, shared memory, and Graphics Processing Unit (GPU) accelerated components. In this p...

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

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

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