tidy3d.Lorentz#
- class Lorentz[source]#
Bases:
DispersiveMedium
A dispersive medium described by the Lorentz model.
- Parameters:
attrs (dict = {}) โ Dictionary storing arbitrary metadata for a Tidy3D object. This dictionary can be freely used by the user for storing data without affecting the operation of Tidy3D as it is not used internally. Note that, unlike regular Tidy3D fields,
attrs
are mutable. For example, the following is allowed for setting anattr
obj.attrs['foo'] = bar
. Also note that Tidy3D` will raise aTypeError
ifattrs
contain objects that can not be serialized. One can check ifattrs
are serializable by callingobj.json()
.name (Optional[str] = None) โ Optional unique name for medium.
frequency_range (Optional[Tuple[float, float]] = None) โ [units = (Hz, Hz)]. Optional range of validity for the medium.
allow_gain (bool = False) โ Allow the medium to be active. Caution: simulations with a gain medium are unstable, and are likely to diverge.Simulations where โallow_gainโ is set to โTrueโ will still be charged even if diverged. Monitor data up to the divergence point will still be returned and can be useful in some cases.
nonlinear_spec (Union[NonlinearSpec, NonlinearSusceptibility] = None) โ Nonlinear spec applied on top of the base medium properties.
modulation_spec (Optional[ModulationSpec] = None) โ Modulation spec applied on top of the base medium properties.
heat_spec (Union[FluidSpec, SolidSpec, NoneType] = None) โ Specification of the medium heat properties. They are used for solving the heat equation via the
HeatSimulation
interface. Such simulations can be used for investigating the influence of heat propagation on the properties of optical systems. Once the temperature distribution in the system is found usingHeatSimulation
object,Simulation.perturbed_mediums_copy()
can be used to convert mediums with perturbation models defined into spatially dependent custom mediums. Otherwise, theheat_spec
does not directly affect the running of an opticalSimulation
.eps_inf (PositiveFloat = 1.0) โ [units = None (relative permittivity)]. Relative permittivity at infinite frequency (\(\epsilon_\infty\)).
coeffs (Tuple[Tuple[float, float, pydantic.v1.types.NonNegativeFloat], ...]) โ [units = (None (relative permittivity), Hz, Hz)]. List of (\(\Delta\epsilon_i, f_i, \delta_i\)) values for model.
Notes
The frequency-dependence of the complex-valued permittivity is described by:
\[\epsilon(f) = \epsilon_\infty + \sum_i \frac{\Delta\epsilon_i f_i^2}{f_i^2 - 2jf\delta_i - f^2}\]Example
>>> lorentz_medium = Lorentz(eps_inf=2.0, coeffs=[(1,2,3), (4,5,6)]) >>> eps = lorentz_medium.eps_model(200e12)
See also
- Notebooks
- Lectures
Attributes
Methods
eps_model
(frequency)Complex-valued permittivity as a function of frequency.
from_nk
(n,ย k,ย freq,ย **kwargs)Convert
n
andk
values at frequencyfreq
to a single-pole Lorentz medium.Inherited Common Usage
- eps_inf#
- coeffs#
- classmethod from_nk(n, k, freq, **kwargs)[source]#
Convert
n
andk
values at frequencyfreq
to a single-pole Lorentz medium.- Parameters:
n (float) โ Real part of refractive index.
k (float = 0) โ Imaginary part of refrative index.
freq (float) โ Frequency to evaluate permittivity at (Hz).
kwargs (dict) โ Keyword arguments passed to the medium construction.
- Returns:
Lorentz medium having refractive index n+ik at frequency
freq
.- Return type:
- __hash__()#
Hash method.