نتایج جستجو برای: parameter design problem

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

Journal: :CoRR 2014
Abbas Babazadeh Mehran Fasihozaman Langerudi Navid Afkar Kiavash Fayyaz Shahandashti

In transportation planning and development, transport network design problem seeks to optimize specific objectives (e.g. total travel time) through choosing among a given set of projects while keeping consumption of resources (e.g. budget) within their limits. Due to the numerous cases of choosing projects, solving such a problem is very difficult and time-consuming. Based on particle swarm opt...

Journal: :IEEE Trans. Parallel Distrib. Syst. 2003
Daniel J. Sorin Jonathan Lemon Derek L. Eager Mary K. Vernon

This paper develops and validates an efficient analytical model for evaluating the performance of shared memory architectures with ILP processors. First, we instrument the SimOS simulator to measure the parameters for such a model and we find a surprisingly high degree of processor memory request heterogeneity in the workloads. Examining the model parameters provides insight into application be...

2007
J. A. Burns E. M. Cliff S. E. Doughty

In this paper we consider a parameter estimation problem for delay differential equations that are typical in the bioscience. The problem is motivated by a model of the dynamics of the intracellular development cycle of Chlamydia Trachomatis and can be formulated as a inverse problem for a system of delay equations. We derive the continuous sensitivity equations and show that the corresponding ...

Journal: :transport phenomena in nano and micro scales 2016
n. kishan c. kalyani m. chenna krishna reddy

the problem of steady magnetohydrodynamic boundary layer flow of an electrically conducting nanofluid due to an exponentially permeable stretching sheet with heat source/sink in presence of thermal radiation is numerically investigated. the effect of transverse brownian motion and thermophoresis on heat transfer and nano particle volume fraction considered. the governing partial differential eq...

Journal: :CoRR 2014
Neha V. Karanjkar Madhav P. Desai

Modern multi-core systems have a large number of design parameters, most of which are discrete-valued, and this number is likely to keep increasing as chip complexity rises. Further, the accurate evaluation of a potential design choice is computationally expensive because it requires detailed cycleaccurate system simulation. If the discrete parameter space can be embedded into a larger continuo...

Journal: :Design Issues 2023

Abstract The terms “problem and solution” are omnipresent the world over in various design disciplines designers often position themselves as problem solvers. Through a rigorous exploration of different perspectives on problem-solution model its impact, this article revisits how define, perceive, consequently practice design. It closely explores frequently propagated terminology perceptions can...

Journal: :caspian journal of mathematical sciences 2014
s‎. ‎khademloo f. yosefzade

‎in this paper‎, ‎we study a class of boundary value problem‎ ‎involving the p-laplacian oprator and singular nonlinearities‎. ‎we‎ ‎analyze the existence a critical parameter $lambda^{ast}$ such‎ ‎that the problem has least one solution for‎ ‎$lambdain(0,lambda^{ast})$ and no solution for‎ ‎$lambda>lambda^{ast}.$ we find lower bounds of critical‎ ‎parameter $lambda^{ast}$‎. ‎we use the method ...

Journal: :Proceedings of the Canadian Engineering Education Association (CEEA) 2018

Journal: :ACM SIGSIM Simulation Digest 1985

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

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

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