Optical Design with Zemax for PhD - Advanced

Size: px
Start display at page:

Download "Optical Design with Zemax for PhD - Advanced"

Transcription

1 Optical Design with Zemax for PhD - Advanced Seminar 9 : Advanced Topics Herbert Gross Winter term

2 2 Preliminary Schedule No Date Subject Detailed content Repetition Correction, handling, multi-configuration Illumination I Simple illumination problems Illumination II Non-sequential raytrace Physical modeling I Gaussian beams, physical propagation Physical modeling II Polarization Physical modeling III Coatings Physical modeling IV Scattering Tolerancing I Sensitivity, practical procedure Tolerancing II Adjustment, thermal loading, ghosts Additional topics Adaptive optics, stock lens matching, index fit, Macro language, coupling Zemax-Matlab

3 3 Content 1. Index fit 2. Stock lens matching 3. Macro programming 4. Coupling Zemax-Matlab 5. Misc

4 Glasses in Zemax For optimization Definition of a glass as a variable point in the glass map model glass Establish own glass catalogs with additional glasses preferred choices as an individual library Ref.: B. Böhme 4

5 Material Index Fit choice of 4 dispersion formula after fit: - pv and rms of approximation visible - no individual errors seen check results for suitable accuracy, especially at wavelengths and temperatures with sparse input data and at intervall edges add to catalog enter additional data Save catalog Ref.: B. Böhme 5

6 6 Material Index Fit Establishing a special own material Select menue: Tools / Catalogs / Glass catalogs Options: 1. Fit index data 2. Fit melt data Input of data for wavelengths and indices It is possible to establish own material catalogs with additional glasses as an individual library

7 7 Material Index Fit Melt data: - for small differences of real materials - no advantage for new materials Menue option: Glass Fitting Tool don t works (data input?)

8 8 Material Index Fit Menue: Fit Index Data Input of data: 2 options: 1. explicite entering wavelengths and indices 2. load file xxx.dat with two columns: wavelength in mm and index Choice of 4 different dispersion formulas After fit: - pv and rms of approximation visible - no individual errors seen - new material can be added to catalog - data input can be saved to file

9 Stock Lens Matching This tool swaps out lenses in a design to the nearest equivalent candidate out of a vendor catalogue It works together with the merit function requirements (with constraints) Aspheric, GRIN and toroidal surfaces not supported; only spherical Works for single lenses and achromates Compensation due to thickness adjustments is optional Reverting a lens to optimize (?) Top results are listed Combination of best single lens substitutions is possible. Overall optimization with nonlinear interaction? Ref.: D. Lokanathan

10 Stock Lens Matching Selectioin of some vendors by CNTR SHIFT marking Ref.: D. Lokanathan

11 Stock Lens Matching Output Ref.: D. Lokanathan

12 12 Macro Language There is a macro language for Zemax to allow for individual problem solving Some provided example files are distributed Editing and running can be done from Zemax interface Necessary: xxx.zmx-file Debugging of macro-language errors is cumbersome Not all of the output data is provided by the commands Coding of parameters is in many cases a bit tricky Graphical options rather limited Possibilities: 1. special and individual analysis 2. change of system data and case studies 3. optimization 4. print export of data

13 13 Macro Language Code Example: Incidence angles at all surfaces for 3 field positions Online output

14 14 Important Macro Commands comment line follows variables, declarations, simple operations, strings, basic mathematical functions IF THEN ELSE, GOTO, LABEL, FOR NEXT a = AQVAL() numerical aperture ro = CURV(j) surface curvature of surface no. j y = FLDY(j) field size no. j u = RAYL(j) direction cosine of real ray at surface no. j y = RAYY(j) y-value of real ray at surface no. j t = THIC(j) thickness at surface j PRINT text, x,y print text FORMAT 5.3 numerical format of output: 5 places, 3 digits OUTPUT fname.txt declaration of output file for results GETSYSTEMDATA n get special coded (n) data of the system GETZERNIKE maxorder, wave, field, sampling, vector, zerntype, epsilon, reference PWAV n set primary wavelength RAYTRACE hx, hy, px, py, wavelength SURP surface, code, value1, value2 set surface properties SYSP code, value1, value2 set system properties

15 15 Macro Example 1 Calculate Focal lengths of all lenses get number of surfaces Ns Ns = nsur() declare N, double, 1, Ns+1 get refractive indices FOR j = 1,Ns+1,1 N(j) = indx(j-1) next number of lenses Nl = 0 for j=1,ns+1,1 if ( N(j) > 1 ) then Nl = Nl + 1 next header line: number of surfaces and glasses print " " format 2.0 print "lenses ",Nl focal lengths print "focal lengths " print " " print result k=0 for j = 1,Ns-1,1 if ( N(j) == 1 ) then goto 1 k = k+1 c1 = curv(j-1) c2 = curv(j) t = thic(j-1) ni = N(j) F = (ni-1)*(c1-c2) + (ni-1)*(ni-1)/ni*t*c1*c2 foc = 0 if (F = 0) then foc = 1/F format 2.0 print "L ",k," (",j-1,"-",j,") f = ", format 10.4 print foc label 1 next

16 16 Macro Example 2 Calculate telecentricity error sampling number over field nfield = 21 Set primary wavelength jwave = pwav() define considered field index jfield = 2 save old field heigth hyold = FLDY(jfield) calculate field increment dw = 1/(nfield-1) fix ray data in pupil and x-field hx = 0 px = 0 py = 0 define surface of evaluation n = nsur() header line print " w-rel w-abs ws" raytrace of chief rays for all field heights and print results FOR j = 1,nfield,1 hy = (j-1) * dw hyabs = (j-1) * dw * hyold SYSP 103, jfield, hy update raytrace hx, hy, px, py, jwave delw = raym(n) FORMAT 10.5 PRINT hy, hyabs, delw NEXT recover data SYSP 103, jfield, hyold

17 17 Macro Example 3 Calculate absolute size of Zernike for astigmatism and coma Optional Output-File OUTPUT "c:\gross\new\zernvswave.txt" Number of points in the wavelength grid jfield = 2 jwave = 1 1 = 32, 2 = 64 Sampling Pupille sampl = 2 maxzern = 9 Set primary wavelength wold = wavl(1) calculate Zernikes GETZERNIKE maxzern,jwave, 1,sampl,1, 0 ast = sqrt( vec1(8+5)*vec1(8+5) + vec1(8+6)*vec1(8+6) ) coma = sqrt( vec1(8+7)*vec1(8+7) + vec1(8+8)*vec1(8+8) ) print result print " " FORMAT 10.5 PRINT "astig : ", ast print "coma : ", coma

18 18 Matlab Coupling with MZDDE Calling Zemax as Raytrace-engine from Matlab Freeware MZDDE (Mathworks File Exchange) allows coupling of Matlab with Zemax Zemax DDE server toolbox Zemax must be opened Debugging is complicated Problems with timeout, refreshing and updating of data, especially under 64 bit windows

19 19 Matlab Coupling with MZDDE Collection of Matlab-routines zset, zget,... Well documented library of routines

20 20 DLL Links User defined surfaces are possible A routine written in C or C++ must be provided as DLL By linking the DLL, the raytrace can be performed through user defined surfaces Debugging of wrong DLL s is cumbersome, there is limited support from the hotline Runtime is quite fast Best way to establish a DLL due to the specific interface: modify a provided C-source-routine

Optical Design with Zemax for PhD - Basics

Optical Design with Zemax for PhD - Basics Optical Design with Zemax for PhD - Basics Lecture 8: Advanced handling 2013-06-27 Herbert Gross Summer term 2013 www.iap.uni-jena.de 2 Preliminary Schedule No Date Subject Detailed content 1 02.05. Introduction

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 10: Advanced handling 2013-06-28 Herbert Gross Summer term 2013 www.iap.uni-jena.de 2 Preliminary Schedule 1 12.04. Introduction 2 19.04. Properties of optical systems

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 9: Advanced handling 2014-06-13 Herbert Gross Sommer term 2014 www.iap.uni-jena.de 2 Preliminary Schedule 1 11.04. Introduction 2 25.04. Properties of optical systems

More information

Optical Design with Zemax for PhD

Optical Design with Zemax for PhD Optical Design with Zemax for PhD Lecture 8: Advanced handling 2016-01-27 Herbert Gross Winter term 2015 www.iap.uni-jena.de 2 Preliminary Schedule No Date Subject Detailed content 1 11.11. Introduction

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 10: Advanced handling II 2014-06-20 Herbert Gross Sommer term 2014 www.iap.uni-jena.de 2 Preliminary Schedule 1 11.04. Introduction 2 25.04. Properties of optical systems

More information

Tutorial Zemax 6: Advanced handling

Tutorial Zemax 6: Advanced handling Tutorial Zemax 6: Advanced handling 2012-09-25 6 Advanced handling 1 6.1 Multi configuration, universal plot and slider... 1 6.2 Macro for Spot Moments... 6 6.3 Multiconfiguration and folding mirror...

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 7: Optimization I 2012-12-11 Herbert Gross Winter term 2012 www.iap.uni-jena.de Time schedule 2 1 16.10. Introduction Introduction, Zemax interface, menues, file handling,

More information

Lens Design I. Lecture 1: Basics Herbert Gross. Summer term

Lens Design I. Lecture 1: Basics Herbert Gross. Summer term Lens Design I Lecture 1: Basics 2015-04-04 Herbert Gross Summer term 2016 www.iap.uni-jena.de 2 Preliminary Schedule 1 04.04. Basics 2 11.04. Properties of optical systems I 3 18.04. 4 25.04. Properties

More information

Optical Design with Zemax for PhD

Optical Design with Zemax for PhD Optical Design with Zemax for PhD Lecture 6: Optimization I 2016-01-06 Herbert Gross Winter term 2015 www.iap.uni-jena.de 2 Preliminary Schedule No Date Subject Detailed content 1 11.11. Introduction 2

More information

Advanced Lens Design

Advanced Lens Design Advanced Lens Design Lecture 3: Optimization II 2013-10-29 Herbert Gross Winter term 2013 www.iap.uni-jena.de 2 Preliminary Schedule 1 15.10. Introduction Paraxial optics, ideal lenses, optical systems,

More information

Lens Design I. Lecture 3: Properties of optical systems II Herbert Gross. Summer term

Lens Design I. Lecture 3: Properties of optical systems II Herbert Gross. Summer term Lens Design I Lecture 3: Properties of optical systems II 205-04-27 Herbert Gross Summer term 205 www.iap.uni-jena.de 2 Preliminary Schedule 3.04. Basics 2 20.04. Properties of optical systems I 3 27.05.

More information

Lens Design I. Lecture 4: Properties of optical systems III Herbert Gross. Summer term

Lens Design I. Lecture 4: Properties of optical systems III Herbert Gross. Summer term Lens Design I Lecture 4: Properties of optical systems III 018-05-03 Herbert Gross Summer term 018 www.iap.uni-jena.de Preliminary Schedule - Lens Design I 018 1 1.04. Basics 19.04. Properties of optical

More information

Lens Design I. Lecture 9: OptimizationI Herbert Gross. Summer term

Lens Design I. Lecture 9: OptimizationI Herbert Gross. Summer term Lens Design I Lecture 9: OptimizationI 2015-06-15 Herbert Gross Summer term 2015 www.iap.uni-jena.de 2 Preliminary Schedule 1 13.04. Basics 2 20.04. Properties of optical systrems I 3 27.05. 4 04.05. Properties

More information

Optical Design with Zemax for PhD

Optical Design with Zemax for PhD Optical Design with Zemax for PhD Lecture : Physical Optics 06-03-3 Herbert Gross Winter term 05 www.iap.uni-jena.de Preliminary Schedule No Date Subject Detailed content.. Introduction 0.. Basic Zemax

More information

Feature Map. Work the way you want, faster, easier... with the same Zemax reliability. RIBBONS / EDITORS

Feature Map. Work the way you want, faster, easier... with the same Zemax reliability. RIBBONS / EDITORS Feature Map Feature Map Work the way you want, faster, easier... with the same Zemax reliability. Zemax brings a new level of productivity to optics simulation software with OpticStudio14. Built on Zemax

More information

Lens Design I. Lecture 11: Imaging Herbert Gross. Summer term

Lens Design I. Lecture 11: Imaging Herbert Gross. Summer term Lens Design I Lecture 11: Imaging 2015-06-29 Herbert Gross Summer term 2015 www.iap.uni-jena.de 2 Preliminary Schedule 1 13.04. Basics 2 20.04. Properties of optical systrems I 3 27.05. 4 04.05. Properties

More information

Lens Design I. Lecture 2: Properties of optical systems I Herbert Gross. Summer term

Lens Design I. Lecture 2: Properties of optical systems I Herbert Gross. Summer term Lens Design I Lecture 2: Properties of optical systems I 2018-04-19 Herbert Gross Summer term 2018 www.iap.uni-jena.de 2 Preliminary Schedule - Lens Design I 2018 1 12.04. Basics 2 19.04. Properties of

More information

Lens Design I. Lecture 2: Properties of optical systems I Herbert Gross. Summer term

Lens Design I. Lecture 2: Properties of optical systems I Herbert Gross. Summer term Lens Design I Lecture 2: Properties of optical systems I 2015-04-20 Herbert Gross Summer term 2015 www.iap.uni-jena.de 2 Preliminary Schedule 1 13.04. Basics 2 20.04. Properties of optical systems I 3

More information

Advanced Lens Design

Advanced Lens Design Advanced Lens Design Lecture 9: Field flattening 04--6 Herbert Gross Winter term 04 www.iap.uni-ena.de Preliminary Schedule.0. Basics Paraxial optics, imaging, Zemax handling 8.0. Optical systems Optical

More information

Lens Design. Craig Olson. Julie Bentley. Field Guide to. John E. Greivenkamp, Series Editor SPIE. SPIE Field Guides. Volume FG27

Lens Design. Craig Olson. Julie Bentley. Field Guide to. John E. Greivenkamp, Series Editor SPIE. SPIE Field Guides. Volume FG27 Field Guide to Lens Design Julie Bentley Craig Olson SPIE Field Guides Volume FG27 John E. Greivenkamp, Series Editor SPIE PRESS Bellingham,Washington USA vii Glossary of Symbols and Acronyms xi Fundamentals

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 9: Illumination 2013-06-14 Herbert Gross Summer term 2013 www.iap.uni-jena.de 2 Preliminary Schedule 1 12.04. Introduction 2 19.04. Properties of optical systems I 3 26.04.

More information

Ray Tracing. Lens Design OPTI 517. Prof. Jose Sasian

Ray Tracing. Lens Design OPTI 517. Prof. Jose Sasian Ray Tracing Lens Design OPTI 517 Use of rays In optical design In computer graphics In acoustics In art In photography Lens design ray-tracing Ray tracing universe Ray tracing It is important to have

More information

18.4 Release Notes May 10th, 2018

18.4 Release Notes May 10th, 2018 18.4 Release Notes May 10 th, 2018 CONTENTS 1 Sequential Features... 3 1.1 Full-Field Aberration analysis (Professional and Premium editions)... 3 1.2 GRIN surface usage with User-Defined and Grid Sag

More information

18.7 Release Notes August 14th, 2018

18.7 Release Notes August 14th, 2018 18.7 Release Notes August 14 th, 2018 CONTENTS 1 Usability... 3 1.1 Improved Graphic Export (All editions)... 3 1.2 Express View (All editions)... 4 1.3 Zemax File Collector (All editions)... 5 1.4 Pop-out

More information

Lens Design II. Lecture 12: Mirror systems Herbert Gross. Winter term

Lens Design II. Lecture 12: Mirror systems Herbert Gross. Winter term Lens Design II Lecture 1: Mirror systems 017-01-11 Herbert Gross Winter term 016 www.iap.uni-jena.de Preliminary Schedule 1 19.10. Aberrations and optimization Repetition 6.10. Structural modifications

More information

Introduction. Past Homework solutions Optimization Test Plate fitting Tolerance routine Homework. ECE 4616 Deslis

Introduction. Past Homework solutions Optimization Test Plate fitting Tolerance routine Homework. ECE 4616 Deslis Introduction Past Homework solutions Optimization Test Plate fitting Tolerance routine Homework 1 Optimization Optimization is one of the most important features in Zemax. We use optimization to be able

More information

Ray Optics I. Last time, finished EM theory Looked at complex boundary problems TIR: Snell s law complex Metal mirrors: index complex

Ray Optics I. Last time, finished EM theory Looked at complex boundary problems TIR: Snell s law complex Metal mirrors: index complex Phys 531 Lecture 8 20 September 2005 Ray Optics I Last time, finished EM theory Looked at complex boundary problems TIR: Snell s law complex Metal mirrors: index complex Today shift gears, start applying

More information

Refraction at a single curved spherical surface

Refraction at a single curved spherical surface Refraction at a single curved spherical surface This is the beginning of a sequence of classes which will introduce simple and complex lens systems We will start with some terminology which will become

More information

Efficient wave-optical calculation of 'bad systems'

Efficient wave-optical calculation of 'bad systems' 1 Efficient wave-optical calculation of 'bad systems' Norman G. Worku, 2 Prof. Herbert Gross 1,2 25.11.2016 (1) Fraunhofer Institute for Applied Optics and Precision Engineering IOF, Jena, Germany (2)

More information

Tolerance on material inhomogenity and surface irregularity

Tolerance on material inhomogenity and surface irregularity Opti 521 Wenrui Cai Tolerance on material inhomogenity and surface irregularity Abstract In this tutorial, a case study on tolerance for a focusing doublet is performed by using ZEMAX. First, how to perform

More information

Geometric Optics. The Law of Reflection. Physics Waves & Oscillations 3/20/2016. Spring 2016 Semester Matthew Jones

Geometric Optics. The Law of Reflection. Physics Waves & Oscillations 3/20/2016. Spring 2016 Semester Matthew Jones Physics 42200 Waves & Oscillations Lecture 27 Propagation of Light Hecht, chapter 5 Spring 2016 Semester Matthew Jones Geometric Optics Typical problems in geometric optics: Given an optical system, what

More information

EE119 Homework 3. Due Monday, February 16, 2009

EE119 Homework 3. Due Monday, February 16, 2009 EE9 Homework 3 Professor: Jeff Bokor GSI: Julia Zaks Due Monday, February 6, 2009. In class we have discussed that the behavior of an optical system changes when immersed in a liquid. Show that the longitudinal

More information

Imaging and Aberration Theory

Imaging and Aberration Theory Imaging and Aberration Theory Lecture 8: Astigmastism and field curvature 03--9 Herbert Gross Winter term 03 www.iap.uni-jena.de Preliminary time schedule 4.0. Paraxial imaging paraxial optics, fundamental

More information

Innovations in beam shaping & illumination applications

Innovations in beam shaping & illumination applications Innovations in beam shaping & illumination applications David L. Shealy Department of Physics University of Alabama at Birmingham E-mail: dls@uab.edu Innovation Novelty The introduction of something new

More information

Imaging and Aberration Theory

Imaging and Aberration Theory Imaging and Aberration Theory Lecture 8: Astigmatism and field curvature 0--4 Herbert Gross Winter term 0 www.iap.uni-jena.de Preliminary time schedule 9.0. Paraxial imaging paraxial optics, fundamental

More information

Getting Started Using ZEMAX

Getting Started Using ZEMAX Getting Started Using ZEMAX Version 2.1 Table of Contents 1 ABOUT THIS GUIDE... 3 2 INSTALLING ZEMAX... 4 2.1 INSTALLING THE KEY DRIVER... 4 2.2 INSTALLING RZ PREREQUISITES... 4 2.3 INSTALLING ZEMAX...

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture : Properties of optical sstems II 0-0-30 Herbert Gross Winter term 0 www.iap.uni-jena.de Properties of Optical Sstems II Preliminar time schedule 6.0. Introduction Introduction,

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 2: Properties of optical systems I 2014-04-18 Herbert Gross Sommer term 2014 www.iap.uni-ena.de 2 Preliminary Schedule 1 11.04. Introduction 2 18.04. Properties of optical

More information

Optical Design with Zemax for PhD

Optical Design with Zemax for PhD Optical Design with Zemax for PhD Lecture 3: Tolerancing I 26-4-8 Herbert Gross Winter term 25 / Summer term 26 www.iap.uni-jena.de 2 Preliminary Schedule No Date Subject Detailed content.. Introduction

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 2: Properties of optical systems I 2012-10-23 Herbert Gross Winter term 2012 www.iap.uni-ena.de Preliminary time schedule 2 1 16.10. Introduction Introduction, Zemax interface,

More information

Physics 123 Optics Review

Physics 123 Optics Review Physics 123 Optics Review I. Definitions & Facts concave converging convex diverging real image virtual image real object virtual object upright inverted dispersion nearsighted, farsighted near point,

More information

Outline The Refraction of Light Forming Images with a Plane Mirror 26-3 Spherical Mirror 26-4 Ray Tracing and the Mirror Equation

Outline The Refraction of Light Forming Images with a Plane Mirror 26-3 Spherical Mirror 26-4 Ray Tracing and the Mirror Equation Chapter 6 Geometrical Optics Outline 6-1 The Reflection of Light 6- Forming Images with a Plane Mirror 6-3 Spherical Mirror 6-4 Ray Tracing and the Mirror Equation 6-5 The Refraction of Light 6-6 Ray Tracing

More information

Physics Midterm Exam (3:00-4:00 pm 10/20/2009) TIME ALLOTTED: 60 MINUTES Name: Signature:

Physics Midterm Exam (3:00-4:00 pm 10/20/2009) TIME ALLOTTED: 60 MINUTES Name: Signature: Physics 431 - Midterm Exam (3:00-4:00 pm 10/20/2009) TIME ALLOTTED: 60 MINUTES Name: SID: Signature: CLOSED BOOK. ONE 8 1/2 X 11 SHEET OF NOTES (double sided is allowed), AND SCIENTIFIC POCKET CALCULATOR

More information

Using Skew Rays to Model Gaussian Beams

Using Skew Rays to Model Gaussian Beams Using Skew Rays to Model Gaussian Beams Host: Paul Colbourne, Lumentum Zemax, LLC 2016 1 Topics we ll cover today: Using skew rays to represent a Gaussian beam. Use of User-Defined Surfaces to generate

More information

Waves & Oscillations

Waves & Oscillations Physics 42200 Waves & Oscillations Lecture 26 Propagation of Light Hecht, chapter 5 Spring 2015 Semester Matthew Jones Geometric Optics Typical problems in geometric optics: Given an optical system, what

More information

Roadmap Presentation. European User Group Symposium - March Zemax

Roadmap Presentation. European User Group Symposium - March Zemax Roadmap Presentation European User Group Symposium - March 2018 Zemax 2018 1 Hello! I m Kristen Norton OpticStudio Product Manager Previously Sr Optical Engineer at Zemax Laser & Optics Engineer building

More information

index of refraction-light speed

index of refraction-light speed AP Physics Study Guide Chapters 22, 23, 24 Reflection, Refraction and Interference Name Write each of the equations specified below, include units for all quantities. Law of Reflection Lens-Mirror Equation

More information

Contrast Optimization: A faster and better technique for optimizing on MTF ABSTRACT Keywords: INTRODUCTION THEORY

Contrast Optimization: A faster and better technique for optimizing on MTF ABSTRACT Keywords: INTRODUCTION THEORY Contrast Optimization: A faster and better technique for optimizing on MTF Ken Moore, Erin Elliott, Mark Nicholson, Chris Normanshire, Shawn Gay, Jade Aiona Zemax, LLC ABSTRACT Our new Contrast Optimization

More information

Fundamental Optics for DVD Pickups. The theory of the geometrical aberration and diffraction limits are introduced for

Fundamental Optics for DVD Pickups. The theory of the geometrical aberration and diffraction limits are introduced for Chapter Fundamental Optics for DVD Pickups.1 Introduction to basic optics The theory of the geometrical aberration and diffraction limits are introduced for estimating the focused laser beam spot of a

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 3: Properties of optical sstems II 04-04-8 Herbert Gross Sommer term 04 www.iap.uni-jena.de Preliminar Schedule.04. Introduction 8.04. Properties of optical sstems I 3

More information

A Guide for Designing with Spherical Gradient-Index Materials Constrained to Real Material Properties in Code V

A Guide for Designing with Spherical Gradient-Index Materials Constrained to Real Material Properties in Code V A Guide for Designing with Spherical Gradient-Index Materials Constrained to Real Material Properties in Code V Written by Peter McCarthy University of Rochester I. Material Model The gradient-index material

More information

DESIGN AND ANALYSIS OF DIFFRACTIVE ASPHERIC NULLS

DESIGN AND ANALYSIS OF DIFFRACTIVE ASPHERIC NULLS DESIGN AND ANALYSIS OF DIFFRACTIVE ASPHERIC NULLS Steven M. Arnold Diffraction International, Minnetonka, MN Diffraction International has developed a general methodology for designing diffractive aspheric

More information

Medical Photonics Lecture 1.2 Optical Engineering

Medical Photonics Lecture 1.2 Optical Engineering Medical Photonics Lecture 1.2 Optical Engineering Lecture 4: Components 2017-11-16 Michael Kempe Winter term 2017 www.iap.uni-jena.de 2 Contents No Subject Ref Detailed Content 1 Introduction Gross Materials,

More information

Contents. Ray Intersection Patterns Spherical Coma Field Curvature and astigmatism Distortion Aplanatic Points How to reduce aberrations

Contents. Ray Intersection Patterns Spherical Coma Field Curvature and astigmatism Distortion Aplanatic Points How to reduce aberrations Contents Ray Intersection Patterns Spherical Coma Field Curvature and astigmatism Distortion Aplanatic Points How to reduce aberrations ECE 4616 Tolis Deslis Contents Contents Ray Intersection Patterns

More information

Speeding Designs to Market with Zemax Virtual Prototyping. New Business Development Manager

Speeding Designs to Market with Zemax Virtual Prototyping. New Business Development Manager Speeding Designs to Market with Zemax Virtual Prototyping Samuel Milns Chris Normanshire New Business Development Manager Engineering Services Manager, Europe Agenda What is Zemax Virtual Prototyping?

More information

Formulas of possible interest

Formulas of possible interest Name: PHYS 3410/6750: Modern Optics Final Exam Thursday 15 December 2011 Prof. Bolton No books, calculators, notes, etc. Formulas of possible interest I = ɛ 0 c E 2 T = 1 2 ɛ 0cE 2 0 E γ = hν γ n = c/v

More information

Application-Specific Optical Design

Application-Specific Optical Design Application-Specific Optical Design Introduction Optical design software capabilities have advanced considerably from the late 1950s and early 1960s when computer tools first became available. Initially,

More information

Chapter 36. Image Formation

Chapter 36. Image Formation Chapter 36 Image Formation Apr 22, 2012 Light from distant things We learn about a distant thing from the light it generates or redirects. The lenses in our eyes create images of objects our brains can

More information

Final Exam. Today s Review of Optics Polarization Reflection and transmission Linear and circular polarization Stokes parameters/jones calculus

Final Exam. Today s Review of Optics Polarization Reflection and transmission Linear and circular polarization Stokes parameters/jones calculus Physics 42200 Waves & Oscillations Lecture 40 Review Spring 206 Semester Matthew Jones Final Exam Date:Tuesday, May 3 th Time:7:00 to 9:00 pm Room: Phys 2 You can bring one double-sided pages of notes/formulas.

More information

Advanced Lens Design

Advanced Lens Design Advanced Lens Design Lecture : Introduction 3--5 Herbert Gross Winter term 3 www.iap.uni-jena.de Overview Time: Tuesday, 8.5 9.45 Location: PaPool, Helmholtweg 4 Web page on IAP homepage under learning/materials

More information

P H Y L A B 1 : G E O M E T R I C O P T I C S

P H Y L A B 1 : G E O M E T R I C O P T I C S P H Y 1 4 3 L A B 1 : G E O M E T R I C O P T I C S Introduction Optics is the study of the way light interacts with other objects. This behavior can be extremely complicated. However, if the objects in

More information

Waves & Oscillations

Waves & Oscillations Physics 42200 Waves & Oscillations Lecture 40 Review Spring 2016 Semester Matthew Jones Final Exam Date:Tuesday, May 3 th Time:7:00 to 9:00 pm Room: Phys 112 You can bring one double-sided pages of notes/formulas.

More information

CODE V Optical Design Software. Design, Optimize and Fabricate Reliable Imaging Optics

CODE V Optical Design Software. Design, Optimize and Fabricate Reliable Imaging Optics CODE V Optical Design Software Design, Optimize and Fabricate Reliable Imaging Optics Overview Using CODE V, ORA engineers played a key role in the design and implementation of all the primary null lenses

More information

Metrology and Sensing

Metrology and Sensing Metrology and Sensing Lecture 4: Fringe projection 2016-11-08 Herbert Gross Winter term 2016 www.iap.uni-jena.de 2 Preliminary Schedule No Date Subject Detailed Content 1 18.10. Introduction Introduction,

More information

Design and Correction of optical Systems

Design and Correction of optical Systems Design and Correction of optical Systems Part 3: Components Summer term 0 Herbert Gross Overview. Basics 0-04-8. Materials 0-04-5 3. Components 0-05-0 4. Paraxial optics 0-05-09 5. Properties of optical

More information

UNIT VI OPTICS ALL THE POSSIBLE FORMULAE

UNIT VI OPTICS ALL THE POSSIBLE FORMULAE 58 UNIT VI OPTICS ALL THE POSSIBLE FORMULAE Relation between focal length and radius of curvature of a mirror/lens, f = R/2 Mirror formula: Magnification produced by a mirror: m = - = - Snell s law: 1

More information

Light: Geometric Optics

Light: Geometric Optics Light: Geometric Optics The Ray Model of Light Light very often travels in straight lines. We represent light using rays, which are straight lines emanating from an object. This is an idealization, but

More information

Chapter 3 Geometrical Optics

Chapter 3 Geometrical Optics Chapter 3 Geometrical Optics Gabriel Popescu University of Illinois at Urbana Champaign Beckman Institute Quantitative Light Imaging Laboratory http://light.ece.uiuc.edu Principles of Optical Imaging Electrical

More information

Preparatory School to the Winter College on Optics in Imaging Science January Selected Topics of Fourier Optics Tutorial

Preparatory School to the Winter College on Optics in Imaging Science January Selected Topics of Fourier Optics Tutorial 2222-11 Preparatory School to the Winter College on Optics in Imaging Science 24-28 January 2011 Selected Topics of Fourier Optics Tutorial William T. Rhodes Florida Atlantic University Boca Raton USA

More information

2011 Optical Science & Engineering PhD Qualifying Examination Optical Sciences Track: Advanced Optics Time allowed: 90 minutes

2011 Optical Science & Engineering PhD Qualifying Examination Optical Sciences Track: Advanced Optics Time allowed: 90 minutes 2011 Optical Science & Engineering PhD Qualifying Examination Optical Sciences Track: Advanced Optics Time allowed: 90 minutes Answer all four questions. All questions count equally. 3(a) A linearly polarized

More information

ONE MARK QUESTIONS GEOMETRICAL OPTICS QUESTION BANK

ONE MARK QUESTIONS GEOMETRICAL OPTICS QUESTION BANK ONE MARK QUESTIONS 1. What is lateral shift? 2. What should be the angle of incidence to have maximum lateral shift? 3. For what angle, lateral shift is minimum? 4. What is Normal shift? 5. What is total

More information

Waves & Oscillations

Waves & Oscillations Physics 42200 Waves & Oscillations Lecture 41 Review Spring 2013 Semester Matthew Jones Final Exam Date:Tuesday, April 30 th Time:1:00 to 3:00 pm Room: Phys 112 You can bring two double-sided pages of

More information

9. RAY OPTICS AND OPTICAL INSTRUMENTS

9. RAY OPTICS AND OPTICAL INSTRUMENTS 9. RAY OPTICS AND OPTICAL INSTRUMENTS 1. Define the terms (a) ray of light & (b) beam of light A ray is defined as the straight line path joining the two points by which light is travelling. A beam is

More information

OPTI 201R Homework 9 Solutions

OPTI 201R Homework 9 Solutions OPTI 20R Homework 9 Solutions. Unknown thick lens system measured with reciprocal magnification technique. At the first position where the object is sharply focused on the image plane m = 2. The lens needs

More information

INTRODUCTION REFLECTION AND REFRACTION AT BOUNDARIES. Introduction. Reflection and refraction at boundaries. Reflection at a single surface

INTRODUCTION REFLECTION AND REFRACTION AT BOUNDARIES. Introduction. Reflection and refraction at boundaries. Reflection at a single surface Chapter 8 GEOMETRICAL OPTICS Introduction Reflection and refraction at boundaries. Reflection at a single surface Refraction at a single boundary Dispersion Summary INTRODUCTION It has been shown that

More information

Exercise 12 Geometrical and Technical Optics WS 2013/2014

Exercise 12 Geometrical and Technical Optics WS 2013/2014 Exercise 12 Geometrical and Technical Optics WS 213/214 Slide projector and Köhler illumination In this exercise a simplified slide projector (or LCD projector) will be designed and simulated with ray

More information

PHY 112: Light, Color and Vision. Lecture 11. Prof. Clark McGrew Physics D 134. Review for Exam. Lecture 11 PHY 112 Lecture 1

PHY 112: Light, Color and Vision. Lecture 11. Prof. Clark McGrew Physics D 134. Review for Exam. Lecture 11 PHY 112 Lecture 1 PHY 112: Light, Color and Vision Lecture 11 Prof. Clark McGrew Physics D 134 Review for Exam Lecture 11 PHY 112 Lecture 1 From Last Time Lenses Ray tracing a Convex Lens Announcements The midterm is Thursday

More information

Refractive Optical Design Systems Any lens system is a tradeoff of many factors Add optical elements (lens/mirrors) to balance these Many different

Refractive Optical Design Systems Any lens system is a tradeoff of many factors Add optical elements (lens/mirrors) to balance these Many different Refractive Optical Design Systems Any lens system is a tradeoff of many factors Add optical elements (lens/mirrors) to balance these Many different types of lens systems used Want to look at each from

More information

Optical Design with Zemax

Optical Design with Zemax Optical Design with Zemax Lecture 1: Introduction 2012-07-17 Herbert Gross Summer term 2012 www.iap.uni-ena.de Lecture data 2 Planned dates: 17.07. 24.07. 14.08. 28.08. 11.09. 25.09. 09.10. 23.10. 06.11.

More information

Refractive Optical Design Systems Any lens system is a tradeoff of many factors Add optical elements (lens/mirrors) to balance these Many different

Refractive Optical Design Systems Any lens system is a tradeoff of many factors Add optical elements (lens/mirrors) to balance these Many different Refractive Optical Design Systems Any lens system is a tradeoff of many factors Add optical elements (lens/mirrors) to balance these Many different types of lens systems used Want to look at each from

More information

Geometrical Optics. Chapter General Comments. 1.2 Snell s Law

Geometrical Optics. Chapter General Comments. 1.2 Snell s Law Chapter 1 Geometrical Optics 1.1 General Comments A light wave is an electromagnetic wave, and the wavelength that optics studies ranges from the ultraviolet (0.2 mm) to the middle infrared (10 mm). The

More information

Derivation of Mueller matrix from Zemax Tetsu Anan

Derivation of Mueller matrix from Zemax Tetsu Anan Derivation of Mueller matrix from Zemax 2018.03.10 Tetsu Anan Definition of Stokes Q, U, & V Ichimoto et al. 2008 Stenflo 1994 View towards the sun, that is, from the direction of the observer Signs of

More information

FRED Display Application Note

FRED Display Application Note FRED Display Application Note Most displays consist of several optical components. The most important component is the source of light that illuminates the display. All displays need a mechanism to send

More information

Photographic Technology

Photographic Technology Photographic Technology wiki: PhotoTechEDU Lecture 21: June 13, 2007 Visualizing via Matlab: Color Profiles, Ray Tracing, Diffraction Richard F. Lyon Google Research dicklyon@google.com Empirical and Visualization

More information

Unit 11 Light and Optics Holt Chapter 14 Student Outline Light and Refraction

Unit 11 Light and Optics Holt Chapter 14 Student Outline Light and Refraction Holt Chapter 14 Student Outline Light and Refraction Variables introduced or used in chapter: Quantity Symbol Units Speed of light frequency wavelength angle Object Distance Image Distance Radius of Curvature

More information

2/26/2016. Chapter 23 Ray Optics. Chapter 23 Preview. Chapter 23 Preview

2/26/2016. Chapter 23 Ray Optics. Chapter 23 Preview. Chapter 23 Preview Chapter 23 Ray Optics Chapter Goal: To understand and apply the ray model of light. Slide 23-2 Chapter 23 Preview Slide 23-3 Chapter 23 Preview Slide 23-4 1 Chapter 23 Preview Slide 23-5 Chapter 23 Preview

More information

Generally astigmatic Gaussian beam representation and optimization using skew rays

Generally astigmatic Gaussian beam representation and optimization using skew rays Generally astigmatic Gaussian beam representation and optimization using skew rays Paul D. Colbourne Lumentum, 61 Bill Leathem Dr., Ottawa, ON, Canada, KJ 0P7 ABSTRACT Methods are presented of using skew

More information

Optics Course (Phys 311) Geometrical Optics Refraction through Lenses

Optics Course (Phys 311) Geometrical Optics Refraction through Lenses Optics Course (Phys ) Geometrical Optics Refraction through Lenses Lecturer: Dr Zeina Hashim Slide 1 Objectives covered in this lesson : 1. Refraction through single spherical refracting surfaces. 2. Lenses:

More information

18.9 release notes. December If you have questions, contact

18.9 release notes. December If you have questions, contact 18.9 release notes December 2018 If you have questions, contact Support@Zemax.com Contents 1. Improvements to loading OpticStudio files...3 1.1 Added support for optical components...3 1.2 Support for

More information

Dispersion (23.5) Neil Alberding (SFU Physics) Physics 121: Optics, Electricity & Magnetism Spring / 17

Dispersion (23.5) Neil Alberding (SFU Physics) Physics 121: Optics, Electricity & Magnetism Spring / 17 Neil Alberding (SFU Physics) Physics 121: Optics, Electricity & Magnetism Spring 2010 1 / 17 Dispersion (23.5) The speed of light in a material depends on its wavelength White light is a mixture of wavelengths

More information

18.9 release notes. November If you have questions, contact

18.9 release notes. November If you have questions, contact 18.9 release notes November 2018 If you have questions, contact Support@Zemax.com Contents 1. Sequential tools and analyses...3 1.1 Tolerance in percentage of nominal radius (all editions)...3 1.2 Improved

More information

DESIGNING A SIMPLE OPTICAL SYSTEM IN LIGHTTOOLS

DESIGNING A SIMPLE OPTICAL SYSTEM IN LIGHTTOOLS DESIGNING A SIMPLE OPTICAL SYSTEM IN LIGHTTOOLS Liliana Ruiz Diaz December 08, 2016 College of Optical Sciences, University of Arizona, Tucson, AZ USA 85721 WHAT IS LIGHTTOOLS LightTools is a 3D optical

More information

Electrically tunable large aperture lens EL TC

Electrically tunable large aperture lens EL TC Datasheet: EL-16-4-TC Electrically tunable large aperture lens EL-16-4-TC By applying an electric current to this shape changing polymer lens, its optical power is controlled within milliseconds over a

More information

Ch. 26: Geometrical Optics

Ch. 26: Geometrical Optics Sec. 6-1: The Reflection of Light Wave Fronts and Rays Ch. 6: Geometrical Optics Wave front: a surface on which E is a maximum. Figure 5-3: Plane Wave *For this wave, the wave fronts are a series of planes.

More information

Reflections. I feel pretty, oh so pretty

Reflections. I feel pretty, oh so pretty Reflections I feel pretty, oh so pretty Objectives By the end of the lesson, you should be able to: Draw an accurate reflective angle Determine the focal length of a spherical mirror Light Review Light

More information

Electrically tunable large aperture lens EL TC-VIS-20D

Electrically tunable large aperture lens EL TC-VIS-20D Datasheet: EL-16-4-TC-VIS-2D Electrically tunable large aperture lens EL-16-4-TC-VIS-2D By applying an electric current to this shape changing polymer lens, its optical power is controlled within milliseconds

More information

New Features in CODE V Version 10

New Features in CODE V Version 10 Webinar Series New Features in CODE V Version 10 3280 East Foothill Boulevard Pasadena, California 91107 USA (626) 795-9101 Fax (626) 795-0184 e-mail: service@opticalres.com World Wide Web: http://www.opticalres.com

More information

How to Use the Luminit LSD Scatter Model

How to Use the Luminit LSD Scatter Model How to Use the Luminit LSD Scatter Model Summary: This article describes the characteristics and use of Luminit s LSD scatter model in OpticStudio. The scatter model presented here is the idealized scatter

More information

Metrology and Sensing

Metrology and Sensing Metrology and Sensing Lecture 4: Fringe projection 2017-11-09 Herbert Gross Winter term 2017 www.iap.uni-jena.de 2 Preliminary Schedule No Date Subject Detailed Content 1 19.10. Introduction Introduction,

More information

Metrology and Sensing

Metrology and Sensing Metrology and Sensing Lecture 4: Fringe projection 2018-11-09 Herbert Gross Winter term 2018 www.iap.uni-jena.de 2 Schedule Optical Metrology and Sensing 2018 No Date Subject Detailed Content 1 16.10.

More information