Refractive indices for Ne, Ar, and Kr in the VUV, and RDW phase-matching including nonlinear and ionisation terms.#425
Open
teodora-grigorova wants to merge 13 commits into
Open
Conversation
1b7b4d7 to
ca09462
Compare
…e last commit and they won't run)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
VUV Sellmeier models and nonlinear/ionisation RDW phase matching
Summary
This PR tests out some different Sellmeier equations available in the literatutre for the nobel gases Ne, Ar, and Kr, and adds additional options for the refractive index that can be used, particularly with emphasis on the VUV spectral range. It also adds a RDW phase-matching finding function that also includes nonlinear and ionisation contributions.
The main changes are:
These additions are motivated by the VUV RDW analysis, where the theoretically calculated phase-matched wavelength needs reliable refractive index data until the expected phase-matched wavelength.
Motivation
The existing Börzsönyi refractive-index models are specified over the 400–1000 nm range. For the VUV paper, however, the relevant RDW wavelengths lie in the DUV/VUV, where extrapolation of the refractive index from Börzsönyi might not be guaranteed to match the physics.
The analysis compares several refractive-index models:
The goal is to validate the hypothesis that the increase of the refractive index of the gas in the VUV is not limiting the phase-matching of RDW to wavelengths in the VUV.
Details
PhysData.jlThis PR adds new gas symbols and refractive-index models:
:NeBideauMehu:ArBideauMehu:KrBideauMehu:ArB:KrBThe original Börzsönyi models are now available as explicit
Bvariants, while the added Ar/Kr fits that have VUV-extension based on Kingston data plus Börzsönyi VIS/IR points are now set as the default :Ar/:Kr variants. Please see details on the fit construction in the attached notebook.TestForPullRequestRefIndices.ipynb
Tools.jlThis PR also adds an RDW phase-matching function
λRDWfull, based on Novoa et. al., 2015, that can additionally include nonlinear and ionisation/plasma terms to the usual linear phase mismatch term.There are a few subtleties in this function, to do with the root-finding algorithm.
λlimsneeds to be set appropriately, otherwide the root-finding algorithm would not return a result (it needs the function to have opposite signs on the two sides of the range).λlimsis set to minimum just above the first resonance in the Sellmeier equation for the gas (90 nm for He, 100 nm for Ne, 110 nm for Ar, and 130 nm for Kr), and maximum of the pump wavelengthλpminus 10 nmλp. Then the maximum ofλlimsis modified by first looking for the phase-matching wavelengthλlinfor just the linear contribution included. Then looking for another rootλmaxin the rangeλlin+ 50 nm (to compensate for potential ionisation-related red-shift of the phase-matched RDW wavelength) toλpminus 10 nm. Lastly, the RDW phase-matching that includes the ionisation term is searched in the rangeminimum(λlims)toλmaxminus 10 nm.Analysis summary
The accompanying notebook compares the refractive-index models and resulting capillary dispersion for He, Ne, Ar, and Kr. The key outputs are:
n - 1, over the UV/VIS/IR range.β₂, over the UV/VIS/IR range.β₂in the VUV range.The analysis uses a 250 µm core-diameter capillary pumped at 800 nm (like the experiment) and compares different refractive index models predictions against the shortest experimentally observed RDW limits used in the VUV analysis.
Key conclusions
β₂for different refractive index models for some cases (helium vs argon).Results:
Helium model comparison
Helium refractive index
Helium GVD
Helium GVD VUV zoom
Helium RDW phase matching
Neon model comparison
Neon refractive index
Neon GVD
Neon GVD VUV zoom
Neon RDW phase matching
Argon model comparison
Argon refractive-index comparison
Argon GVD
Argon GVD VUV zoom
Argon RDW phase matching
Krypton model comparison
Krypton refractive-index comparison
Krypton GVD
Krypton GVD VUV zoom
Krypton RDW phase matching
References