نتایج جستجو برای: holographic interferometry

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

2006
James P. Lloyd Frantz Martinache Michael J. Ireland John D. Monnier Steven H. Pravdo Peter G. Tuthill

We have used the Palomar 200” Adaptive Optics (AO) system to directly detect the astrometric brown dwarf GJ 802B reported by Pravdo et al. 2005. This observation is achieved with a novel combination of aperture masking interferometry and AO. The dynamical masses are 0.175±0.021 M⊙ and 0.064±0.032 M⊙ for the primary and secondary respectively. The inferred absolute H band magnitude of GJ 802B is...

2004
Kirsi Karila Mika Karjalainen Juha Hyyppä

The centre of the Turku city by the river of Aurajoki in Finland has been built on clay and silt soil. The level of the ground water has been constantly lowering during the last few centuries due to the postglacial land uplift and extensive water usage leaving the old wooden pilework exposed to decaying. The decaying has led to the subsidence of some historical buildings in the old centre of Tu...

2015
Christoph Sens-Schönfelder Roel Snieder Simon C. Stähler

Correlation of the coda of large earthquakes can be used to retrieve body waves at teleseismic distances. This retrieval depends on waves propagating with equal energy in all directions (equipartitioning). We carry out a beamforming analysis of body waves at periods of 10 and 40 s recorded at USArray and show that the late coda, up to 10 h after the Okhotsk earthquake, is dominated by waves pro...

2004
William Lee

Continuing developments in homodyne laser interferometer systems [1] are improving both their measurement performance capability and their ease of installation. This paper gives an overview of such a system and explains several of the key design features. Firstly, an overview of the optical detection scheme is given. Secondly, a novel method for improving the Sub Divisional Error (SDE) in a Col...

2009
Attilio Gambardella Ferdinando Nunziata Maurizio Migliaccio

In this study, the use of the extended Bragg scattering model for fully polarimetric SAR data is proposed for describing sea surface scattering. Experiments are conducted on fully polarimetric Cand L-band SAR data. Analysis conducted so far, indicates that the proposed model is suitable for the description of the sea surface scattering and can be useful to assist oil spill observation.

2013
Ayman F. Abouraddy Timothy M. Yarnall Giovanni Di Giuseppe

There is a fundamental dimensional mismatch between the Hong-Ou-Mandel (HOM) interferometer and two-photon (2P) states: while the latter are represented using two temporal (or spectral) dimensions, the HOM interferometer allows access to only one temporal dimension. We introduce a linear 2P interferometer containing two independent delays spanning the 2P state. By “unlocking” the fixed phase re...

2009
E. Tatulli

In this paper, I review how optical spectro-interferometry has become a particularly well suited technique to study the close environment of young stars, by spatially resolving both their IR continuum and line emission regions. I summarize in which ways optical interferometers have brought major insights about our understanding of the inner part of circumstellar disks, a region in which the fir...

2007
Renee Park

We investigated the feasibility of using nulling interferometry techniques in the stratosphere to search for extra-solar planets. Studies have shown wavefront distortions from atmospheric turbulence to be too large to obtain clear ground-based images. Wavefront errors caused by atmospheric turbulence in the stratosphere are on the scale of 1 angstrom [4], however, the level of the wavefront err...

2012
Yael Bishitz Haniel Gabai Natan T. Shaked

We used interferometric microscopy to uniquely measure live cancer cell fluctuations, in a noncontact, label-free manner, and showed that cancer cells fluctuate more than similar but healthy cells, demonstrating the method potential for cancer diagnosis. OCIS codes: (090.2880) Holographic interferometry, (170.1530) Cell analysis, (170.4580) Optical diagnostics for medicine.

2008
Ting Zhang Qiming Zeng Ying Li Yun Xiang

Coherence is an important parameter to measure InSAR data quality in repeat-pass interferometry and soil moisture change can cause de-correlation. Relation between coherence and soil moisture was examined in this paper by using the ERS-1 interferometry pairs on Cangzhou area for which there are some heavy rain between the acquisition dates of the two images. The soil moisture is obtained based ...

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

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

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