نتایج جستجو برای: soft mode

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

Journal: :Optics express 2013
Alexander R Albrecht Yi Wang Mohammadreza Ghasemkhani Denis V Seletskiy Jeffrey G Cederberg Mansoor Sheik-Bahae

We present analytical considerations of "self-mode-locked" operation in a typical vertical external-cavity surface-emitting laser (VECSEL) cavity geometry by means of Kerr lens action in the semiconductor gain chip. We predict Kerr-lens mode-locked operation for both soft- and hard-apertures placed at the optimal intra-cavity positions. These predictions are experimentally verified in a Kerr-le...

2016
P. Marsik

We present a combined study with time-domain terahertz and conventional far-infrared ellipsometry of the temperature dependent optical response of SrTiO3 thin films (82 and 8.5 nm) that are grown by pulsed-laser deposition on (La0.3Sr0.7)(Al0.65Ta0.35)O3 (LSAT) substrates. We demonstrate that terahertz ellipsometry is very sensitive to the optical response of these thin films, in particular, to...

2017
Horacio V Guzman

Analytical equations to estimate the peak force will facilitate the interpretation and the planning of amplitude-modulation force microscopy (tapping mode) experiments. A closed-form analytical equation to estimate the tip-sample peak forces while imaging soft materials in liquid environment and within an elastic deformation regime has been deduced. We have combined a multivariate regression me...

2014
A. E. Hubbard

Just above the H-mode threshold power at low density, small amplitude high repetition rate (1 5 kHz) Type III Edge Localized Modes (ELMs) are observed. At higher input power, the H-modes become ELM-free. At high density and high input power (Ie > 2.2 x 1020 m3, P," > 2 MW), the plasma often enters a new H-mode regime now called the Enhanced D, H-mode, which is a steady-state Hmode often without...

پایان نامه :وزارت علوم، تحقیقات و فناوری - دانشگاه شاهد - دانشکده فنی و مهندسی 1388

پروژه حاضر ضمن بررسی و تحلیل پروسه کنترل کیفی، به ارائه نرم افزاری به منظور پردازش تصویر فانتوم کنترل کیفی دستگاه سونوگرافی b-mode می پردازد. این نرم افزار برای استخراج پارامتر های کنترل کیفی دستگاه سونوگرافی b-mode مورد استفاده قرار خواهد گرفت. پارامترهای کنترل کیفی مورد بررسی در این پروژه عبارتند از : اندازه گیری عمق نفوذ موج ماورا صوت بررسی توان دستگاه دراندازه گیری فواصل عمقی بررسی ت...

Journal: :Physical review. B, Condensed matter 1988
Inoue Hasegawa Watanabe Yamaguchi Uwe Sakudo

In a recent paper' Inoue et al. discussed a soft optical phonon that drives the second-order phase transition from hexagonal BaTi03, space group P63/mme (D6t, ), to a lower-symmetry structure at T, =222 K. The new phase is not ferroelectric and its structure is not known. The soft mode is Raman and infrared inactive and therefore is a so-called "silent" mode. Using hyper-Raman scattering, Inoue...

Journal: :Soft robotics 2017
Ming Luo Erik H Skorina Weijia Tao Fuchen Chen Selim Ozel Yinan Sun Cagdas D Onal

Real-world environments are complex, unstructured, and often fragile. Soft robotics offers a solution for robots to safely interact with the environment and human coworkers, but suffers from a host of challenges in sensing and control of continuously deformable bodies. To overcome these challenges, this article considers a modular soft robotic architecture that offers proprioceptive sensing of ...

2018
Haoran Li Meng Xu Chong Li Chenyang Lu Christopher Gill Linh Phan Insup Lee Oleg Sokolsky

Real-time virtualization is an emerging technology for embedded systems integration and latency-sensitive cloud applications. Earlier real-time virtualization platforms require offline configuration of the scheduling parameters of virtual machines (VMs) based on their worst-case workloads, but this static approach results in pessimistic resource allocation when the workloads in the VMs change d...

2013
I. Iskender A. Mamizadeh N. Genc

The boost topology is the most popular topology used in power factor correction circuits. The efficiency and performance of the boost converter depends on the switching frequency affecting the switching losses. At high frequency operations the switching losses of the converter is considerable and decreases the efficiency of the converter. To remove this problem the converter is designed to oper...

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

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

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