نتایج جستجو برای: حوضچه api

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

2017
Xiaodong Gu Hongyu Zhang Dongmei Zhang Sunghun Kim

Computer programs written in one language are often required to be ported to other languages to support multiple devices and environments. When programs use language specific APIs (Application Programming Interfaces), it is very challenging to migrate these APIs to the corresponding APIs written in other languages. Existing approaches mine API mappings from projects that have corresponding vers...

2017
Thomas Eixelsberger Doroteja Horvat Alexander Gutmann Hansjörg Weber Bernd Nidetzky

The C-branched sugar d-apiose (Api) is essential for plant cell-wall development. An enzyme-catalyzed decarboxylation/pyranoside ring-contraction reaction leads from UDP-α-d-glucuronic acid (UDP-GlcA) to the Api precursor UDP-α-d-apiose (UDP-Api). We examined the mechanism of UDP-Api/UDP-α-d-xylose synthase (UAXS) with site-selectively 2 H-labeled and deoxygenated substrates. The analogue UDP-2...

Journal: :Adv. Software Engineering 2012
Takashi Yamanoue Kentaro Oda Koichi Shimozono

A simple application program interface (API) for Java programs running on a wiki is implemented experimentally. A Java program with the API can be running on a wiki, and the Java program can save its data on the wiki. The Java program consists of PukiWiki, which is a popular wiki in Japan, and a plug-in, which starts up Java programs and classes of Java. A Java applet with default access privil...

Journal: :Journal of the American Medical Informatics Association : JAMIA 2010
Jyotishman Pathak Lee B. Peters Christopher G. Chute Olivier Bodenreider

To facilitate the integration of terminologies into applications, various terminology services application programming interfaces (API) have been developed in the recent past. In this study, three publicly available terminology services API, RxNav, UMLSKS and LexBIG, are compared and functionally evaluated with respect to the retrieval of information from one biomedical terminology, RxNorm, to ...

2013
Tassilo Horn

FunnyQT1 is a new model querying and transformation approach which is implemented as an API for the functional, JVM-based Lisp-dialect Clojure. It provides several sub-APIs for implementing different kinds of queries and transformations. For example, there is a model-to-model transformation API, and there is an in-place transformation API for writing programmed graph transformations. FunnyQT cu...

گودرزی , محمد تقی,

Cytokines protein or glycoproteins synthesized by a wide range of cell types including lymphocytes, macrophages, platelets, and monocytes. Cytokines induse synthesis of acute phase protein in hepatocytes. So far eight cytokines has been shown can induce acute phase protein synthesis in hepatocyte and hepatoma cell culture. There are evidences that transforming growth factor-alpha (TGF-a) secr...

2013
S. Hartman J. Howlett

The naming extensions to the Generic Security Service Application Programming Interface (GSS-API) provide a mechanism for applications to discover authorization and personalization information associated with GSS-API names. The Extensible Authentication Protocol GSS-API mechanism allows an Authentication, Authorization, and Accounting (AAA) peer to provide authorization attributes alongside an ...

Journal: :The Journal of Korea Information and Communications Society 2013

Journal: :The Journal of The Institute of Image Information and Television Engineers 2016

ژورنال: :سد و نیروگاه برق آبی 0
مسعود قدسیان masoud ghodsian tarbiat modares university of tehran, civil engineering departmentتهران-دانشگاه تربیت مدرس تهران، دانشکده مهندسی عمران و محیط زیست امیررضا زراتی amirreza zarrati tehran, amirkabir university of tehran, civil engineering departmentتهران، دانشگاه صنعتی امیرکبیر، دانشکده مهندسی عمران و محیط زیست احسان بهنام طلب ehsan behnamtalab tarbiat modares university of tehran, hydraulic labتهران-دانشگاه تربیت مدرس تهران، آزمایشگاه هیدرولیک علی اکبر صالحی نیشابوری aliakbar salehi neyshabouri tarbiat modares university of tehran, civil engineering departmentتهران-دانشگاه تربیت مدرس تهران، دانشکده مهندسی عمران و محیط زیست

در این تحقیق پدیده پخش جت در حوضچه استغراق به کمک نرم­ افزارflow3d  مدل سازی شده است. نتایج مدل سازی ها نشان می­دهد که این نرم ­افزار توانایی خوبی در پیش ­بینی مشخصات پخش جت در آب ساکن شامل پروفیل های سرعت و زوایای پخش در ناحیه جت آزاد و فشار در ناحیه برخورد دارد. همچنین ارتفاع محدوده ­ای از جت که تحت تأثیر کف حوضچه استغراق قرار گرفته به خوبی توسط مدل عددی پیش بینی می­ شود. نتایج مدل های عددی ن...

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

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

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