Materials: Angular or Standard Frequency? #1986
-
There's some contradiction in the Meep documentation regarding initializing materials with dispersion, so I thought I'd ask to clarify things. From the documentation on LorentzianSusceptibility (https://meep.readthedocs.io/en/latest/Python_User_Interface/#lorentziansusceptibility), it is stated that one needs frequency f_n = \omega_n/2\pi where \omega_n is the angular frequency, and the same for damping. However, the materials at https://github.com/NanoComp/meep/blob/master/python/materials.py appears, at least in the cases that I've checked, to use angular frequency. Consider glass, for which So, which one is it? Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The ωt and Γ0 fitting parameters from the Lorentzian model provided in https://www.horiba.com/fileadmin/uploads/Scientific/Downloads/OpticalSchool_CN/TN/ellipsometer/Lorentz_Dispersion_Model.pdf are in units of eV. To convert eV into μm (for the wavelength), we need to divide the Planck constant hc = 1.2398419 eV·μm by these quantities. For example, SiO2 has ωt = 12.0 eV = 1.2398419/12.0 μm = 0.10332016 μm. Also, Γ0 = 0.1 eV = 1.2398419/0.1 μm = 12.3984193 μm. These are the quantities corresponding to the standard frequency which appear in the materials library: Lines 850 to 863 in 33cfca1 (Also note: the Lorentzian oscillator strength is σ = εs - ε∞ = 2.12 - 1.0 = 1.12.) As long as ω and Γ have the same units, it does not matter whether they are angular or standard frequency because the units end up cancelling in the equation for the Lorenztian susceptibility. Note that you can always inspect the complex refractive index using the
|
Beta Was this translation helpful? Give feedback.
The ωt and Γ0 fitting parameters from the Lorentzian model provided in https://www.horiba.com/fileadmin/uploads/Scientific/Downloads/OpticalSchool_CN/TN/ellipsometer/Lorentz_Dispersion_Model.pdf are in units of eV. To convert eV into μm (for the wavelength), we need to divide the Planck constant hc = 1.2398419 eV·μm by these quantities. For example, SiO2 has ωt = 12.0 eV = 1.2398419/12.0 μm = 0.10332016 μm. Also, Γ0 = 0.1 eV = 1.2398419/0.1 μm = 12.3984193 μm. These are the quantities corresponding to the standard frequency which appear in the materials library:
meep/python/materials.py
Lines 850 to 863 in 33cfca1