Comparison of Strehl Ratio, Marechal Approximation, and Power in a Bucket Calculations

Size: px
Start display at page:

Download "Comparison of Strehl Ratio, Marechal Approximation, and Power in a Bucket Calculations"

Transcription

1 AN023 Comparison of Strehl Ratio, Marechal Approximation, and Power in a Bucket Calculations Author: Justin Mansell Revision: 4/1/17 Abstract This application note explores the relationship between Strehl Ratio (SR), the Marechal approximation, and power in a bucket (PIB) metrics for a circular beam with select Zernike and sinusoidal aberrations. It also looks at this relationship for Kolmogorov spectrum turbulence for different bucket sizes. Model Setup This model was run in Matlab using some existing functions for things like Zernike polynomials, farfield propagation calculations, creating grids, and plotting. The appendix shows the code for the model with sinusoidal gratings, but does not include the support scripts, although those should be easily duplicated. We used two separate scripts for analysis of Zernikes and sinusoidal phase gratings. In each of the scripts, the outer most loop scans over different aberration amplitudes. Each aberration was scaled to make the root-mean-square (RMS) amplitude the same for different aberration shapes. The next inner loop scaled over aberration shape. In each shape-amplitude combination, the aberration is applied to a circular beam on a mesh with a factor of two guard-band (dxy = 2 * Dap / nxy). The Strehl ratio is calculated using the integral form of the equation. The farfield intensity of the aberrated beam is determined and then the power in the bucket calculation is performed. The power in the bucket to total power ratio is then stored for a 1x, 1.5x and 2x diffraction limited bucket size. The Marechal approximation was calculated using, StrehlMarechal where φrms is the RMS aberration amplitude. exp In each of these studies, the wavelength was 1 μm, the circular top-hat beam was 1 cm in diameter, the mesh was sampled with 256 points, and the beam was propagated 25 m to the focus. 2 RMS 1

2 Results with Zernike Polynomial Aberrations We studied Zernikes from the second order (#3) to the 33 rd Zernike (n-l ordering) and then also Zernike #100. Figure 1 shows the results for the focus aberration. Figure 2 shows the results for the 100 th Zernike, which is a 5 th -radial-order polynomial with 10 circular segments. In general, for all of the Zernikes, we found Strehl ratio and Marechal approximation matched well up to about 0.15 waves RMS amplitude. The power in the diffraction limited bucket matched reasonably well with the Strehl ratio and Marechal approximation up to this point as well. In general, the agreement between all of these metrics increased as the aberration spatial frequency increased, as is evidenced by the good agreement in Figure 2. Figure 1 - Results for a Focus Aberration Figure 2 - Results for the 100 th Zernike 2

3 Results with Sinusoidal Phase Grating Aberrations In the case of the sinusoidal gratings, we studied gratings with spatial periods equal to the aperture diameter divided by a factor between 1 and 10 in unit increments. Figure 3 and Figure 4 show the results for the lowest and highest spatial frequencies we studied respectively. The results, in general, were consistent with the conclusions of the Zernike polynomial study. The low spatial frequency aberrations were the most different than the Strehl ratio and Marechal approximation results, but the power in the diffraction limited bucket curve seemed to match reasonably well with the Strehl results. Figure 3 - Results with the lowest spatial frequency grating Figure 4 - Results with the highest spatial frequency grating For the sinusoidal aberrations, we also looked at the difference between the PIB and the Strehl ratio calculations. Figure 5 shows the result for the highest spatial frequency. There is an initial difference due to the light diffracted beyond the bucket even with no aberration amplitude, but this only decreases as the aberration amplitude increases. The maximum value of this is about 16% for the 1x diffraction limited bucket size. 3

4 Figure 5 - Difference between PIB and Strehl Ratio for the highest spatial frequency aberration PIB and Strehl Ratio for Kolmogorov Spectrum Turbulence We performed a similar calculation to those above for a 20 th -order super-gaussian beam with varying amplitude Kolmogorov-spectrum turbulence. Figure 6 shows the results averaged over 100 random realizations. The relationship between the power in the diffraction-limited spot diameter and the Strehl ratio is nearly linear, but has more structure as the bucket size is increased to 2 times and 3 times the diffraction limited spot size. Conclusions Figure 6: PIB vs. Strehl Ratio for Varying Amplitude Kolmogorov Turbulence In this application note, we have shown the great deal of similarity between the Strehl ratio, the Marechal approximation, and the power in a diffraction limited bucket. We extended this study to examine the relationship between power in the bucket and Strehl ratio when a nearly top-hat beam is aberrated with a single Kolmogorov-spectrum turbulence phase screen. 4

5 Appendix: Comparison Code for Sinusoids setup; dbg=0; ppt=1; nxy = 512; Dap = 1e-2; wavelength = 1.0e-6; dxy = Dap*2/nxy; rzern = Dap/2; SF = 5.0; %far field scaling %scanning parameters rbucket = [ ]; zvec = ([1:1:10]); ampsfv = [0 0.01:0.02:0.5]; if (ppt) TitleSlidePowerPoint('Study of comparison of Strehl, Marechal, and Power in a Bucket'); xxx=whos; for ii=1:length(xxx); eval(sprintf('val=%s;',xxx(ii).name)); txt{ii} = sprintf('%s = %f',xxx(ii).name,val); TextToPowerPoint(txt,'Variables',12,16); clear xxx; clear txt; clear val; TextFileToPPT('MarechalStrehlPIBStudy_Sinusoids.m'); %calcualte ideals g=makegrid(nxy,dxy); E0 = aperture(nxy,dxy,dap/2); [Effi,dxout,xout,zff]=FarField(E0,dxy,wavelength,SF); rdl = 1.22 * zff * wavelength / Dap; [rv,ps,pseg]=powerinbucket(abs(effi).^2,dxout); PbIdeal = Ps./ max(ps); %RMS aperture ap = aperture(nxy,dxy,rzern,0,0,0,1); b=0; for ampsf=ampsfv; nf([ ]); b=b+1; rmsamp = wavelength * ampsf; c = 0; for ii=zvec; c=c+1; 5

6 Kx = 2.0*pi/(Dap/ii); z = sin(g.xx.* Kx).* sin(g.yy.*kx); %nf; show(z); return; %scale RMS z = z.* rmsamp./(nonzerorms(z.*ap)); E = E0.* exp(1j.*(2.0*pi/wavelength).*z); SR(b,c) = Strehl(E); [Eff,dxout,xout,zff]=FarField(E,dxy,wavelength,SF); rdl = 1.22 * zff * wavelength / Dap; %[P,Ps,x]=PIB(Eff,dxy); [rv,ps]=powerinbucket(abs(eff).^2,dxout); Pb = Ps./ max(ps); rb = rv./rdl; index(c)=ii; for jj=1:length(rbucket); [mv,mi(jj)]=min(abs(rb - rbucket(jj))); Pbs(jj,b,c) = Pb(mi(jj)); if (dbg) clf; subplot(2,2,1); show(abs(e)); drawnow; title(ii); subplot(2,2,2); show(z); drawnow; title('phase'); subplot(2,2,3); show(abs(eff)); drawnow; title('far-field Field'); subplot(2,2,4); plot(rb,pb); plot(rb,pbideal,'k--'); ax=axis; ax(2)=5; axis(ax); drawnow; title('pib'); pause(0.001); close gcf; nf; clear leg; for jj=1:size(pb,1); Pbv = Pbs(1,b,:); Pbv = Pbv(:); plot(index,pbv,getlinespec(jj)); leg{jj}=sprintf('r=%.1f',rbucket(jj)); plot(index,sr(b,:),'g^-'); leg{end+1}=sprintf('strehl'); plot(index,index.*0 + exp(-1* ((ampsf*2*pi).^2))) leg{end+1}=sprintf('marechal'); ax=axis; ax(3)=0; axis(ax); legend(leg); xlabel('zernike'); ylabel('value'); 6

7 %% display final results nf; plot(ampsfv,exp(-1*((ampsfv*2*pi).^2)),'k--*','linewidth',2); for ii=1:3; %size(pbs,3); Pbv = Pbs(1,:,ii); Pbv = Pbv(:); plot(ampsfv,pbv,getlinespec(ii)); plot(ampsfv,sr(:,ii),getlinespec(ii,'colorandmarker')); plot(ampsfv,exp(-1*((ampsfv*2*pi).^2)),'k--*','linewidth',2); xlabel('rms Amplitude (waves)'); ylabel('ampliutde'); legend('marechal','p Ratio','Strehl'); %% results by aberration shape nf([ ]); for ii=1:length(zvec); clf; subplot(1,2,1); Kx = 2.0*pi/(Dap/zVec(ii)); z = sin(g.xx.* Kx).* sin(g.yy.*kx); show(z.*ap); title(sprintf('cycles Per Aperture: %i',zvec(ii))); subplot(1,2,2); clear leg; for jj=1:length(rbucket); Pbv = Pbs(jj,:,ii); Pbv = Pbv(:); plot(ampsfv,pbv,getlinespec(jj)); leg{jj} = sprintf('r_b_u_c_k_e_t=%.1f',rbucket(jj)); plot(ampsfv,sr(:,ii),getlinespec(length(rbucket)+1)); leg{end+1}=sprintf('strehl Ratio'); plot(ampsfv,exp(-1*((ampsfv*2*pi).^2)),'k--','linewidth',2); leg{end+1}=sprintf('marechal Approx.'); legend(leg,'location','best'); drawnow; if (ppt) ToPPT(); 7

Using a Membrane DM to Generate Zernike Modes

Using a Membrane DM to Generate Zernike Modes Using a Membrane DM to Generate Zernike Modes Author: Justin D. Mansell, Ph.D. Active Optical Systems, LLC Revision: 12/23/08 Membrane DMs have been used quite extensively to impose a known phase onto

More information

Technical Note Turbulence/Optical Quick-Reference Table

Technical Note Turbulence/Optical Quick-Reference Table Quick Reference Table of Turbulence and Optical Relations and Equivalents Matthew R. Whiteley, Ph.D. MZA Associates Corporation, 36 Technology Court, Suite 937-684-4 x, Matthew.Whiteley@mza.com General

More information

Response of DIMM turbulence sensor

Response of DIMM turbulence sensor Response of DIMM turbulence sensor A. Tokovinin Version 1. December 20, 2006 [tdimm/doc/dimmsensor.tex] 1 Introduction Differential Image Motion Monitor (DIMM) is an instrument destined to measure optical

More information

Wavefront errors due to atmospheric turbulence Claire Max

Wavefront errors due to atmospheric turbulence Claire Max Wavefront errors due to atmospheric turbulence Claire Max Page 1 Kolmogorov turbulence, cartoon solar Outer scale L 0 Inner scale l 0 h Wind shear convection h ground Page Atmospheric Turbulence generally

More information

Design and Correction of optical Systems

Design and Correction of optical Systems Design and Correction of optical Systems Part 10: Performance criteria 1 Summer term 01 Herbert Gross Overview 1. Basics 01-04-18. Materials 01-04-5 3. Components 01-05-0 4. Paraxial optics 01-05-09 5.

More information

The Relationship between Inter-Actuator Throw and Resonance Frequency on Plate-Type Deformable Mirrors

The Relationship between Inter-Actuator Throw and Resonance Frequency on Plate-Type Deformable Mirrors AN0: Plate DM Relationship between Throw and Resonance The Relationship between Inter-Actuator Throw and Resonance Frequency on Plate-Type Deformable Mirrors AN0 Author: Justin Mansell, Ph.D. Revision:

More information

Adaptive Optics Lectures

Adaptive Optics Lectures Adaptive Optics Lectures 1. Atmospheric turbulence Andrei Tokovinin 1 Resources CTIO: www.ctio.noao.edu/~atokovin/tutorial/index.html CFHT AO tutorial: http://www.cfht.hawaii.edu/instruments/imaging/aob/other-aosystems.html

More information

A Single-Beam, Ponderomotive-Optical Trap for Energetic Free Electrons

A Single-Beam, Ponderomotive-Optical Trap for Energetic Free Electrons A Single-Beam, Ponderomotive-Optical Trap for Energetic Free Electrons Traditionally, there have been many advantages to using laser beams with Gaussian spatial profiles in the study of high-field atomic

More information

Physical Optics. Lecture 2: Diffraction Herbert Gross.

Physical Optics. Lecture 2: Diffraction Herbert Gross. Physical Optics Lecture : Diffraction 018-04-18 Herbert Gross www.iap.uni-jena.de Physical Optics: Content No Date Subject Ref Detailed Content 1 11.04. Wave optics G Complex fields, wave equation, k-vectors,

More information

Long- and short-term average intensity for multi-gaussian beam with a common axis in turbulence

Long- and short-term average intensity for multi-gaussian beam with a common axis in turbulence Chin. Phys. B Vol. 0, No. 1 011) 01407 Long- and short-term average intensity for multi-gaussian beam with a common axis in turbulence Chu Xiu-Xiang ) College of Sciences, Zhejiang Agriculture and Forestry

More information

Phys102 Lecture Diffraction of Light

Phys102 Lecture Diffraction of Light Phys102 Lecture 31-33 Diffraction of Light Key Points Diffraction by a Single Slit Diffraction in the Double-Slit Experiment Limits of Resolution Diffraction Grating and Spectroscopy Polarization References

More information

CHAPTER 1 INTRODUCTION TO ACOUSTIC SATURATION

CHAPTER 1 INTRODUCTION TO ACOUSTIC SATURATION CHAPTER 1 INTRODUCTION TO ACOUSTIC SATURATION Acoustic saturation states that as the input voltage to a focused ultrasonic transducer increases, there exists a limit of the acoustic pressure at the transducer

More information

Working with Zernike Polynomials

Working with Zernike Polynomials AN06 Working with Zernike Polynomials Author: Justin D. Mansell, Ph.D. Active Optical Systems, LLC Revision: 6/6/0 In this application note we are documenting some of the properties of Zernike polynomials

More information

Lens Design II. Lecture 1: Aberrations and optimization Herbert Gross. Winter term

Lens Design II. Lecture 1: Aberrations and optimization Herbert Gross. Winter term Lens Design II Lecture 1: Aberrations and optimization 18-1-17 Herbert Gross Winter term 18 www.iap.uni-jena.de Preliminary Schedule Lens Design II 18 1 17.1. Aberrations and optimization Repetition 4.1.

More information

Laser Optics-II. ME 677: Laser Material Processing Instructor: Ramesh Singh 1

Laser Optics-II. ME 677: Laser Material Processing Instructor: Ramesh Singh 1 Laser Optics-II 1 Outline Absorption Modes Irradiance Reflectivity/Absorption Absorption coefficient will vary with the same effects as the reflectivity For opaque materials: reflectivity = 1 - absorptivity

More information

Designing a Computer Generated Hologram for Testing an Aspheric Surface

Designing a Computer Generated Hologram for Testing an Aspheric Surface Nasrin Ghanbari OPTI 521 Graduate Report 2 Designing a Computer Generated Hologram for Testing an Aspheric Surface 1. Introduction Aspheric surfaces offer numerous advantages in designing optical systems.

More information

Wavefront Optics for Vision Correction

Wavefront Optics for Vision Correction Wavefront Optics for Vision Correction Guang-mingDai SPIE PRESS Bellingham, Washington USA Contents Preface Symbols, Notations, and Abbreviations xiii xv 1 Introduction 1 1.1 Wavefront Optics and Vision

More information

IMPROVING BEAM QUALITY NEW TELESCOPE ALIGNMENT PROCEDURE

IMPROVING BEAM QUALITY NEW TELESCOPE ALIGNMENT PROCEDURE IMPROVING BEAM QUALITY NEW TELESCOPE ALIGNMENT PROCEDURE by Laszlo Sturmann Fiber coupled combiners and visual band observations are more sensitive to telescope alignment problems than bulk combiners in

More information

Residual phase variance in partial correction: application to the estimate of the light intensity statistics

Residual phase variance in partial correction: application to the estimate of the light intensity statistics 3 J. Opt. Soc. Am. A/ Vol. 7, No. 7/ July 000 M. P. Cagigal and V. F. Canales Residual phase variance in partial correction: application to the estimate of the light intensity statistics Manuel P. Cagigal

More information

Spatial Light Modulator for wavefront correction 1. INTRODUCTION

Spatial Light Modulator for wavefront correction 1. INTRODUCTION Spatial Light Modulator for wavefront correction A. Vyas 1, 2, M. B. Roopashree 1, Ravinder Kumar Banyal 1, B Raghavendra Prasad 1 1 Indian Institute of Astrophysics, Bangalore-560034, India 2 Indian Institute

More information

Scintillation characteristics of cosh-gaussian beams

Scintillation characteristics of cosh-gaussian beams Scintillation characteristics of cosh-gaussian beams Halil T. Eyyuboǧlu and Yahya Baykal By using the generalized beam formulation, the scintillation index is derived and evaluated for cosh- Gaussian beams

More information

* AIT-4: Aberrations. Copyright 2006, Regents of University of California

* AIT-4: Aberrations. Copyright 2006, Regents of University of California Advanced Issues and Technology (AIT) Modules Purpose: Explain the top advanced issues and concepts in optical projection printing and electron-beam lithography. AIT-: LER and Chemically Amplified Resists

More information

A STUDY OF PYRAMID WFS BEHAVIOUR UNDER IMPERFECT ILLUMINATION

A STUDY OF PYRAMID WFS BEHAVIOUR UNDER IMPERFECT ILLUMINATION Florence, Italy. Adaptive May 2013 Optics for Extremely Large Telescopes III ISBN: 978-88-908876-0-4 DOI: 10.12839/AO4ELT3.13262 A STUDY OF PYRAMID WFS BEHAVIOUR UNDER IMPERFECT ILLUMINATION Valentina

More information

Recent progress in SR interferometer

Recent progress in SR interferometer Recent progress in SR interferometer -for small beam size measurement- T. Mitsuhashi, KEK Agenda 1. Brief introduction of beam size measurement through SR interferometry. 2. Theoretical resolution of interferometry

More information

Astronomical Seeing. Northeast Astro-Imaging Conference. Dr. Gaston Baudat Innovations Foresight, LLC. April 7 & 8, Innovations Foresight

Astronomical Seeing. Northeast Astro-Imaging Conference. Dr. Gaston Baudat Innovations Foresight, LLC. April 7 & 8, Innovations Foresight Astronomical Seeing Northeast Astro-Imaging Conference April 7 & 8, 2016 Dr. Gaston Baudat, LLC 1 Seeing Astronomical seeing is the blurring of astronomical objects caused by Earth's atmosphere turbulence

More information

Metamaterials & Plasmonics

Metamaterials & Plasmonics Metamaterials & Plasmonics Exploring the Impact of Rotating Rectangular Plasmonic Nano-hole Arrays on the Transmission Spectra and its Application as a Plasmonic Sensor. Abstract Plasmonic nano-structures

More information

Fourier Optics - Exam #1 Review

Fourier Optics - Exam #1 Review Fourier Optics - Exam #1 Review Ch. 2 2-D Linear Systems A. Fourier Transforms, theorems. - handout --> your note sheet B. Linear Systems C. Applications of above - sampled data and the DFT (supplement

More information

Sky Projected Shack-Hartmann Laser Guide Star

Sky Projected Shack-Hartmann Laser Guide Star Sky Projected Shack-Hartmann Laser Guide Star T. Butterley a, D.F. Buscher b, G. D. Love a, T.J. Morris a, R. M. Myers a and R. W. Wilson a a University of Durham, Dept. of Physics, Rochester Building,

More information

Chapter (5) Matter Waves

Chapter (5) Matter Waves Chapter (5) Matter Waves De Broglie wavelength Wave groups Consider a one- dimensional wave propagating in the positive x- direction with a phase speed v p. Where v p is the speed of a point of constant

More information

A Path to Freeform Optics. Kyle Fuerschbach University of Rochester Jannick Rolland University of Rochester Kevin Thompson Synopsys

A Path to Freeform Optics. Kyle Fuerschbach University of Rochester Jannick Rolland University of Rochester Kevin Thompson Synopsys A Path to Freeform Optics Kyle Fuerschbach University of Rochester Jannick Rolland University of Rochester Kevin Thompson Synopsys Role of Non-Symmetric/Freeform Surfaces in Optical Systems Design Packaging

More information

The Effects of Piston and Tilt Errors on. the Performance of Multiple Mirror Telescopes. R. R. Butts AIR FORCE WEAPONS LABORATORY

The Effects of Piston and Tilt Errors on. the Performance of Multiple Mirror Telescopes. R. R. Butts AIR FORCE WEAPONS LABORATORY T JL SLL 83-U-009 O > CO u The Effects of Piston and Tilt Errors on the Performance of Multiple Mirror Telescopes R. R. Butts AIR FORCE WEAPONS LABORATORY KIRTLAND AIR FORCE BASE, NEW MEXICO 87117 The

More information

Wavefront Correction of Model-based Sensorless Adaptive Optics System

Wavefront Correction of Model-based Sensorless Adaptive Optics System Wavefront Correction of Model-based Sensorless Adaptive Optics System Huizhen Yang 1*, Jian Wu 2 1. School of Electronic Engineering, Huaihai Institute of Technology, Lianyungang, China 222005; 2. School

More information

Step index planar waveguide

Step index planar waveguide N. Dubreuil S. Lebrun Exam without document Pocket calculator permitted Duration of the exam: 2 hours The exam takes the form of a multiple choice test. Annexes are given at the end of the text. **********************************************************************************

More information

Phase function encoding of diffractive structures

Phase function encoding of diffractive structures Phase function encoding of diffractive structures Andreas Schilling and Hans Peter Herzig We analyzed the direct sampling DS method for diffractive lens encoding, using exact electromagnetic diffraction

More information

21. Propagation of Gaussian beams

21. Propagation of Gaussian beams 1. Propagation of Gaussian beams How to propagate a Gaussian beam Rayleigh range and confocal parameter Transmission through a circular aperture Focusing a Gaussian beam Depth of field Gaussian beams and

More information

Shallow Water Equations

Shallow Water Equations Chapter 18 Shallow Water Equations The shallow water equations model tsunamis and waves in bathtubs. This chapter is more advanced mathematically than earlier chapters, but you might still find it interesting

More information

Lasers and Electro-optics

Lasers and Electro-optics Lasers and Electro-optics Second Edition CHRISTOPHER C. DAVIS University of Maryland III ^0 CAMBRIDGE UNIVERSITY PRESS Preface to the Second Edition page xv 1 Electromagnetic waves, light, and lasers 1

More information

Final Exam. PHY2049 Fall11

Final Exam. PHY2049 Fall11 Exam 1. Three charges form an equilateral triangle of side length d = 2 cm. The top charge is q3 = 3 μc, while the bottom two are q1 = q2 = - 6 μc. What is the magnitude of the net force acting on q3?

More information

Design and Correction of Optical Systems

Design and Correction of Optical Systems Design and Correction of Optical Systems Lecture 7: PSF and Optical transfer function 017-05-0 Herbert Gross Summer term 017 www.iap.uni-jena.de Preliminary Schedule - DCS 017 1 07.04. Basics 1.04. Materials

More information

Extension of High-Beta Plasma Operation to Low Collisional Regime

Extension of High-Beta Plasma Operation to Low Collisional Regime EX/4-4 Extension of High-Beta Plasma Operation to Low Collisional Regime Satoru Sakakibara On behalf of LHD Experiment Group National Institute for Fusion Science SOKENDAI (The Graduate University for

More information

Zernike Polynomials and Beyond

Zernike Polynomials and Beyond Zernike Polynomials and Beyond "Introduction to Aberrations" ExP x W S O OA R P(x g, ) P z y zg Virendra N. Mahajan The Aerospace Corporation Adjunct Professor El Segundo, California 945 College of Optical

More information

Lecture 9: Introduction to Diffraction of Light

Lecture 9: Introduction to Diffraction of Light Lecture 9: Introduction to Diffraction of Light Lecture aims to explain: 1. Diffraction of waves in everyday life and applications 2. Interference of two one dimensional electromagnetic waves 3. Typical

More information

3.5 Cavities Cavity modes and ABCD-matrix analysis 206 CHAPTER 3. ULTRASHORT SOURCES I - FUNDAMENTALS

3.5 Cavities Cavity modes and ABCD-matrix analysis 206 CHAPTER 3. ULTRASHORT SOURCES I - FUNDAMENTALS 206 CHAPTER 3. ULTRASHORT SOURCES I - FUNDAMENTALS which is a special case of Eq. (3.30. Note that this treatment of dispersion is equivalent to solving the differential equation (1.94 for an incremental

More information

Efficient sorting of orbital angular momentum states of light

Efficient sorting of orbital angular momentum states of light CHAPTER 6 Efficient sorting of orbital angular momentum states of light We present a method to efficiently sort orbital angular momentum (OAM) states of light using two static optical elements. The optical

More information

Closed Loop Transfer Functions

Closed Loop Transfer Functions Closed Loop Transfer Functions The following script illustrates and demonstrates key control concepts discussed in class on Feb 21 and Feb 23rd. Use these notes to understand how to specify transfer functions

More information

Supporting Information

Supporting Information Supporting Information Devlin et al. 10.1073/pnas.1611740113 Optical Characterization We deposit blanket TiO films via ALD onto silicon substrates to prepare samples for spectroscopic ellipsometry (SE)

More information

The science of light. P. Ewart

The science of light. P. Ewart The science of light P. Ewart Oxford Physics: Second Year, Optics Parallel reflecting surfaces t images source Extended source path difference xcos 2t=x Fringes localized at infinity Circular fringe constant

More information

AMPLITUDE FLUCTUATIONS IN CURVATURE SENSING: COMPARISON OF TWO SCHEMES

AMPLITUDE FLUCTUATIONS IN CURVATURE SENSING: COMPARISON OF TWO SCHEMES Revista Mexicana de Astronomía y Astrofísica, 46, 145 152 (2010) AMPLITUDE FLUCTUATIONS IN CURVATURE SENSING: COMPARISON OF TWO SCHEMES V. V. Voitsekhovich and V. G. Orlov Instituto de Astronomía, Universidad

More information

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL

EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE -213 BASIC CIRCUIT ANALYSIS LAB MANUAL EE 213 Fall 2009 LABORATORY #1 INTRODUCTION TO MATLAB INTRODUCTION The purpose of this laboratory is to introduce you to Matlab and to illustrate some of its circuit

More information

Imaging Metrics. Frequency response Coherent systems Incoherent systems MTF OTF Strehl ratio Other Zemax Metrics. ECE 5616 Curtis

Imaging Metrics. Frequency response Coherent systems Incoherent systems MTF OTF Strehl ratio Other Zemax Metrics. ECE 5616 Curtis Imaging Metrics Frequenc response Coherent sstems Incoherent sstems MTF OTF Strehl ratio Other Zema Metrics Where we are going with this Use linear sstems concept of transfer function to characterize sstem

More information

Dept. of Physics, MIT Manipal 1

Dept. of Physics, MIT Manipal 1 Chapter 1: Optics 1. In the phenomenon of interference, there is A Annihilation of light energy B Addition of energy C Redistribution energy D Creation of energy 2. Interference fringes are obtained using

More information

Spectral Degree of Coherence of a Random Three- Dimensional Electromagnetic Field

Spectral Degree of Coherence of a Random Three- Dimensional Electromagnetic Field University of Miami Scholarly Repository Physics Articles and Papers Physics 1-1-004 Spectral Degree of Coherence of a Random Three- Dimensional Electromagnetic Field Olga Korotkova University of Miami,

More information

Sky demonstration of potential for ground layer adaptive optics correction

Sky demonstration of potential for ground layer adaptive optics correction Sky demonstration of potential for ground layer adaptive optics correction Christoph J. Baranec, Michael Lloyd-Hart, Johanan L. Codona, N. Mark Milton Center for Astronomical Adaptive Optics, Steward Observatory,

More information

Breakup of Ring Beams Carrying Orbital Angular Momentum in Sodium Vapor

Breakup of Ring Beams Carrying Orbital Angular Momentum in Sodium Vapor Breakup of Ring Beams Carrying Orbital Angular Momentum in Sodium Vapor Petros Zerom, Matthew S. Bigelow and Robert W. Boyd The Institute of Optics, University of Rochester, Rochester, New York 14627 Now

More information

Opto-Mechanical I/F for ANSYS

Opto-Mechanical I/F for ANSYS Opto-Mechanical I/F for ANSYS Victor Genberg, Gregory Michels, Keith Doyle Sigmadyne, Inc. Abstract Thermal and structural output from ANSYS is not in a form useful for optical analysis software. Temperatures,

More information

Lecture 11: Introduction to diffraction of light

Lecture 11: Introduction to diffraction of light Lecture 11: Introduction to diffraction of light Diffraction of waves in everyday life and applications Diffraction in everyday life Diffraction in applications Spectroscopy: physics, chemistry, medicine,

More information

Probing the orbital angular momentum of light with a multipoint interferometer

Probing the orbital angular momentum of light with a multipoint interferometer CHAPTER 2 Probing the orbital angular momentum of light with a multipoint interferometer We present an efficient method for probing the orbital angular momentum of optical vortices of arbitrary sizes.

More information

1 Introduction to POPPY and WebbPSF

1 Introduction to POPPY and WebbPSF WFIRST Technical Report Doc #: WFIRST-STScI-TR1703 Rev: A Date: October 4, 2017 WebbPSF for WFIRST Joseph Long, Marshall Perrin Space Telescope Science Institute, Baltimore, Maryland Abstract: WebbPSF

More information

MANIPAL INSTITUTE OF TECHNOLOGY

MANIPAL INSTITUTE OF TECHNOLOGY SCHEME OF EVAUATION MANIPA INSTITUTE OF TECHNOOGY MANIPA UNIVERSITY, MANIPA SECOND SEMESTER B.Tech. END-SEMESTER EXAMINATION - MAY SUBJECT: ENGINEERING PHYSICS (PHY/) Time: 3 Hrs. Max. Marks: 5 Note: Answer

More information

Capacitive Pick-Up Type DB 040

Capacitive Pick-Up Type DB 040 Capacitive Pick-Up Type DB 040 Tel: (609) 924-3011 Fax (609) 924-3018 www.princetonscientific.com Email: info@princetonscientific.com CAPACITIVE PICK-UP PROBE TYPE DB 040 Application: The capacitive pick-up

More information

In-Flight Retrieval of Reflector Anomalies for the Planck Space Telescope

In-Flight Retrieval of Reflector Anomalies for the Planck Space Telescope Presented at The 4 th European Conference on Antennas and Propagation (EuCAP 2010), Barcelona, Spain, 12-16 April 2010. In-Flight Retrieval of Reflector Anomalies for the Planck Space Telescope Frank Jensen*,

More information

MCAO for the European Solar Telescope: first results

MCAO for the European Solar Telescope: first results MCAO for the European Solar Telescope: first results Marco Stangalini Roberto Piazzesi Dario Del Moro Francesco Berrilli Alberto Egidi Università di Roma Tor Vergata www.fisica.uniroma2.it/solare EST EST

More information

f = Xw + b, We can compute the total square error of the function values above, compared to the observed training set values:

f = Xw + b, We can compute the total square error of the function values above, compared to the observed training set values: Linear regression Much of machine learning is about fitting functions to data. That may not sound like an exciting activity that will give us artificial intelligence. However, representing and fitting

More information

Introduction to aberrations OPTI518 Lecture 5

Introduction to aberrations OPTI518 Lecture 5 Introduction to aberrations OPTI518 Lecture 5 Second-order terms 1 Second-order terms W H W W H W H W, cos 2 2 000 200 111 020 Piston Change of image location Change of magnification 2 Reference for OPD

More information

Orthonormal vector polynomials in a unit circle, Part I: basis set derived from gradients of Zernike polynomials

Orthonormal vector polynomials in a unit circle, Part I: basis set derived from gradients of Zernike polynomials Orthonormal vector polynomials in a unit circle, Part I: basis set derived from gradients of ernike polynomials Chunyu hao and James H. Burge College of Optical ciences, the University of Arizona 630 E.

More information

The interference of waves

The interference of waves The interference of waves In physics, interference is the addition (superposition) of two or more waves that results in a new wave pattern. The displacements of the waves add algebraically. Consider two

More information

Error Budgets, and Introduction to Class Projects. Lecture 6, ASTR 289

Error Budgets, and Introduction to Class Projects. Lecture 6, ASTR 289 Error Budgets, and Introduction to Class Projects Lecture 6, ASTR 89 Claire Max UC Santa Cruz January 8, 016 Page 1 What is residual wavefront error? Telescope AO System Science Instrument Very distorted

More information

Chapter 6 SCALAR DIFFRACTION THEORY

Chapter 6 SCALAR DIFFRACTION THEORY Chapter 6 SCALAR DIFFRACTION THEORY [Reading assignment: Hect 0..4-0..6,0..8,.3.3] Scalar Electromagnetic theory: monochromatic wave P : position t : time : optical frequency u(p, t) represents the E or

More information

Lab 2: Static Response, Cantilevered Beam

Lab 2: Static Response, Cantilevered Beam Contents 1 Lab 2: Static Response, Cantilevered Beam 3 1.1 Objectives.......................................... 3 1.2 Scalars, Vectors and Matrices (Allen Downey)...................... 3 1.2.1 Attribution.....................................

More information

31. Diffraction: a few important illustrations

31. Diffraction: a few important illustrations 31. Diffraction: a few important illustrations Babinet s Principle Diffraction gratings X-ray diffraction: Bragg scattering and crystal structures A lens transforms a Fresnel diffraction problem into a

More information

AOL Spring Wavefront Sensing. Figure 1: Principle of operation of the Shack-Hartmann wavefront sensor

AOL Spring Wavefront Sensing. Figure 1: Principle of operation of the Shack-Hartmann wavefront sensor AOL Spring Wavefront Sensing The Shack Hartmann Wavefront Sensor system provides accurate, high-speed measurements of the wavefront shape and intensity distribution of beams by analyzing the location and

More information

Optical Feasibility Study on a 4-layer Cover-Incident Near-Field Recording System

Optical Feasibility Study on a 4-layer Cover-Incident Near-Field Recording System Optical Feasibility Study on a 4-layer Cover-Incident Near-Field Recording System J.M.A. van den Eerenbeemd *, F. Zijp, S. Stallinga Philips Research Laboratories, High Tech Campus 34, 5656 AE Eindhoven,

More information

Name: Date: Final Exam

Name: Date: Final Exam Name: Date: Final Exam Physics 2306 Fall 2012 FORM A BEFORE YOU BEGIN: 1. Fill in CORRECTLY your ID number in the Scantron, as well as which FORM of the test you have. 2. Write in the course number (2306)

More information

Active optics challenges of a thirty meter segmented mirror telescope

Active optics challenges of a thirty meter segmented mirror telescope Active optics challenges of a thirty meter segmented mirror telescope George Z. Angeli 1, Robert Upton 1, Anna Segurson 1, Brent Ellerbroek 1 1 New Initiatives Office, AURA Inc. ABSTRACT Ground-based telescopes

More information

Demonstration of a Novel Equation for the Near Field Distance Calculation for Annular Phased Array Transducers

Demonstration of a Novel Equation for the Near Field Distance Calculation for Annular Phased Array Transducers Demonstration of a Novel Equation for the Near Field Distance Calculation for Annular Phased Array Transducers Georgios LIAPTSIS 1, Dimosthenis LIAPTSIS 2, Peter CHARLTON 1 1 Faculty of Applied Design

More information

Computing loop gains and closed-loop transfer functions

Computing loop gains and closed-loop transfer functions Computing loop gains and closed-loop transfer functions Joao Pedro Gomes and Joao Miranda Lemos, December 2016 These notes discuss how to compute loop transfer functions and closed-loop transfer functions

More information

Pupil matching of Zernike aberrations

Pupil matching of Zernike aberrations Pupil matching of Zernike aberrations C. E. Leroux, A. Tzschachmann, and J. C. Dainty Applied Optics Group, School of Physics, National University of Ireland, Galway charleleroux@yahoo.fr Abstract: The

More information

Crash Course on Optics I & II. COST Action IC1101 OPTICWISE 4 th Training School

Crash Course on Optics I & II. COST Action IC1101 OPTICWISE 4 th Training School Crash Course on Optics I & II COST Action IC1101 OPTICWISE 4 th Training School Introductory Concepts Fermat s principle Snell s law Total internal refraction Dispersion Aberrations Interference and Diffraction

More information

Beam Scan Properties of Nonparabolic Reflectors. P.J. N a p ie r National Radio Astronomy Observatory, Socorro, New Mexico 87801

Beam Scan Properties of Nonparabolic Reflectors. P.J. N a p ie r National Radio Astronomy Observatory, Socorro, New Mexico 87801 NLSRT Memo No.. / / ' /ft Beam Scan Properties of Nonparabolic Reflectors P.J. N a p ie r National Radio Astronomy Observatory, Socorro, New Mexico 87801 Abstract. Nonparabolic reflector systems such as

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics: Final Exam Review Session Problems Solutions

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics: Final Exam Review Session Problems Solutions Department of Physics: 8 Problem 1: Spherical Capacitor 8 Final Exam Review Session Problems Solutions A capacitor consists of two concentric spherical shells The outer radius of the inner shell is a =

More information

3D Laser Pulse Shaping for the Cornell ERL Photoinjector. August 9 th, 2012 Sierra Cook Advisors: Adam Bartnik, Ivan Bazarov, Jared Maxson

3D Laser Pulse Shaping for the Cornell ERL Photoinjector. August 9 th, 2012 Sierra Cook Advisors: Adam Bartnik, Ivan Bazarov, Jared Maxson 3D Laser Pulse Shaping for the Cornell ERL Photoinjector August 9 th, 2012 Sierra Cook Advisors: Adam Bartnik, Ivan Bazarov, Jared Maxson Energy Recovery Linac (ERL) Accelerating Bunch Decelerating Bunch

More information

Imaging Geo-synchronous Satellites with the AEOS Telescope

Imaging Geo-synchronous Satellites with the AEOS Telescope Imaging Geo-synchronous Satellites with the AEOS Telescope Douglas A. Hope 1, Stuart M. Jefferies 1,2 and Cindy Giebink 1 1 Institute for Astronomy, University of Hawaii, Advanced Technology Research Center

More information

Nonparaxial analysis of continuous self-imaging gratings in oblique illumination

Nonparaxial analysis of continuous self-imaging gratings in oblique illumination Druart et al. Vol. 4, No. 0/October 007/J. Opt. Soc. Am. A 3379 Nonparaxial analysis of continuous self-imaging gratings in oblique illumination Guillaume Druart,, * Nicolas Guérineau, Riad Haïdar, Jérôme

More information

Physical Optics. Lecture 7: Coherence Herbert Gross.

Physical Optics. Lecture 7: Coherence Herbert Gross. Physical Optics Lecture 7: Coherence 07-05-7 Herbert Gross www.iap.uni-jena.de Physical Optics: Content No Date Subject Ref Detailed Content 05.04. Wave optics G Complex fields, wave equation, k-vectors,

More information

Wavefront Sensing using Polarization Shearing Interferometer. A report on the work done for my Ph.D. J.P.Lancelot

Wavefront Sensing using Polarization Shearing Interferometer. A report on the work done for my Ph.D. J.P.Lancelot Wavefront Sensing using Polarization Shearing Interferometer A report on the work done for my Ph.D J.P.Lancelot CONTENTS 1. Introduction 2. Imaging Through Atmospheric turbulence 2.1 The statistics of

More information

Holography and Optical Vortices

Holography and Optical Vortices WJP, PHY381 (2011) Wabash Journal of Physics v3.3, p.1 Holography and Optical Vortices Z. J. Rohrbach, J. M. Soller, and M. J. Madsen Department of Physics, Wabash College, Crawfordsville, IN 47933 (Dated:

More information

AP5301/ Name the major parts of an optical microscope and state their functions.

AP5301/ Name the major parts of an optical microscope and state their functions. Review Problems on Optical Microscopy AP5301/8301-2015 1. Name the major parts of an optical microscope and state their functions. 2. Compare the focal lengths of two glass converging lenses, one with

More information

CHARA Meeting 2017 Pasadena, California

CHARA Meeting 2017 Pasadena, California MORE AUTOMATION Laszlo Sturmann M7 ACTUATORS LAB. LASER ALIGNMENT TELESCOPE OPTICAL ALIGNMENT NEW ACTUATORS REMOTELY ACTUATED M7 MOUNT MOTIVATION THE PRECISION OF THE COUDE ALIGNMENT WAS NOT SUFFICIENT

More information

Problem Set 4 Solution 1

Problem Set 4 Solution 1 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.245: MULTIVARIABLE CONTROL SYSTEMS by A. Megretski Problem Set 4 Solution Problem 4. For the SISO feedback

More information

Strehl ratio and optimum focus of high-numerical-aperture beams

Strehl ratio and optimum focus of high-numerical-aperture beams Strehl ratio and optimum focus of high-numerical-aperture beams Augustus J.E.M. Janssen a, Sven van Haver b, Joseph J.M. Braat b, Peter Dirksen a a Philips Research Europe, HTC 36 / 4, NL-5656 AE Eindhoven,

More information

Offset Spheroidal Mirrors for Gaussian Beam Optics in ZEMAX

Offset Spheroidal Mirrors for Gaussian Beam Optics in ZEMAX Offset Spheroidal Mirrors for Gaussian Beam Optics in ZEMAX Antony A. Stark and Urs Graf Smithsonian Astrophysical Observatory, University of Cologne aas@cfa.harvard.edu 1 October 2013 This memorandum

More information

EE485 Introduction to Photonics

EE485 Introduction to Photonics Pattern formed by fluorescence of quantum dots EE485 Introduction to Photonics Photon and Laser Basics 1. Photon properties 2. Laser basics 3. Characteristics of laser beams Reading: Pedrotti 3, Sec. 1.2,

More information

ANTENNA AND WAVE PROPAGATION

ANTENNA AND WAVE PROPAGATION ANTENNA AND WAVE PROPAGATION Electromagnetic Waves and Their Propagation Through the Atmosphere ELECTRIC FIELD An Electric field exists in the presence of a charged body ELECTRIC FIELD INTENSITY (E) A

More information

PACS Wavelength Switching AOT release note

PACS Wavelength Switching AOT release note PACS Wavelength Switching AOT release note 1 Prepared by the PACS ICC 20 January 2010 Wavelength switching release note version of 03-dec-2009 updated with full dynamic range saturation limits. Differences

More information

DOING PHYSICS WITH MATLAB DIFFRACTION PHYSICS WAVE PARTICLE DUALITY

DOING PHYSICS WITH MATLAB DIFFRACTION PHYSICS WAVE PARTICLE DUALITY DOING PHYSICS WITH MATLAB DIFFRACTION PHYSICS WAVE PARTICLE DUALITY Ian Cooper School of Physics, University of Sydney ian.cooper@sydney.edu.au DOWNLOAD DIRECTORY FOR MATLAB SCRIPTS diffraction_1slit.m

More information

Supporting Online Material for

Supporting Online Material for www.sciencemag.org/cgi/content/full/326/5955/974/dc1 Supporting Online Material for Observation of Half-Quantum Vortices in an Exciton-Polariton Condensate K. G. Lagoudakis,* T. Ostatnický, A. V. Kavokin,

More information

LC circuit: Energy stored. This lecture reviews some but not all of the material that will be on the final exam that covers in Chapters

LC circuit: Energy stored. This lecture reviews some but not all of the material that will be on the final exam that covers in Chapters Disclaimer: Chapter 29 Alternating-Current Circuits (1) This lecture reviews some but not all of the material that will be on the final exam that covers in Chapters 29-33. LC circuit: Energy stored LC

More information

Optical Interface for MSC.Nastran

Optical Interface for MSC.Nastran Optical Interface for MSC.Nastran Victor Genberg, Keith Doyle, Gregory Michels Sigmadyne, Inc., 803 West Ave, Rochester, NY 14611 genberg@sigmadyne.com Abstract Thermal and structural output from MSC.Nastran

More information

DOING PHYSICS WITH MATLAB QUANTUM MECHANICS WAVE PARTICLE DUALITIY

DOING PHYSICS WITH MATLAB QUANTUM MECHANICS WAVE PARTICLE DUALITIY DOING PHYSICS WITH MATLAB QUANTUM MECHANICS WAVE PARTICLE DUALITIY Ian Cooper School of Physics, University of Sydney ian.cooper@sydney.edu.au MATLAB SCRIPTS Goto the directory containing the Quantum Mechanics

More information

DIFFRACTION PHYSICS THIRD REVISED EDITION JOHN M. COWLEY. Regents' Professor enzeritus Arizona State University

DIFFRACTION PHYSICS THIRD REVISED EDITION JOHN M. COWLEY. Regents' Professor enzeritus Arizona State University DIFFRACTION PHYSICS THIRD REVISED EDITION JOHN M. COWLEY Regents' Professor enzeritus Arizona State University 1995 ELSEVIER Amsterdam Lausanne New York Oxford Shannon Tokyo CONTENTS Preface to the first

More information